From owner-svn-ports-head@FreeBSD.ORG Mon Nov 24 23:07:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3E9FAAF1; Mon, 24 Nov 2014 23:07:18 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 120D0A7; Mon, 24 Nov 2014 23:07:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAON7Hro048844; Mon, 24 Nov 2014 23:07:17 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAON7HgN048843; Mon, 24 Nov 2014 23:07:17 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201411242307.sAON7HgN048843@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 24 Nov 2014 23:07:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r373381 - head/devel/p5-Config-Any X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Nov 2014 23:07:18 -0000 Author: sunpoet Date: Mon Nov 24 23:07:17 2014 New Revision: 373381 URL: https://svnweb.freebsd.org/changeset/ports/373381 QAT: https://qat.redports.org/buildarchive/r373381/ Log: - Convert to new options helper Modified: head/devel/p5-Config-Any/Makefile Modified: head/devel/p5-Config-Any/Makefile ============================================================================== --- head/devel/p5-Config-Any/Makefile Mon Nov 24 22:35:08 2014 (r373380) +++ head/devel/p5-Config-Any/Makefile Mon Nov 24 23:07:17 2014 (r373381) @@ -23,34 +23,21 @@ OPTIONS_DEFAULT=INI JSON XML YAML USES= perl5 USE_PERL5= configure -.include - -.if ${PORT_OPTIONS:MINI} -BUILD_DEPENDS+= p5-Config-Tiny>=0:${PORTSDIR}/devel/p5-Config-Tiny -RUN_DEPENDS+= p5-Config-Tiny>=0:${PORTSDIR}/devel/p5-Config-Tiny -.endif - -.if ${PORT_OPTIONS:MJSON} -BUILD_DEPENDS+= p5-JSON-XS>=0:${PORTSDIR}/converters/p5-JSON-XS -RUN_DEPENDS+= p5-JSON-XS>=0:${PORTSDIR}/converters/p5-JSON-XS -.endif - -.if ${PORT_OPTIONS:MXML} -BUILD_DEPENDS+= p5-XML-Simple>=0:${PORTSDIR}/textproc/p5-XML-Simple -RUN_DEPENDS+= p5-XML-Simple>=0:${PORTSDIR}/textproc/p5-XML-Simple -.endif - -.if ${PORT_OPTIONS:MYAML} -BUILD_DEPENDS+= p5-YAML-LibYAML>=0:${PORTSDIR}/textproc/p5-YAML-LibYAML -RUN_DEPENDS+= p5-YAML-LibYAML>=0:${PORTSDIR}/textproc/p5-YAML-LibYAML -.endif +INI_BUILD_DEPENDS= p5-Config-Tiny>=0:${PORTSDIR}/devel/p5-Config-Tiny +INI_RUN_DEPENDS= p5-Config-Tiny>=0:${PORTSDIR}/devel/p5-Config-Tiny +JSON_BUILD_DEPENDS= p5-JSON-XS>=0:${PORTSDIR}/converters/p5-JSON-XS +JSON_RUN_DEPENDS= p5-JSON-XS>=0:${PORTSDIR}/converters/p5-JSON-XS +XML_BUILD_DEPENDS= p5-XML-Simple>=0:${PORTSDIR}/textproc/p5-XML-Simple +XML_RUN_DEPENDS= p5-XML-Simple>=0:${PORTSDIR}/textproc/p5-XML-Simple +YAML_BUILD_DEPENDS= p5-YAML-LibYAML>=0:${PORTSDIR}/textproc/p5-YAML-LibYAML +YAML_RUN_DEPENDS= p5-YAML-LibYAML>=0:${PORTSDIR}/textproc/p5-YAML-LibYAML .include .if ${PERL_LEVEL} >= 502000 # Module::Pluggable was first released with perl v5.8.9 and removed from v5.19.0 -RUN_DEPENDS+= p5-Module-Pluggable>=0:${PORTSDIR}/devel/p5-Module-Pluggable BUILD_DEPENDS+= p5-Module-Pluggable>=0:${PORTSDIR}/devel/p5-Module-Pluggable +RUN_DEPENDS+= p5-Module-Pluggable>=0:${PORTSDIR}/devel/p5-Module-Pluggable .endif .include