4da3259f47
This includes a security fix. From ChangeLog: 2008-10-14 Antonio Diaz <ant_diaz@teleline.es> * Version 1.1 released. * configure: Quote arguments stored in config.status. 2008-08-21 Antonio Diaz <ant_diaz@teleline.es> * Version 1.0 released. * configure: Added option `--program-prefix'. * signal.c (strip_escapes): Buffer overflow fixed. * signal.c (resize_buffer): Pointer aliasing warning fixed.
27 lines
645 B
Makefile
27 lines
645 B
Makefile
# $NetBSD: Makefile,v 1.11 2008/11/04 14:27:37 reed Exp $
|
|
|
|
DISTNAME= ed-1.1
|
|
CATEGORIES= editors
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=ed/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= reed@reedmedia.net
|
|
HOMEPAGE= http://www.gnu.org/software/ed/ed.html
|
|
COMMENT= GNU version of line-oriented text editor
|
|
|
|
GNU_CONFIGURE= YES
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
INFO_FILES= # PLIST
|
|
|
|
.if defined(GNU_PROGRAM_PREFIX)
|
|
CONFIGURE_ARGS+= --program-prefix=${GNU_PROGRAM_PREFIX:Q}
|
|
.endif
|
|
PLIST_SUBST+= GNU_PROGRAM_PREFIX=${GNU_PROGRAM_PREFIX:Q}
|
|
BUILD_DEFS+= GNU_PROGRAM_PREFIX
|
|
|
|
post-install:
|
|
cd ${WRKSRC} && ${MAKE} install-man
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|