From owner-svn-ports-all@FreeBSD.ORG Sat Mar 1 17:23:16 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D676EFE4; Sat, 1 Mar 2014 17:23:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C21131C44; Sat, 1 Mar 2014 17:23:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s21HNGor074631; Sat, 1 Mar 2014 17:23:16 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s21HNGK1074630; Sat, 1 Mar 2014 17:23:16 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201403011723.s21HNGK1074630@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sat, 1 Mar 2014 17:23:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346659 - head/security/p5-GD-SecurityImage X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Mar 2014 17:23:16 -0000 Author: sunpoet Date: Sat Mar 1 17:23:16 2014 New Revision: 346659 URL: http://svnweb.freebsd.org/changeset/ports/346659 QAT: https://qat.redports.org/buildarchive/r346659/ Log: - Add LICENSE - Convert to new options helper - Remove outdated PERL_LEVEL check Modified: head/security/p5-GD-SecurityImage/Makefile Modified: head/security/p5-GD-SecurityImage/Makefile ============================================================================== --- head/security/p5-GD-SecurityImage/Makefile Sat Mar 1 17:20:38 2014 (r346658) +++ head/security/p5-GD-SecurityImage/Makefile Sat Mar 1 17:23:16 2014 (r346659) @@ -11,6 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl5 module for creating CAPTCHA security images +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-GD>=0:${PORTSDIR}/graphics/p5-GD RUN_DEPENDS:= ${BUILD_DEPENDS} @@ -22,17 +25,7 @@ PORTSCOUT= skipv:1.581 USES= perl5 USE_PERL5= configure -.include - -.if ${PORT_OPTIONS:MIMAGEMAGICK} -BUILD_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick -RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick -.endif - -.include - -.if ${PERL_LEVEL} < 501400 -BUILD_DEPENDS+= p5-Module-Build>=0.3800:${PORTSDIR}/devel/p5-Module-Build -.endif +IMAGEMAGICK_BUILD_DEPENDS= ${LOCALBASE}/bin/convert:${PORTSDIR}/graphics/ImageMagick +IMAGEMAGICK_RUN_DEPENDS= ${LOCALBASE}/bin/convert:${PORTSDIR}/graphics/ImageMagick -.include +.include