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
35 lines
1 KiB
Makefile
35 lines
1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= DBIx-Class-DeploymentHandler
|
|
PORTVERSION= 0.002218
|
|
CATEGORIES= databases perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= kuriyama@FreeBSD.org
|
|
COMMENT= Perl extension for extensible DBIx::Class deployment
|
|
|
|
LICENSE= ART10 GPLv1+
|
|
LICENSE_COMB= dual
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
RUN_DEPENDS= \
|
|
p5-Carp-Clan>0:devel/p5-Carp-Clan \
|
|
p5-Context-Preserve>0:devel/p5-Context-Preserve \
|
|
p5-DBIx-Class>=0.08121:databases/p5-DBIx-Class \
|
|
p5-Log-Contextual>=0.005005:devel/p5-Log-Contextual \
|
|
p5-Method-Signatures-Simple>=0.05:devel/p5-Method-Signatures-Simple \
|
|
p5-Moo>=1.003:devel/p5-Moo \
|
|
p5-Moose>=1.0:devel/p5-Moose \
|
|
p5-MooseX-Role-Parameterized>=0.18:devel/p5-MooseX-Role-Parameterized \
|
|
p5-SQL-Translator>=0.11005:databases/p5-SQL-Translator \
|
|
p5-Sub-Exporter-Progressive>0:devel/p5-Sub-Exporter-Progressive \
|
|
p5-Text-Brew>=0.02:textproc/p5-Text-Brew \
|
|
p5-Try-Tiny>0:lang/p5-Try-Tiny \
|
|
p5-namespace-autoclean>0:devel/p5-namespace-autoclean
|
|
|
|
USES= perl5
|
|
USE_PERL5= configure
|
|
NO_ARCH= YES
|
|
|
|
.include <bsd.port.mk>
|