From owner-freebsd-perl@FreeBSD.ORG Tue Nov 16 03:37:36 2010 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A85E11065670; Tue, 16 Nov 2010 03:37:36 +0000 (UTC) (envelope-from gslin@colo-p.gslin.org) Received: from colo-p.gslin.org (97.135.ip.mwsrv.com [210.242.135.97]) by mx1.freebsd.org (Postfix) with ESMTP id 7A94D8FC2B; Tue, 16 Nov 2010 03:37:36 +0000 (UTC) Received: by colo-p.gslin.org (Postfix, from userid 1000) id AF6E87E81B; Tue, 16 Nov 2010 11:37:35 +0800 (CST) To: FreeBSD-gnats-submit@freebsd.org From: Gea-Suan Lin X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20101116033735.AF6E87E81B@colo-p.gslin.org> Date: Tue, 16 Nov 2010 11:37:35 +0800 (CST) Cc: perl@FreeBSD.org, gslin@gslin.org Subject: [PATCH] sysutils/p5-Brackup: Fix missing dependencies X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Nov 2010 03:37:36 -0000 >Submitter-Id: current-users >Originator: Gea-Suan Lin >Organization: >Confidential: no >Synopsis: [PATCH] sysutils/p5-Brackup: Fix missing dependencies >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 7.3-RELEASE-p2 i386 >Environment: System: FreeBSD colo-p.gslin.org 7.3-RELEASE-p2 FreeBSD 7.3-RELEASE-p2 #0: Mon Jul 12 19:04:04 UTC 2010 >Description: [DESCRIBE CHANGES] Port maintainer (perl@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-Brackup-1.10_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/sysutils/p5-Brackup/Makefile /home/staff/gslin/work/ports/p5-Brackup/Makefile --- /usr/ports/sysutils/p5-Brackup/Makefile 2010-11-04 22:29:49.000000000 +0800 +++ /home/staff/gslin/work/ports/p5-Brackup/Makefile 2010-11-15 01:14:47.000000000 +0800 @@ -7,6 +7,7 @@ PORTNAME= Brackup PORTVERSION= 1.10 +PORTREVISION= 1 CATEGORIES= sysutils perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= ../../authors/id/B/BR/BRADFITZ @@ -17,10 +18,13 @@ RUN_DEPENDS= p5-DBD-SQLite>0:${PORTSDIR}/databases/p5-DBD-SQLite \ p5-DBI>0:${PORTSDIR}/databases/p5-DBI \ + p5-DateTime-Format-ISO8601>0:${PORTSDIR}/devel/p5-DateTime-Format-ISO8601 \ p5-Digest-SHA1>0:${PORTSDIR}/security/p5-Digest-SHA1 \ - p5-MP3-Info>0:${PORTSDIR}/audio/p5-MP3-Info \ + p5-Fuse>0:${PORTSDIR}/sysutils/p5-Fuse \ + p5-IO-stringy>0:${PORTSDIR}/devel/p5-IO-stringy \ p5-Net-Amazon-S3>0:${PORTSDIR}/net/p5-Net-Amazon-S3 \ - p5-Net-SFTP>0:${PORTSDIR}/net/p5-Net-SFTP + p5-Net-SFTP>0:${PORTSDIR}/net/p5-Net-SFTP \ + p5-String-Escape>0:${PORTSDIR}/textproc/p5-String-Escape PERL_CONFIGURE= yes @@ -46,7 +50,17 @@ Brackup::Target::Filesystem.3 \ Brackup::Target::Ftp.3 \ Brackup::Target::GoogleAppEngine.3 \ - Brackup::Target::Sftp.3 \ - Brackup::Target::Riak.3 + Brackup::Target::Riak.3 \ + Brackup::Target::Sftp.3 -.include +.include + +.if ${PERL_LEVEL} < 500905 +RUN_DEPENDS+= p5-File-Temp>=0.17:${PORTSDIR}/devel/p5-File-Temp +.endif + +.if ${PERL_LEVEL} < 501001 +BUILD_DEPENDS+= p5-ExtUtils-Manifest>=1.52:${PORTSDIR}/devel/p5-ExtUtils-Manifest +.endif + +.include --- p5-Brackup-1.10_1.patch ends here ---