aboutsummaryrefslogtreecommitdiff
path: root/security/p5-GD-SecurityImage
diff options
context:
space:
mode:
authorTobias Kortkamp <tobik@FreeBSD.org>2019-11-21 10:46:14 +0000
committerTobias Kortkamp <tobik@FreeBSD.org>2019-11-21 10:46:14 +0000
commit788a2d7abdc33236ad3e31a746cc2fb22210d223 (patch)
tree76ed95a02dbdd16fd5deb4cb6f700a5e8e3a3d19 /security/p5-GD-SecurityImage
parent75f919d6ee6af89940e9b7c9f2f5dafa700d674a (diff)
downloadports-788a2d7abdc33236ad3e31a746cc2fb22210d223.tar.gz
ports-788a2d7abdc33236ad3e31a746cc2fb22210d223.zip
security/p5-GD-SecurityImage: Fix IMAGEMAGICK option after r375246
Options helpers are ineffective when set after bsd.port.options.mk.
Notes
Notes: svn path=/head/; revision=518091
Diffstat (limited to 'security/p5-GD-SecurityImage')
-rw-r--r--security/p5-GD-SecurityImage/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/security/p5-GD-SecurityImage/Makefile b/security/p5-GD-SecurityImage/Makefile
index 02e2bfdc0913..d6e02671dfa0 100644
--- a/security/p5-GD-SecurityImage/Makefile
+++ b/security/p5-GD-SecurityImage/Makefile
@@ -3,6 +3,7 @@
PORTNAME= GD-SecurityImage
PORTVERSION= 1.75
+PORTREVISION= 1
PORTEPOCH= 1
CATEGORIES= security perl5
MASTER_SITES= CPAN
@@ -33,11 +34,11 @@ NO_ARCH= yes
.if ${PORT_OPTIONS:MIMAGEMAGICK}
.if ${PORT_OPTIONS:MX11}
-IMAGEMAGICK_BUILD_DEPENDS= ${LOCALBASE}/bin/convert:graphics/ImageMagick6
-IMAGEMAGICK_RUN_DEPENDS= ${LOCALBASE}/bin/convert:graphics/ImageMagick6
+BUILD_DEPENDS+= convert:graphics/ImageMagick6
+RUN_DEPENDS+= convert:graphics/ImageMagick6
.else
-IMAGEMAGICK_BUILD_DEPENDS= ${LOCALBASE}/bin/convert:graphics/ImageMagick6-nox11
-IMAGEMAGICK_RUN_DEPENDS= ${LOCALBASE}/bin/convert:graphics/ImageMagick6-nox11
+BUILD_DEPENDS+= convert:graphics/ImageMagick6-nox11
+RUN_DEPENDS+= convert:graphics/ImageMagick6-nox11
.endif
.endif