From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Sep 20 18:10:02 2010 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 DAB0E1065673 for ; Mon, 20 Sep 2010 18:10:02 +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 9B9628FC08 for ; Mon, 20 Sep 2010 18:10:02 +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 o8KIA1YN053354 for ; Mon, 20 Sep 2010 18:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o8KIA1U3053353; Mon, 20 Sep 2010 18:10:01 GMT (envelope-from gnats) Resent-Date: Mon, 20 Sep 2010 18:10:01 GMT Resent-Message-Id: <201009201810.o8KIA1U3053353@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, Martin Matuska Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 78A23106566C for ; Mon, 20 Sep 2010 18:03:19 +0000 (UTC) (envelope-from mm@mail2.vx.sk) Received: from mail2.vx.sk (mail2.vx.sk [IPv6:2a01:4f8:100:84a3::3]) by mx1.freebsd.org (Postfix) with ESMTP id 0CA348FC0A for ; Mon, 20 Sep 2010 18:03:19 +0000 (UTC) Received: from neo.vx.sk (localhost [127.0.0.1]) by mail2.vx.sk (Postfix) with ESMTP id 3365DE26B0; Mon, 20 Sep 2010 20:03:18 +0200 (CEST) Received: from mail2.vx.sk ([127.0.0.1]) by neo.vx.sk (mail.vx.sk [127.0.0.1]) (amavisd-new, port 10024) with LMTP id ENVVGsgBn9Eg; Mon, 20 Sep 2010 20:03:07 +0200 (CEST) Received: by mail2.vx.sk (Postfix, from userid 1001) id D1F23E26A6; Mon, 20 Sep 2010 20:03:07 +0200 (CEST) Message-Id: <20100920180307.D1F23E26A6@mail2.vx.sk> Date: Mon, 20 Sep 2010 20:03:07 +0200 (CEST) From: Martin Matuska To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: yanagisawa@csg.is.titech.ac.jp Subject: ports/150762: [PATCH] mail/p5-Mail-DKIM: depend on p5-Digest-SHA only if perl < 5.10.1 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: Mon, 20 Sep 2010 18:10:02 -0000 >Number: 150762 >Category: ports >Synopsis: [PATCH] mail/p5-Mail-DKIM: depend on p5-Digest-SHA only if perl < 5.10.1 >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: Mon Sep 20 18:10:00 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Martin Matuska >Release: FreeBSD 8.1-STABLE amd64 >Organization: >Environment: System: FreeBSD neo.vx.sk 8.1-STABLE FreeBSD 8.1-STABLE #1 r212768M: Fri Sep 17 00:01:06 CEST >Description: The Digest-SHA module is included in Perl 5.10 and higher. Explicitly depend on p5-Digest-SHA only if PERL_LEVEL < 50100 Port maintainer (yanagisawa@csg.is.titech.ac.jp) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-Mail-DKIM-0.38.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/mail/p5-Mail-DKIM/Makefile,v retrieving revision 1.22 diff -u -r1.22 Makefile --- Makefile 5 Apr 2010 23:19:59 -0000 1.22 +++ Makefile 20 Sep 2010 18:02:35 -0000 @@ -15,7 +15,6 @@ COMMENT= Perl5 module to process and/or create DKIM email RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Crypt/OpenSSL/RSA.pm:${PORTSDIR}/security/p5-Crypt-OpenSSL-RSA \ - ${SITE_PERL}/${PERL_ARCH}/Digest/SHA.pm:${PORTSDIR}/security/p5-Digest-SHA \ ${SITE_PERL}/${PERL_ARCH}/Net/DNS.pm:${PORTSDIR}/dns/p5-Net-DNS \ ${SITE_PERL}/Mail/Address.pm:${PORTSDIR}/mail/p5-Mail-Tools BUILD_DEPENDS= ${RUN_DEPENDS} @@ -44,4 +43,10 @@ post-install: ${INSTALL_SCRIPT} ${WRKSRC}/scripts/dkim*.pl ${PREFIX}/bin -.include +.include + +.if ${PERL_LEVEL} < 501000 +RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Digest/SHA.pm:${PORTSDIR}/security/p5-Digest-SHA +.endif + +.include --- p5-Mail-DKIM-0.38.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: