From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Dec 23 10:50:07 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB8CA16A420 for ; Fri, 23 Dec 2005 10:50:07 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86D5E43D69 for ; Fri, 23 Dec 2005 10:50:06 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id jBNAo5WM059473 for ; Fri, 23 Dec 2005 10:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id jBNAo5E2059472; Fri, 23 Dec 2005 10:50:05 GMT (envelope-from gnats) Resent-Date: Fri, 23 Dec 2005 10:50:05 GMT Resent-Message-Id: <200512231050.jBNAo5E2059472@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 [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB07E16A41F for ; Fri, 23 Dec 2005 10:47:55 +0000 (GMT) (envelope-from leeym@utopia.leeym.com) Received: from msr3.hinet.net (msr3.hinet.net [168.95.4.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id E78C643D6B for ; Fri, 23 Dec 2005 10:47:42 +0000 (GMT) (envelope-from leeym@utopia.leeym.com) Received: from utopia.leeym.com (arcadia.leeym.com [211.21.137.53]) by msr3.hinet.net (8.9.3/8.9.3) with ESMTP id SAA17854; Fri, 23 Dec 2005 18:47:40 +0800 (CST) Received: from localhost (localhost [127.0.0.1]) by utopia.leeym.com (Postfix) with ESMTP id 65B9AB29C99; Fri, 23 Dec 2005 18:47:34 +0800 (CST) Received: from utopia.leeym.com ([127.0.0.1]) by localhost (utopia.leeym.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 95152-02; Fri, 23 Dec 2005 18:47:30 +0800 (CST) Received: by utopia.leeym.com (Postfix, from userid 1000) id 68CFFB29C91; Fri, 23 Dec 2005 18:47:30 +0800 (CST) Message-Id: <20051223104730.68CFFB29C91@utopia.leeym.com> Date: Fri, 23 Dec 2005 18:47:30 +0800 (CST) From: Yen-Ming Lee To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: gkovesdan@t-hosting.hu Subject: ports/90847: [PATCH] security/p5-Digest-DMAC: unbreak on old 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: Fri, 23 Dec 2005 10:50:08 -0000 >Number: 90847 >Category: ports >Synopsis: [PATCH] security/p5-Digest-DMAC: unbreak on old 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: Fri Dec 23 10:50:05 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 6.0-STABLE i386 >Organization: FreeBSD Taiwan >Environment: System: FreeBSD utopia.leeym.com 6.0-STABLE FreeBSD 6.0-STABLE #0: Thu Nov 17 09:15:19 CST 2005 >Description: - unbreak this port on old perl Port maintainer (gkovesdan@t-hosting.hu) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- p5-Digest-DMAC-1.1.4.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/security/p5-Digest-DMAC/Makefile,v retrieving revision 1.1 diff -u -u -r1.1 Makefile --- Makefile 17 Dec 2005 15:22:03 -0000 1.1 +++ Makefile 23 Dec 2005 10:46:52 -0000 @@ -15,13 +15,19 @@ BUILD_DEPENDS= ${SITE_PERL}/Crypt/CBC.pm:${PORTSDIR}/security/p5-Crypt-CBC \ ${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 +RUN_DEPENDS= ${BUILD_DEPENDS} -PERL_CONFIGURE= yes +PERL_CONFIGURE= yes MAN3= Digest::DMAC.3 .include -.if ${PERL_LEVEL} <= 500503 -IGNORE= requires Perl 5.6. Intall lang/perl5 or lang/perl5.8, and try again + +.if ${PERL_LEVEL} < 500600 +BUILD_DEPENDS+= ${SITE_PERL}/Test/More.pm:${PORTSDIR}/devel/p5-Test-Simple + +post-patch: + ${PERL} -pi -e '$$_ = "" if m{warnings}' ${WRKSRC}/DMAC.pm ${WRKSRC}/t/*.t .endif + .include --- p5-Digest-DMAC-1.1.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: