From owner-freebsd-ports Wed Jun 27 10:10:14 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1827537B406 for ; Wed, 27 Jun 2001 10:10:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f5RHA3244844; Wed, 27 Jun 2001 10:10:03 -0700 (PDT) (envelope-from gnats) Date: Wed, 27 Jun 2001 10:10:03 -0700 (PDT) Message-Id: <200106271710.f5RHA3244844@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: ports/26472: Update port: editors/jed Reply-To: Peter Pentchev Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/26472; it has been noted by GNATS. From: Peter Pentchev To: Benedikt Schmidt Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/26472: Update port: editors/jed Date: Wed, 27 Jun 2001 20:11:34 +0300 On Wed, Jun 27, 2001 at 09:10:05AM -0700, Benedikt Schmidt wrote: > >Originator: Benedikt Schmidt > >Synopsis: Re: ports/26472: Update port: editors/jed > >Category: ports > > >Description: > Maintainer didn't respond to PR 26472 (Tue Apr 10 00:40:01 PDT 2001). > A new version has been released since then, so here is a new diff. > > Update to version 0.99.14 > -Change NO_XJED to WITHOUT_X11 > -Fix make -DWITHOUT_X11 package target > -add %%PORTDOCS%% to pkg-list Thanks! Nooowwwww... how about just the following little patchlet? :) It does several things: 1. Generates DISTNAME and MASTER_SITES automatically from PORTVERSION. 2. Adds to CONFIGURE_ENV instead of replacing it, so the user may specify additional environment settings. 3. Removes the unneeded INSTALL_TARGET and WRKSRC: INSTALL_TARGET=install by default, and WRKSRC=${WRKDIR}/${DISTNAME} by default. 4. Executes 'strip' on the xjed executables in a more scalable way: maybe someday ${XJED} will contain the names of more then one additional X executable :) 5. Adds a missed file to the packing list :) Except for those, I am ready to commit this update. Would you like me to change the maintainer of the port, and bestow it upon you? :) G'luck, Peter -- I am not the subject of this sentence. diff -urN jed/Makefile jed-r1/Makefile --- jed/Makefile Wed Jun 27 19:35:51 2001 +++ jed-r1/Makefile Wed Jun 27 19:51:03 2001 @@ -8,8 +8,8 @@ PORTNAME= jed PORTVERSION= 0.99.14 CATEGORIES= editors -MASTER_SITES= ftp://space.mit.edu/pub/davis/jed/v0.99/ -DISTNAME= ${PORTNAME}-B0.99-14 +MASTER_SITES= ftp://space.mit.edu/pub/davis/jed/v${PORTVERSION:R}/ +DISTNAME= ${PORTNAME}-B${PORTVERSION:R}-${PORTVERSION:E} MAINTAINER= eric@cybernut.com @@ -26,10 +26,8 @@ DIST_SUBDIR= jed GNU_CONFIGURE= yes -CONFIGURE_ENV= JED_ROOT=${PREFIX}/lib/jed +CONFIGURE_ENV+= JED_ROOT=${PREFIX}/lib/jed ALL_TARGET= all getmail ${XJED} -INSTALL_TARGET= install -WRKSRC= ${WRKDIR}/jed-B0.99-14 MAN1= jed.1 rgrep.1 pre-install: @@ -39,9 +37,9 @@ strip ${PREFIX}/bin/jed strip ${PREFIX}/bin/rgrep strip ${PREFIX}/lib/jed/bin/getmail -.if defined(XJED) - strip ${PREFIX}/bin/xjed -.endif +.for f in ${XJED} + strip ${PREFIX}/bin/$f +.endfor ${CP} -R ${WRKSRC}/lib/* ${PREFIX}/lib/jed/lib -${RM} ${PREFIX}/lib/jed/info/* -${RMDIR} ${PREFIX}/lib/jed/info diff -urN jed/pkg-plist jed-r1/pkg-plist --- jed/pkg-plist Wed Jun 27 19:35:51 2001 +++ jed-r1/pkg-plist Wed Jun 27 20:02:10 2001 @@ -120,6 +120,7 @@ lib/jed/lib/pushmode.sl lib/jed/lib/pymode.sl lib/jed/lib/rcs.sl +lib/jed/lib/recent.sl lib/jed/lib/regexp.sl lib/jed/lib/register.sl lib/jed/lib/replace.sl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message