diff options
author | shige <shige@FreeBSD.org> | 1999-10-18 16:21:12 +0000 |
---|---|---|
committer | shige <shige@FreeBSD.org> | 1999-10-18 16:21:12 +0000 |
commit | 648094fcfe8fa450ae212577b0cc22bf00eef3f2 (patch) | |
tree | b8e6ec3668cca56580e9a7ffdd187993c5bc0fd7 /editors/flim-emacs | |
parent | f234deccd1aaaf5194fe178ef6deec727a8497c9 (diff) | |
download | FreeBSD-ports-648094fcfe8fa450ae212577b0cc22bf00eef3f2.zip FreeBSD-ports-648094fcfe8fa450ae212577b0cc22bf00eef3f2.tar.gz |
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/flim-emacs')
-rw-r--r-- | editors/flim-emacs/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/editors/flim-emacs/Makefile b/editors/flim-emacs/Makefile index 3e06413..6ebf3d9 100644 --- a/editors/flim-emacs/Makefile +++ b/editors/flim-emacs/Makefile @@ -103,6 +103,11 @@ post-build: @${MAKE} info-build .endif +pre-install: +.if defined(EMACS_PACKAGESDIR) && defined(EMACS_PACKAGES_SUBDIRS) + @${MAKE} mkdir-site-packages +.endif + post-install: # install package-cookie @${MKDIR} -p ${PREFIX}/share/flim @@ -153,6 +158,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}/${FLIMDOCDIR} @(cd ${WRKSRC} ; \ |