Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Nov 2019 10:46:14 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r518091 - head/security/p5-GD-SecurityImage
Message-ID:  <201911211046.xALAkESA029782@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911211046.xALAkESA029782>