From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Mar 17 08:20:11 2004 Return-Path: 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 28FCB16A4CE for ; Wed, 17 Mar 2004 08:20:11 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2166543D3F for ; Wed, 17 Mar 2004 08:20:11 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i2HGKBbv014022 for ; Wed, 17 Mar 2004 08:20:11 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.10/8.12.10/Submit) id i2HGKAp6014021; Wed, 17 Mar 2004 08:20:10 -0800 (PST) (envelope-from gnats) Date: Wed, 17 Mar 2004 08:20:10 -0800 (PST) Message-Id: <200403171620.i2HGKAp6014021@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Toshiya SAITOH Subject: Re: ports/64377: correct perl module depencency in net/smokeping X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Toshiya SAITOH List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Mar 2004 16:20:11 -0000 The following reply was made to PR ports/64377; it has been noted by GNATS. From: Toshiya SAITOH To: freebsd-gnats-submit@FreeBSD.org Cc: =?ISO-2022-JP?B?GyRCYzdGIxsoQiAbJEJDUjpIGyhC?= Subject: Re: ports/64377: correct perl module depencency in net/smokeping Date: Thu, 18 Mar 2004 01:18:59 +0900 --Apple-Mail-3-301408593 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; format=flowed Hi, I got Makefile patch wrong. Here is corrected. Sorry for the mess. --- Toshiya SAITOH --Apple-Mail-3-301408593 Content-Transfer-Encoding: 7bit Content-Type: application/octet-stream; x-unix-mode=0644; name="smokeping.Makefile.patch" Content-Disposition: attachment; filename=smokeping.Makefile.patch --- Makefile.orig Mon Mar 15 12:12:36 2004 +++ Makefile Thu Mar 18 00:51:05 2004 @@ -16,10 +16,7 @@ RUN_DEPENDS= rrdtool:${PORTSDIR}/net/rrdtool \ ${SITE_PERL}/CGI/SpeedyCGI.pm:${PORTSDIR}/www/p5-CGI-SpeedyCGI \ ${SITE_PERL}/BER.pm:${PORTSDIR}/net-mgmt/p5-SNMP_Session \ - ${SITE_PERL}/CGI.pm:${PORTSDIR}/www/p5-CGI.pm \ - ${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 \ - ${SITE_PERL}/Pod/Usage.pm:${PORTSDIR}/textproc/p5-PodParser \ - ${SITE_PERL}/Net/SMTP.pm:${PORTSDIR}/net/p5-Net + ${SITE_PERL}/CGI.pm:${PORTSDIR}/www/p5-CGI.pm OPTIONS= FPING "Support for fping probes" on OPTIONS+= ECHOPING "Support for EchoPing probes" off @@ -28,6 +25,15 @@ OPTIONS+= RADIUS "Support for Radius probes" off .include + +.if ${PERL_LEVEL} < 500800 +RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 \ + ${SITE_PERL}/Net/SMTP.pm:${PORTSDIR}/net/p5-Net +.endif + +.if ${PERL_LEVEL} < 500600 +RUN_DEPENDS+= ${SITE_PERL}/Pod/Usage.pm:${PORTSDIR}/textproc/p5-PodParser +.endif .ifdef(WITH_FPING) RUN_DEPENDS+= ${LOCALBASE}/sbin/fping:${PORTSDIR}/net/fping --Apple-Mail-3-301408593--