From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 29 09:30:05 2008 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6683F1065676 for ; Fri, 29 Feb 2008 09:30:05 +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 42FF58FC1C for ; Fri, 29 Feb 2008 09:30:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m1T9U4BQ019371 for ; Fri, 29 Feb 2008 09:30:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m1T9U4xq019368; Fri, 29 Feb 2008 09:30:04 GMT (envelope-from gnats) Resent-Date: Fri, 29 Feb 2008 09:30:04 GMT Resent-Message-Id: <200802290930.m1T9U4xq019368@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, Yen-Ming Lee Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 199071065678 for ; Fri, 29 Feb 2008 09:22:49 +0000 (UTC) (envelope-from leeym@db1.leeym.com) Received: from db1.leeym.com (db1.leeym.com [66.79.165.131]) by mx1.freebsd.org (Postfix) with ESMTP id E1A6B8FC20 for ; Fri, 29 Feb 2008 09:22:48 +0000 (UTC) (envelope-from leeym@db1.leeym.com) Received: from db1.leeym.com (localhost [127.0.0.1]) by db1.leeym.com (8.14.1/8.14.1) with ESMTP id m1T9NlJl081098; Fri, 29 Feb 2008 01:23:47 -0800 (PST) (envelope-from leeym@db1.leeym.com) Received: (from leeym@localhost) by db1.leeym.com (8.14.2/8.14.2/Submit) id m1T9Nkrk081097; Fri, 29 Feb 2008 01:23:46 -0800 (PST) (envelope-from leeym) Message-Id: <200802290923.m1T9Nkrk081097@db1.leeym.com> Date: Fri, 29 Feb 2008 01:23:46 -0800 (PST) From: Yen-Ming Lee To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: tjs@cdpa.nsysu.edu.tw Subject: ports/121214: [PATCH] audio/p5-MP3-Find: simplify dependency 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: Fri, 29 Feb 2008 09:30:05 -0000 >Number: 121214 >Category: ports >Synopsis: [PATCH] audio/p5-MP3-Find: simplify dependency >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: Fri Feb 29 09:30:04 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 6.2-RELEASE i386 >Organization: >Environment: System: FreeBSD db1.leeym.com 6.2-RELEASE FreeBSD 6.2-RELEASE #0: Fri Jan 12 10:40:27 UTC 2007 >Description: - use CPAN macro - simplify dependency - bump PORTREVISION Port maintainer (tjs@cdpa.nsysu.edu.tw) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-MP3-Find-0.06_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/audio/p5-MP3-Find/Makefile,v retrieving revision 1.1 diff -u -u -r1.1 Makefile --- Makefile 12 Jul 2006 20:24:34 -0000 1.1 +++ Makefile 29 Feb 2008 09:22:08 -0000 @@ -7,23 +7,25 @@ PORTNAME= MP3-Find PORTVERSION= 0.06 +PORTREVISION= 1 CATEGORIES= audio perl5 -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} -#MASTER_SITE_SUBDIR= ../../authors/id/P/PE/PEICHMAN -MASTER_SITE_SUBDIR= MP3 +MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= tjs@cdpa.nsysu.edu.tw COMMENT= Search and sort MP3 files based on their ID3 tags -BUILD_DEPENDS= ${SITE_PERL}/MP3/Info.pm:${PORTSDIR}/audio/p5-MP3-Info \ - ${SITE_PERL}/File/Find/Rule.pm:${PORTSDIR}/devel/p5-File-Find-Rule \ - ${SITE_PERL}/${PERL_ARCH}/List/Util.pm:${PORTSDIR}/lang/p5-Scalar-List-Utils -RUN_DEPENDS+= ${BUILD_DEPENDS} +RUN_DEPENDS= p5-MP3-Info>=0:${PORTSDIR}/audio/p5-MP3-Info MAN1= mp3db.1 mp3find.1 MAN3= MP3::Find::DB.3 MP3::Find::Filesystem.3 MP3::Find.3 MP3::Find::Base.3 PERL_CONFIGURE= yes -.include +.include + +.if ${PERL_LEVEL} < 500703 +RUN_DEPENDS+= p5-Scalar-List-Utils>=0:${PORTSDIR}/lang/p5-Scalar-List-Utils +.endif + +.include Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/audio/p5-MP3-Find/pkg-plist,v retrieving revision 1.1 diff -u -u -r1.1 pkg-plist --- pkg-plist 12 Jul 2006 20:24:34 -0000 1.1 +++ pkg-plist 29 Feb 2008 09:22:08 -0000 @@ -8,6 +8,5 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/MP3/Find/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/MP3/Find @dirrm %%SITE_PERL%%/MP3/Find -@dirrm %%SITE_PERL%%/MP3 @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/MP3 @dirrmtry %%SITE_PERL%%/MP3 --- p5-MP3-Find-0.06_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: