diff options
author | Shigeyuki Fukushima <shige@FreeBSD.org> | 1999-10-18 16:21:12 +0000 |
---|---|---|
committer | Shigeyuki Fukushima <shige@FreeBSD.org> | 1999-10-18 16:21:12 +0000 |
commit | e26d416b72dd6a2dd04779fcc419f5a51ed94d18 (patch) | |
tree | 3f93c64db2fd743e4ea016e9bb6089cb131746b2 /editors/wemi-emacs-current | |
parent | Install to ${PREFIX}/lib/xemacs/site-packages as XEmacs packages. (diff) |
Install to ${PREFIX}/lib/xemacs/site-packages as XEmacs packages.
(apel is RUN_DEPENDS on xemacs-sumo-packages. some PLIST are fixed.)
Pointed out by: HASEGAWA Tomoki <thasegawa@mta.biglobe.ne.jp>
Diffstat (limited to 'editors/wemi-emacs-current')
-rw-r--r-- | editors/wemi-emacs-current/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/editors/wemi-emacs-current/Makefile b/editors/wemi-emacs-current/Makefile index 4fbaf5bf5d89..588960cd1440 100644 --- a/editors/wemi-emacs-current/Makefile +++ b/editors/wemi-emacs-current/Makefile @@ -105,6 +105,11 @@ post-build: @${MAKE} info-build .endif +pre-install: +.if defined(EMACS_PACKAGESDIR) && defined(EMACS_PACKAGES_SUBDIRS) + @${MAKE} mkdir-site-packages +.endif + post-install: @${MKDIR} -p ${PREFIX}/share/semi @${TOUCH} ${PREFIX}/share/semi/${SEMI_COOKIE} @@ -155,6 +160,11 @@ info-build-by-emacs: done) .endif +mkdir-site-packages: + @(for i in ${EMACS_PACKAGES_SUBDIRS} ; do \ + ${MKDIR} ${PREFIX}/${EMACS_PACKAGESDIR}/$${i} ; \ + done) + doc-install: @${MKDIR} ${PREFIX}/${WEMIDOCDIR} @(cd ${WRKSRC} ; \ |