Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Jun 2001 10:10:03 -0700 (PDT)
From:      Peter Pentchev <roam@orbitel.bg>
To:        freebsd-ports@FreeBSD.org
Subject:   Re: ports/26472: Update port: editors/jed
Message-ID:  <200106271710.f5RHA3244844@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/26472; it has been noted by GNATS.

From: Peter Pentchev <roam@orbitel.bg>
To: Benedikt Schmidt <s_bschmi@ira.uka.de>
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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200106271710.f5RHA3244844>