While there, cleanup, and sort depends.
When build and run dependencies are the same, there are three ways to
avoid duplicating the list while not adding the framework added
BUILD_DEPENDS to the RUN_DEPENDS. In order of preference, they are:
1) use RUN_DEPENDS to set BUILD_DEPENDS:
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= foo:bar/baz
2) create another variable and use it:
MY_DEPENDS= foo:bar/baz
BUILD_DEPENDS= ${MY_DEPENDS}
RUN_DEPENDS= ${MY_DEPENDS}
3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation:
BUILD_DEPENDS= foo:bar/baz
RUN_DEPENDS:= ${BUILD_DEPENDS}
Sponsored by: Absolight
33 lines
843 B
Makefile
33 lines
843 B
Makefile
# Created by: Rong-En Fan <rafan@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pushmi
|
|
PORTVERSION= 1.0.0
|
|
PORTREVISION= 9
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= CPAN
|
|
MASTER_SITE_SUBDIR= CPAN:CLKAO
|
|
DISTNAME= Pushmi-v${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Subversion repository replication tool
|
|
|
|
LICENSE= APACHE20
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS} \
|
|
p5-IPC-Run3>=0:devel/p5-IPC-Run3 \
|
|
p5-RunApp>=0.13:devel/p5-RunApp \
|
|
p5-Test-Output>=0:devel/p5-Test-Output \
|
|
${APACHE_PKGNAMEPREFIX}mod_perl2>=0:www/mod_perl2
|
|
RUN_DEPENDS= p5-subversion>=0:devel/p5-subversion \
|
|
p5-App-CLI>=0.06:devel/p5-App-CLI \
|
|
p5-Cache-Memcached>=0:databases/p5-Cache-Memcached \
|
|
p5-Log-Log4perl>=0:devel/p5-Log-Log4perl \
|
|
p5-YAML-Syck>=0:textproc/p5-YAML-Syck \
|
|
svk>=2.0.0:devel/svk
|
|
|
|
USES= apache:2.2+ perl5
|
|
USE_PERL5= configure
|
|
|
|
.include <bsd.port.mk>
|