diff options
author | mat <mat@FreeBSD.org> | 2018-07-09 16:40:17 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2018-07-09 16:40:17 +0800 |
commit | 79c3ac81e82fba101ce34956c5de634b8ed032d0 (patch) | |
tree | aa20f69168c1d6c9e0dbf200cc417eb6ea9147ca /devel/p5-Perl-Metrics-Simple | |
parent | 89ac30bfd79e5d0fe14f37fae8ce263170a2af2d (diff) | |
download | freebsd-ports-gnome-79c3ac81e82fba101ce34956c5de634b8ed032d0.tar.gz freebsd-ports-gnome-79c3ac81e82fba101ce34956c5de634b8ed032d0.tar.zst freebsd-ports-gnome-79c3ac81e82fba101ce34956c5de634b8ed032d0.zip |
Remove all := from BUILD_DEPENDS, here are never needed.
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
Diffstat (limited to 'devel/p5-Perl-Metrics-Simple')
-rw-r--r-- | devel/p5-Perl-Metrics-Simple/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/p5-Perl-Metrics-Simple/Makefile b/devel/p5-Perl-Metrics-Simple/Makefile index 130a80a2fcef..bc737113b29b 100644 --- a/devel/p5-Perl-Metrics-Simple/Makefile +++ b/devel/p5-Perl-Metrics-Simple/Makefile @@ -12,11 +12,11 @@ COMMENT= Perl extension to count packages, subs, lines, etc. of many files LICENSE= ART10 GPLv1+ LICENSE_COMB= dual +BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= \ p5-PPI>=1.113:textproc/p5-PPI \ p5-Readonly>=1.03:devel/p5-Readonly \ p5-Statistics-Basic>0:math/p5-Statistics-Basic -BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= \ p5-Test-Pod>0:devel/p5-Test-Pod \ p5-Test-Pod-Coverage>0:devel/p5-Test-Pod-Coverage |