svn commit: r518091 - head/security/p5-GD-SecurityImage

Tobias Kortkamp tobik at FreeBSD.org
Thu Nov 21 10:46:14 UTC 2019


Author: tobik
Date: Thu Nov 21 10:46:14 2019
New Revision: 518091
URL: https://svnweb.freebsd.org/changeset/ports/518091

Log:
  security/p5-GD-SecurityImage: Fix IMAGEMAGICK option after r375246
  
  Options helpers are ineffective when set after bsd.port.options.mk.

Modified:
  head/security/p5-GD-SecurityImage/Makefile

Modified: head/security/p5-GD-SecurityImage/Makefile
==============================================================================
--- head/security/p5-GD-SecurityImage/Makefile	Thu Nov 21 10:13:25 2019	(r518090)
+++ head/security/p5-GD-SecurityImage/Makefile	Thu Nov 21 10:46:14 2019	(r518091)
@@ -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
 


More information about the svn-ports-head mailing list