Date: Sat, 23 Mar 2002 23:34:30 +0900 From: Yoichi NAKAYAMA <yoichi@FreeBSD.org> To: portmgr <portmgr@FreeBSD.org> Cc: FreeBSD Ports <ports@FreeBSD.org> Subject: Re: ports/36004: Update: japanese/eb, japanese/ndtpd Message-ID: <wyg02rnyix.wl@eken7.eken.phys.nagoya-u.ac.jp> In-Reply-To: <wyu1rcy9pm.wl@eken3.eken.phys.nagoya-u.ac.jp> References: <200203171258.g2HCwgi20139@buzz.avcp.mei.co.jp> <wyu1rcy9pm.wl@eken3.eken.phys.nagoya-u.ac.jp>
next in thread | previous in thread | raw e-mail | index | archive | help
At Tue, 19 Mar 2002 22:21:25 +0900, Yoichi NAKAYAMA <yoichi@FreeBSD.org> wrote: > > portmgr, we would need following patch to use autoconf (not 213) > in ports system otherwise, unnecessary build dependency is put or > cannot use autoconf. > > Index: bsd.port.mk > =================================================================== > RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v > retrieving revision 1.402 > diff -u -r1.402 bsd.port.mk > --- bsd.port.mk 16 Mar 2002 23:37:02 -0000 1.402 > +++ bsd.port.mk 19 Mar 2002 13:19:59 -0000 > @@ -891,7 +891,7 @@ > > GNU_CONFIGURE= yes > .endif > -.if defined(USE_AUTOCONF_VER) > +.if ${USE_AUTOCONF_VER} == 213 > BUILD_DEPENDS+= autoconf213:${PORTSDIR}/devel/autoconf213 > .endif > .if defined(USE_LIBTOOL) Sorry. It should be as follows. Index: bsd.port.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.402 diff -u -r1.402 bsd.port.mk --- bsd.port.mk 16 Mar 2002 23:37:02 -0000 1.402 +++ bsd.port.mk 23 Mar 2002 14:22:55 -0000 @@ -890,9 +890,9 @@ USE_AUTOCONF_VER?= 213 GNU_CONFIGURE= yes -.endif -.if defined(USE_AUTOCONF_VER) +.if ${USE_AUTOCONF_VER} == 213 BUILD_DEPENDS+= autoconf213:${PORTSDIR}/devel/autoconf213 +.endif .endif .if defined(USE_LIBTOOL) GNU_CONFIGURE= yes -- Yoichi Nakayama To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?wyg02rnyix.wl>