diff options
author | martin <martin@pkgsrc.org> | 2000-10-03 20:21:48 +0000 |
---|---|---|
committer | martin <martin@pkgsrc.org> | 2000-10-03 20:21:48 +0000 |
commit | 24a612ff658eb2315372feb8a28690a9ff6dbf80 (patch) | |
tree | d485ad4ed01059d02036a3144b00b84cb207e77d /net | |
parent | fee23866b4d188b3268f1bf146acad8c2629df5d (diff) | |
download | pkgsrc-24a612ff658eb2315372feb8a28690a9ff6dbf80.tar.gz |
Make it work again with the fixed xemacs pkg by moving the installation
to a proper directory (in the default load-path).
Diffstat (limited to 'net')
-rw-r--r-- | net/zenicb/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/net/zenicb/Makefile b/net/zenicb/Makefile index 4f55b1abd96..3934486fcc7 100644 --- a/net/zenicb/Makefile +++ b/net/zenicb/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2000/08/18 22:46:46 hubertf Exp $ +# $NetBSD: Makefile,v 1.10 2000/10/03 20:21:48 martin Exp $ # DISTNAME= zenicb-19981202 @@ -13,9 +13,9 @@ NO_SRC_ON_FTP= Already in MASTER_SITE_LOCAL .include "../../mk/bsd.prefs.mk" .if defined(USE_XEMACS) EMACS= xemacs -DEPENDS+= xemacs-*:../../editors/xemacs +DEPENDS+= xemacs-[1-9]*:../../editors/xemacs MAKEFLAGS+= USE_XEMACS=${USE_XEMACS} -ELISPDIR= lib/xemacs/lisp +ELISPDIR= lib/xemacs/xemacs-packages/lisp .else EMACS= emacs DEPENDS+= emacs-*:../../editors/emacs @@ -34,6 +34,9 @@ pre-configure: do-build: do-install: +.if defined(USE_XEMACS) + @${MKDIR} ${PREFIX}/${ELISPDIR} +.endif @for file in ${WRKSRC}/src/*.el; do \ j="${INSTALL_DATA} $$file ${PREFIX}/${ELISPDIR}/"; \ ${ECHO} $$j; $$j; \ |