diff options
author | max <max@FreeBSD.org> | 1996-10-18 08:56:31 +0000 |
---|---|---|
committer | max <max@FreeBSD.org> | 1996-10-18 08:56:31 +0000 |
commit | b82ec7f1b17abf9951da742d4ef899a98aa5d52a (patch) | |
tree | e12288c3e58682d78feac6c25059e42498a109d1 /editors/emacs19 | |
parent | 0e53d131e8e3a8f2a18bcaebfab2c03b0bb3e488 (diff) | |
download | FreeBSD-ports-b82ec7f1b17abf9951da742d4ef899a98aa5d52a.zip FreeBSD-ports-b82ec7f1b17abf9951da742d4ef899a98aa5d52a.tar.gz |
Take NOMANCOMPRESS setting into account.
Reminded by: "Philippe Charnier" <charnier@xp11.frmug.org>
Use GNU_CONFIGURE=yes instead of HAS_CONFIGURE=yes.
Diffstat (limited to 'editors/emacs19')
-rw-r--r-- | editors/emacs19/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/editors/emacs19/Makefile b/editors/emacs19/Makefile index af91593..1806b76 100644 --- a/editors/emacs19/Makefile +++ b/editors/emacs19/Makefile @@ -3,22 +3,24 @@ # Date created: 29 October 1994 # Whom: jkh # -# $Id: Makefile,v 1.19 1996/06/07 09:41:20 jkh Exp $ +# $Id: Makefile,v 1.20 1996/09/04 00:55:41 asami Exp $ # DISTNAME= emacs-19.34 CATEGORIES+= editors MASTER_SITES= ftp://prep.ai.mit.edu/pub/gnu/ -HAS_CONFIGURE= yes +GNU_CONFIGURE= yes USE_GMAKE= yes -CONFIGURE_ARGS= i386--freebsd --prefix=${PREFIX} --with-x-toolkit +CONFIGURE_ARGS+= i386--freebsd --with-x-toolkit STRIP= post-install: +.if !defined(NOMANCOMPRESS) gzip -9nf ${PREFIX}/man/man1/emacs.1 gzip -9nf ${PREFIX}/man/man1/etags.1 gzip -9nf ${PREFIX}/man/man1/ctags.1 +.endif for file in emacs-19.34 emacsclient etags ctags b2m; do \ strip ${PREFIX}/bin/$$file; \ done |