From owner-svn-ports-head@FreeBSD.ORG Wed Jan 7 19:58:52 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 26E783D2; Wed, 7 Jan 2015 19:58:52 +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 ED41E13C4; Wed, 7 Jan 2015 19:58:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t07Jwp5W076879; Wed, 7 Jan 2015 19:58:51 GMT (envelope-from bofh@FreeBSD.org) Received: (from bofh@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t07JwpHu076878; Wed, 7 Jan 2015 19:58:51 GMT (envelope-from bofh@FreeBSD.org) Message-Id: <201501071958.t07JwpHu076878@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bofh set sender to bofh@FreeBSD.org using -f From: Muhammad Moinur Rahman Date: Wed, 7 Jan 2015 19:58:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r376496 - head/www/p5-CGI-Application-Plugin-TT 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: Wed, 07 Jan 2015 19:58:52 -0000 Author: bofh Date: Wed Jan 7 19:58:50 2015 New Revision: 376496 URL: https://svnweb.freebsd.org/changeset/ports/376496 QAT: https://qat.redports.org/buildarchive/r376496/ Log: www/p5-CGI-Application-Plugin-TT: make p5-CGI-Application-Plugin-DevHelp optional Currently, p5-CGI-Application-Plugin-DevHelp is a hard dependency in p5-CGI-Application-Plugin-TT. However, C::A::P::TT operates just fine without it. The attached patch turns the dependency into an OPTION that defaults to on. Just for the sake of having a reference, http://cpansearch.perl.org/src/CEESHEK/CGI-Application-Plugin-TT-1.05/ META.yml lists it as a "recommends" but not a "requires." PR: 196472 Differential Revision: https://reviews.freebsd.org/D1451 Submitted by: adamw Approved by: marino(mentor) Modified: head/www/p5-CGI-Application-Plugin-TT/Makefile Modified: head/www/p5-CGI-Application-Plugin-TT/Makefile ============================================================================== --- head/www/p5-CGI-Application-Plugin-TT/Makefile Wed Jan 7 19:43:40 2015 (r376495) +++ head/www/p5-CGI-Application-Plugin-TT/Makefile Wed Jan 7 19:58:50 2015 (r376496) @@ -3,7 +3,7 @@ PORTNAME= CGI-Application-Plugin-TT PORTVERSION= 1.05 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -16,11 +16,16 @@ LICENSE_COMB= dual BUILD_DEPENDS= p5-CGI-Application>=0:${PORTSDIR}/www/p5-CGI-Application \ p5-Template-Toolkit>=0:${PORTSDIR}/www/p5-Template-Toolkit \ - p5-Class-ISA>=0:${PORTSDIR}/devel/p5-Class-ISA \ - p5-CGI-Application-Plugin-DevPopup>=0:${PORTSDIR}/www/p5-CGI-Application-Plugin-DevPopup + p5-Class-ISA>=0:${PORTSDIR}/devel/p5-Class-ISA RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild +OPTIONS_DEFINE= DEVPOPUP +OPTIONS_DEFAULT=DEVPOPUP +DEVPOPUP_DESC= Include support for run-time reports +DEVPOPUP_BUILD_DEPENDS= p5-CGI-Application-Plugin-DevPopup>=0:${PORTSDIR}/www/p5-CGI-Application-Plugin-DevPopup +DEVPOPUP_RUN_DEPENDS:= ${DEVPOPUP_BUILD_DEPENDS} + .include