From owner-freebsd-perl@FreeBSD.ORG Fri Jul 15 14:50:12 2011 Return-Path: Delivered-To: perl@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 790571065674 for ; Fri, 15 Jul 2011 14:50:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5F4E18FC1E for ; Fri, 15 Jul 2011 14:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p6FEoC1f045615 for ; Fri, 15 Jul 2011 14:50:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p6FEoC24045614; Fri, 15 Jul 2011 14:50:12 GMT (envelope-from gnats) Date: Fri, 15 Jul 2011 14:50:12 GMT Message-Id: <201107151450.p6FEoC24045614@freefall.freebsd.org> To: perl@FreeBSD.org From: milki Cc: Subject: Re: ports/158943: [MAINTAINER] www/p5-Pod-Site: Add LICENSE and OPTIONS X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: milki List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jul 2011 14:50:12 -0000 The following reply was made to PR ports/158943; it has been noted by GNATS. From: milki To: bug-followup@freebsd.org Cc: Subject: Re: ports/158943: [MAINTAINER] www/p5-Pod-Site: Add LICENSE and OPTIONS Date: Fri, 15 Jul 2011 07:47:27 -0700 (PDT) >Submitter-Id: current-users >Originator: milki >Organization: UC Berkeley - RSSP-IT >Confidential: no >Synopsis: Re: ports/158943: [MAINTAINER] www/p5-Pod-Site: Add LICENSE and OPTIONS >Severity: non-critical >Priority: low >Category: ports >Class: maintainer-update >Release: FreeBSD 8.2-RELEASE amd64 >Environment: System: FreeBSD cibo.ircmylife.com 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Thu Feb 17 02:41:51 UTC 2011 >Description: Updated deps with cored modules sunpoet++ # thanks for telling me >.> Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-Pod-Site-0.52.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/p5-Pod-Site/Makefile /usr/home/milki/ports/p5-Pod-Site/Makefile --- /usr/ports/www/p5-Pod-Site/Makefile 2011-06-20 02:22:12.000000000 -0700 +++ /usr/home/milki/ports/p5-Pod-Site/Makefile 2011-07-15 06:40:07.000000000 -0700 @@ -15,17 +15,17 @@ MAINTAINER= milki@rescomp.berkeley.edu COMMENT= Build browsable HTML documentation for your app -BUILD_DEPENDS= p5-Module-Build>=0.35:${PORTSDIR}/devel/p5-Module-Build \ - p5-Test-MockModule>=0.05:${PORTSDIR}/devel/p5-Test-MockModule \ - p5-Test-XPath>=0.12:${PORTSDIR}/lang/p5-Test-XPath \ - p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -RUN_DEPENDS= p5-File-Path>=2.07:${PORTSDIR}/devel/p5-File-Path \ - p5-Getopt-Long>=0:${PORTSDIR}/devel/p5-Getopt-Long \ - p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser \ +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +RUN_DEPENDS= p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser \ p5-Object-Tiny>=0:${PORTSDIR}/devel/p5-Object-Tiny \ - p5-Pod-Parser>=0:${PORTSDIR}/textproc/p5-Pod-Parser \ - p5-Pod-Simple>=3.12:${PORTSDIR}/textproc/p5-Pod-Simple \ - p5-PathTools>=0:${PORTSDIR}/devel/p5-PathTools + p5-Test-File>=0:${PORTSDIR}/devel/p5-Test-File + +TEST_DEPENDS= p5-Test-MockModule>=0.05:${PORTSDIR}/devel/p5-Test-MockModule \ + p5-Test-XPath>=0.12:${PORTSDIR}/lang/p5-Test-XPath + +OPTIONS= PODT "Include Pod package tests" Off PERL_MODBUILD= YES @@ -33,4 +33,24 @@ MAN3= Pod::Site.3 -.include +.include + +.if !defined(WITHOUT_PODT) +TEST_DEPENDS+= p5-Test-Pod>=1.20:${PORTSDIR}/devel/p5-Test-Pod \ + p5-Pod-Coverage>=0:${PORTSDIR}/devel/p5-Pod-Coverage +.endif + +.if ${PERL_LEVEL} < 500809 || ${PERL_LEVEL} == 501000 +RUN_DEPENDS+= p5-File-Path>=2.07:${PORTSDIR}/devel/p5-File-Path +.endif + +.if ${PERL_LEVEL} < 501001 +TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.if ${PERL_LEVEL} < 501200 +RUN_DEPENDS+= p5-Pod-Simple>=3.12:${PORTSDIR}/textproc/p5-Pod-Simple +BUILD_DEPENDS+= p5-Module-Build>=0.35:${PORTSDIR}/devel/p5-Module-Build +.endif + +.include --- p5-Pod-Site-0.52.patch ends here ---