From owner-freebsd-ports Mon Jun 23 14:11:27 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA00724 for ports-outgoing; Mon, 23 Jun 1997 14:11:27 -0700 (PDT) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA00718 for ; Mon, 23 Jun 1997 14:11:24 -0700 (PDT) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.5/8.7.3) id OAA10377; Mon, 23 Jun 1997 14:10:34 -0700 (PDT) Date: Mon, 23 Jun 1997 14:10:34 -0700 (PDT) Message-Id: <199706232110.OAA10377@vader.cs.berkeley.edu> To: roberto@keltia.freenix.fr CC: james@nexis.net, freebsd-ports@hub.freebsd.org In-reply-to: <19970623202436.64276@keltia.freenix.fr> (message from Ollivier Robert on Mon, 23 Jun 1997 20:24:36 +0200) Subject: Re: ports/3936: perl 5.004_01 is already available From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk * -rwxr-xr-x 1 root bin 13633 May 17 17:32 /usr/local/bin/perl5.004* * -rwxr-xr-x 2 root bin 13633 Jun 16 18:30 /usr/local/bin/perl5.00401* Ouch. James, can you try this patch? (We've been talking about this before.) Satoshi ------- Index: bsd.port.mk =================================================================== RCS file: /usr/cvs/src/share/mk/bsd.port.mk,v retrieving revision 1.227.2.21 diff -u -r1.227.2.21 bsd.port.mk --- bsd.port.mk 1997/06/18 03:21:08 1.227.2.21 +++ bsd.port.mk 1997/06/23 21:09:21 @@ -121,6 +121,7 @@ # BROKEN - Port is broken. Set this string to the reason why. # RESTRICTED - Port is restricted. Set this string to the reason why. # USE_GMAKE - Says that the port uses gmake. +# USE_PERL5 - Says that the port uses perl5 for building and running. # USE_IMAKE - Says that the port uses imake. # USE_X11 - Says that the port uses X11 (i.e., installs in ${X11BASE}). # NO_INSTALL_MANPAGES - For imake ports that don't like the install.man @@ -304,7 +305,11 @@ RUN_DEPENDS+= ${EXEC_DEPENDS} .endif .if defined(USE_GMAKE) -BUILD_DEPENDS+= gmake:${PORTSDIR}/devel/gmake +BUILD_DEPENDS+= gmake:${PORTSDIR}/devel/gmake +.endif +.if defined(USE_PERL5) +BUILD_DEPENDS+= perl5.00401:${PORTSDIR}/lang/perl5 +RUN_DEPENDS+= perl5.00401:${PORTSDIR}/lang/perl5 .endif .if exists(${PORTSDIR}/../Makefile.inc)