diff options
author | Jun Kuriyama <kuriyama@FreeBSD.org> | 1998-12-13 14:27:06 +0000 |
---|---|---|
committer | Jun Kuriyama <kuriyama@FreeBSD.org> | 1998-12-13 14:27:06 +0000 |
commit | 10a16f13357fa914b377bb2d8a8a14e87b986e19 (patch) | |
tree | 2449b61a12bb7270a675e524e16683fbd728925e /editors/emacs20-dl/Makefile | |
parent | 1d6f29e1d576ae80337013866a5199905b0d1889 (diff) |
Notes
Diffstat (limited to 'editors/emacs20-dl/Makefile')
-rw-r--r-- | editors/emacs20-dl/Makefile | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/editors/emacs20-dl/Makefile b/editors/emacs20-dl/Makefile new file mode 100644 index 000000000000..d3c36df943c0 --- /dev/null +++ b/editors/emacs20-dl/Makefile @@ -0,0 +1,41 @@ +# New ports collection makefile for: GNU emacs with dl +# Version required: 20.3 +# Date created: 10 October 1998 +# Whom: shige +# +# $Id$ +# + +DISTNAME= emacs-20.3 +PKGNAME= emacs-dl-20.3 +CATEGORIES= editors +MASTER_SITES= ${MASTER_SITE_GNU} + +PATCH_SITES= ftp://ftp.jaist.ac.jp/pub/GNU/elisp/emacs-20-dl/ +PATCHFILES= emacs-20.3-dl.diff +PATCH_DIST_STRIP= -p1 + +MAINTAINER= shige@kuis.kyoto-u.ac.jp + +RUN_DEPENDS= emacs-20.3:${.CURDIR}/../../editors/emacs20 + +GNU_CONFIGURE= yes +USE_GMAKE= yes +CONFIGURE_ARGS= i386--freebsd --with-x-toolkit --with-pop +MAKE_ENV= INSTALL_SCRIPT="${INSTALL_SCRIPT}" +EMACS_VER= 20.3 +PLIST_SUB= EMACS_VER=${EMACS_VER} + +.if defined(USE_XPGLIB) +.if (${USE_XPGLIB} == "YES") +CONFIGURE_ARGS+= --with-xpg4 +.endif +.endif + +pre-build: + @${RM} -rf ${WRKSRC}/info/* + +do-install: + @${INSTALL} -c -s -m 555 -o root -g wheel ${WRKSRC}/src/emacs ${PREFIX}/bin/emacs-dl-${EMACS_VER} + +.include <bsd.port.mk> |