diff options
author | mat <mat@FreeBSD.org> | 2016-11-11 00:20:32 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-11-11 00:20:32 +0800 |
commit | 4f74b1d83f008bc9e69154fac2791434e0243bb9 (patch) | |
tree | bf03671d3bf30cc9d10273c5e7340de6b83c4a84 | |
parent | 6b99b0fbe1759a16bae4f1af8e65d6d000d31925 (diff) | |
download | freebsd-ports-gnome-4f74b1d83f008bc9e69154fac2791434e0243bb9.tar.gz freebsd-ports-gnome-4f74b1d83f008bc9e69154fac2791434e0243bb9.tar.zst freebsd-ports-gnome-4f74b1d83f008bc9e69154fac2791434e0243bb9.zip |
Fix depends.
Using := is almost, but not quite, entirely unlike a good idea.
In that case, as BUILD_DEPENDS is not defined, it will act as a normal
assignment.
Sponsored by: Absolight
-rw-r--r-- | security/p5-CryptX/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/security/p5-CryptX/Makefile b/security/p5-CryptX/Makefile index d2ddd8475382..2171488faae6 100644 --- a/security/p5-CryptX/Makefile +++ b/security/p5-CryptX/Makefile @@ -3,6 +3,7 @@ PORTNAME= CryptX PORTVERSION= 0.041 +PORTREVISION= 1 CATEGORIES= security perl5 MASTER_SITES= CPAN/Crypt PKGNAMEPREFIX= p5- @@ -13,8 +14,6 @@ COMMENT= Crypto toolkit LICENSE= ART20 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS:= ${BUILD_DEPENDS} - USES= perl5 USE_PERL5= configure |