From owner-freebsd-ports-bugs@FreeBSD.ORG Thu May 11 02:20:11 2006 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 3BEE116A406 for ; Thu, 11 May 2006 02:20:11 +0000 (UTC) (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 903BB43D4C for ; Thu, 11 May 2006 02:20:10 +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 k4B2KA9o089246 for ; Thu, 11 May 2006 02:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k4B2KAtq089242; Thu, 11 May 2006 02:20:10 GMT (envelope-from gnats) Resent-Date: Thu, 11 May 2006 02:20:10 GMT Resent-Message-Id: <200605110220.k4B2KAtq089242@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 B4BD516A40F; Thu, 11 May 2006 02:16:52 +0000 (UTC) (envelope-from leeym@utopia.leeym.com) Received: from msr32.hinet.net (msr32.hinet.net [168.95.4.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1C0643D46; Thu, 11 May 2006 02:16:51 +0000 (GMT) (envelope-from leeym@utopia.leeym.com) Received: from utopia.leeym.com (utopia.leeym.com [211.21.137.52]) by msr32.hinet.net (8.9.3/8.9.3) with ESMTP id KAA27572; Thu, 11 May 2006 10:16:49 +0800 (CST) Received: from localhost (localhost [127.0.0.1]) by utopia.leeym.com (Postfix) with ESMTP id 87A65B29C76; Thu, 11 May 2006 10:16:48 +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 EDt6oODYm07p; Thu, 11 May 2006 10:16:41 +0800 (CST) Received: by utopia.leeym.com (Postfix, from userid 1000) id AD40EB29C75; Thu, 11 May 2006 10:16:41 +0800 (CST) Message-Id: <20060511021641.AD40EB29C75@utopia.leeym.com> Date: Thu, 11 May 2006 10:16:41 +0800 (CST) From: Yen-Ming Lee To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: mat@FreeBSD.org Subject: ports/97115: [PATCH] net/p5-Net: depends on Authen-SASL conditionally 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, 11 May 2006 02:20:11 -0000 >Number: 97115 >Category: ports >Synopsis: [PATCH] net/p5-Net: depends on Authen-SASL conditionally >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 11 02:20:09 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 6.1-RC i386 >Organization: FreeBSD Taiwan >Environment: System: FreeBSD utopia.leeym.com 6.1-RC FreeBSD 6.1-RC #0: Thu May 4 09:18:28 CST >Description: - depends on Authen-SASL conditionally Port maintainer (mat@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.75 >How-To-Repeat: >Fix: --- p5-Net-1.19,1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/net/p5-Net/Makefile,v retrieving revision 1.42 diff -u -u -r1.42 Makefile --- Makefile 11 Jun 2005 16:12:58 -0000 1.42 +++ Makefile 11 May 2006 02:15:49 -0000 @@ -16,8 +16,7 @@ MAINTAINER= mat@FreeBSD.org COMMENT= Perl5 modules to access and use network protocols -RUN_DEPENDS= ${SITE_PERL}/Authen/SASL.pm:${PORTSDIR}/security/p5-Authen-SASL \ - ${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 +RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 PERL_CONFIGURE= yes CONFIGURE_ARGS= < /dev/null @@ -33,4 +32,11 @@ Net::Time.3 \ Net::libnetFAQ.3 -.include +.include + +# Authen-SASL is not available under perl 5.005_03 +.if ${PERL_LEVEL} >= 500600 +RUN_DEPENDS+= ${SITE_PERL}/Authen/SASL.pm:${PORTSDIR}/security/p5-Authen-SASL +.endif + +.include --- p5-Net-1.19,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: