diff options
author | steve <steve@FreeBSD.org> | 1998-02-16 22:38:26 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1998-02-16 22:38:26 +0800 |
commit | 424ad4ece044f954411668d4dd80f30ef351a3a0 (patch) | |
tree | f5322e7bb52342a5b9ce56055e4466630db432d0 /editors/xemacs-devel/Makefile | |
parent | e330390184abdef11fc1b8c02dc6b0e342238b88 (diff) | |
download | freebsd-ports-gnome-424ad4ece044f954411668d4dd80f30ef351a3a0.tar.gz freebsd-ports-gnome-424ad4ece044f954411668d4dd80f30ef351a3a0.tar.zst freebsd-ports-gnome-424ad4ece044f954411668d4dd80f30ef351a3a0.zip |
Revert previous change. Now faces will be autodetected as before
except when PACKAGE_BUILDING is defined where it will be disabled
by default.
Suggested by: asami and eivind
Diffstat (limited to 'editors/xemacs-devel/Makefile')
-rw-r--r-- | editors/xemacs-devel/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/editors/xemacs-devel/Makefile b/editors/xemacs-devel/Makefile index 82019c69f7c4..d2e6cb02b23a 100644 --- a/editors/xemacs-devel/Makefile +++ b/editors/xemacs-devel/Makefile @@ -3,7 +3,7 @@ # Date created: 26 August 1997 # Whom: Michael Elbel (me) # -# $Id: Makefile,v 1.7 1998/01/01 21:06:35 gj Exp $ +# $Id: Makefile,v 1.8 1998/02/15 15:43:42 steve Exp $ # DISTNAME= xemacs-20.3 @@ -34,8 +34,7 @@ CONFIGURE_ARGS= i386--freebsd --prefix=${PREFIX} \ --site-includes=${PREFIX}/include \ --site-libraries=${PREFIX}/lib \ --sitelispdir="${PREFIX}/lib/xemacs/site-lisp ${PREFIX}/share/emacs/site-lisp" \ - --with-xface=no \ - ${WITH_MULE} ${WITH_DIALOGS} + ${WITH_XFACE} ${WITH_MULE} ${WITH_DIALOGS} MAN1= ctags.1 etags.1 gnuattach.1 gnuclient.1 gnudoit.1 \ gnuserv.1 xemacs.1 ALL_TARGET= all dist @@ -62,6 +61,11 @@ PLIST= ${PKGDIR}/PLIST.mule WITH_DIALOGS= --with-dialogs=athena .endif +# Drop faces if building package, autodetect otherwise +.if defined(PACKAGE_BUILDING) +WITH_XFACE?= --with-xface=no +.endif + post-install: .for file in b2m ctags etags gnuclient ${DISTNAME} strip ${PREFIX}/bin/${file} |