From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 3 03:10:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0EFDE1065672 for ; Thu, 3 May 2012 03:10:13 +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 DC8628FC14 for ; Thu, 3 May 2012 03:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q433ACEB013648 for ; Thu, 3 May 2012 03:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q433ACDY013647; Thu, 3 May 2012 03:10:12 GMT (envelope-from gnats) Resent-Date: Thu, 3 May 2012 03:10:12 GMT Resent-Message-Id: <201205030310.q433ACDY013647@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 928A91065670; Thu, 3 May 2012 03:00:58 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id 33B1A8FC08; Thu, 3 May 2012 03:00:58 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q4330s0p095246 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 2 May 2012 23:00:54 -0400 (EDT) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q4330s9w031978; Wed, 2 May 2012 23:00:54 -0400 (EDT) (envelope-from steve) Message-Id: <201205030300.q4330s9w031978@meatwad.mouf.net> Date: Wed, 2 May 2012 23:00:54 -0400 (EDT) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: skv@FreeBSD.org Subject: ports/167545: [PATCH] www/p5-Catalyst-View-ClearSilver: add TEST_DEPENDS, avoid use of SITE_PERL X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 May 2012 03:10:13 -0000 >Number: 167545 >Category: ports >Synopsis: [PATCH] www/p5-Catalyst-View-ClearSilver: add TEST_DEPENDS, avoid use of SITE_PERL >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu May 03 03:10:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #17 r233932: Thu Apr 5 22:13:25 >Description: - Add TEST_DEPENDS - Avoid use of SITE_PERL in DEPENDS Port maintainer (skv@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: change, diff: CVS) >How-To-Repeat: >Fix: --- p5-Catalyst-View-ClearSilver-0.02.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/www/p5-Catalyst-View-ClearSilver/Makefile,v retrieving revision 1.7 diff -u -u -r1.7 Makefile --- Makefile 21 Jan 2012 17:37:38 -0000 1.7 +++ Makefile 3 May 2012 03:00:35 -0000 @@ -15,12 +15,13 @@ MAINTAINER= skv@FreeBSD.org COMMENT= ClearSilver view class for Catalyst -BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/ClearSilver.pm:${PORTSDIR}/www/p5-ClearSilver \ +BUILD_DEPENDS= p5-ClearSilver>=0:${PORTSDIR}/www/p5-ClearSilver \ p5-Catalyst-Runtime>=5.7000:${PORTSDIR}/www/p5-Catalyst-Runtime \ - ${SITE_PERL}/${PERL_ARCH}/Data/Structure/Util.pm:${PORTSDIR}/devel/p5-Data-Structure-Util \ - ${SITE_PERL}/Class/C3.pm:${PORTSDIR}/devel/p5-Class-C3 \ - ${SITE_PERL}/Catalyst/View/Templated.pm:${PORTSDIR}/www/p5-Catalyst-View-Templated + p5-Data-Structure-Util>=0:${PORTSDIR}/devel/p5-Data-Structure-Util \ + p5-Class-C3>=0:${PORTSDIR}/devel/p5-Class-C3 \ + p5-Catalyst-View-Templated>=0:${PORTSDIR}/www/p5-Catalyst-View-Templated RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Catalyst-View-Template-Declare>=0:${PORTSDIR}/www/p5-Catalyst-View-Template-Declare PERL_CONFIGURE= yes --- p5-Catalyst-View-ClearSilver-0.02.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: