diff options
author | jseger <jseger@FreeBSD.org> | 1999-08-08 17:58:54 +0000 |
---|---|---|
committer | jseger <jseger@FreeBSD.org> | 1999-08-08 17:58:54 +0000 |
commit | eb322db4cd5a4af1328e80a336e34bfde70f030d (patch) | |
tree | e5caf72c731d69864084b130183b54fd6fda5bb8 /editors/emacs20/Makefile | |
parent | 0dc094e4fe076e388f823f44050eeae91ffc5b3d (diff) | |
download | FreeBSD-ports-eb322db4cd5a4af1328e80a336e34bfde70f030d.zip FreeBSD-ports-eb322db4cd5a4af1328e80a336e34bfde70f030d.tar.gz |
Upgrade to emacs 20.4
Submitted by: shige
PR: ports/12779
Diffstat (limited to 'editors/emacs20/Makefile')
-rw-r--r-- | editors/emacs20/Makefile | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/editors/emacs20/Makefile b/editors/emacs20/Makefile index 8926d56..a2f81a6 100644 --- a/editors/emacs20/Makefile +++ b/editors/emacs20/Makefile @@ -1,12 +1,12 @@ # New ports collection makefile for: GNU emacs -# Version required: 20.3 +# Version required: 20.4 # Date created: 29 October 1994 # Whom: jkh # -# $Id: Makefile,v 1.40 1999/03/11 21:47:10 scrappy Exp $ +# $Id: Makefile,v 1.41 1999/06/25 22:05:58 jseger Exp $ # -DISTNAME= emacs-20.3 +DISTNAME= emacs-20.4 CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= emacs @@ -27,14 +27,20 @@ CONFIGURE_ARGS= --with-x=no --with-pop MAKE_ENV= INSTALL_SCRIPT="${INSTALL_SCRIPT}" MAN1= emacs.1 etags.1 ctags.1 -PLIST_SUB= EMACS_VER=20.3 EMACS_ARCH=${CONFIGURE_TARGET} +PLIST_SUB= EMACS_VER=20.4 EMACS_ARCH=${CONFIGURE_TARGET} -.if defined(USE_XPGLIB) -.if (${USE_XPGLIB} == "YES") +.if defined(USE_XPG4) +.if (${USE_XPG4} == "YES" || ${USE_XPG4} == "yes") CONFIGURE_ARGS+= --with-xpg4 .endif .endif +pre-fetch: +.if !defined(USE_XPG4) + @${ECHO_MSG} "NOTE: You can have international locale library support " + @${ECHO_MSG} "by adding \"USE_XPG4=YES\" to argument of make." +.endif + pre-build: ${RM} -rf ${WRKSRC}/info/* |