diff options
author | uebayasi <uebayasi> | 2008-10-11 09:31:54 +0000 |
---|---|---|
committer | uebayasi <uebayasi> | 2008-10-11 09:31:54 +0000 |
commit | b96889b1354fc2db619e890c37d47726128607e1 (patch) | |
tree | 28f89f081daec07805c1f982f0bc63a420c005ba /chat/zenicb | |
parent | 82bb21f245fe7a2dee3f10a3aec11ffd03c27e07 (diff) | |
download | pkgsrc-b96889b1354fc2db619e890c37d47726128607e1.tar.gz |
Move mk/emacs.mk to editors/emacs/modules.mk.
Don't call pkg_info to get the installed Emacs version; always use the
version matching EMACS_TYPE set by users. Be DEPENDS to it. This should
address pkg/37146 by Aleksey Cheusov.
While here convert some emacs lisp packages to user-destdir.
Diffstat (limited to 'chat/zenicb')
-rw-r--r-- | chat/zenicb/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chat/zenicb/Makefile b/chat/zenicb/Makefile index 219bcb349df..3b466791cae 100644 --- a/chat/zenicb/Makefile +++ b/chat/zenicb/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2008/03/03 02:19:52 jlam Exp $ +# $NetBSD: Makefile,v 1.21 2008/10/11 09:31:54 uebayasi Exp $ DISTNAME= zenicb-19981202 PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME} @@ -10,10 +10,11 @@ MAINTAINER= pkgsrc-users@NetBSD.org COMMENT= ICB client for Emacs PKG_DESTDIR_SUPPORT= user-destdir +INSTALLATION_DIRS= ${EMACS_LISPPREFIX:C|^${PREFIX}/||}/zenicb NO_SRC_ON_FTP= Already in MASTER_SITE_LOCAL -.include "../../mk/emacs.mk" +.include "../../editors/emacs/modules.mk" EMACS_VERSIONS_ACCEPTED= emacs21 emacs21nox emacs20 xemacs214 xemacs215 @@ -22,7 +23,6 @@ EMACS_VERSIONS_ACCEPTED= emacs21 emacs21nox emacs20 xemacs214 xemacs215 do-build: do-install: - @${INSTALL_DATA_DIR} ${DESTDIR}${EMACS_LISPPREFIX}/zenicb @for file in ${WRKSRC}/src/*.el; do \ j="${INSTALL_DATA} $$file ${DESTDIR}${EMACS_LISPPREFIX}/zenicb"; \ ${ECHO} $$j; $$j; \ |