diff options
author | Shigeyuki Fukushima <shige@FreeBSD.org> | 2000-01-11 14:42:30 +0000 |
---|---|---|
committer | Shigeyuki Fukushima <shige@FreeBSD.org> | 2000-01-11 14:42:30 +0000 |
commit | 30ec893159f120b9049178b535cc7a68688d8f10 (patch) | |
tree | 28dac85e51c35de2b973b904d69414582459733f /editors/flim113-emacs | |
parent | 11db3427a12e1fdf5ddff8237954dcaf64b8cc18 (diff) | |
download | ports-30ec893159f120b9049178b535cc7a68688d8f10.tar.gz ports-30ec893159f120b9049178b535cc7a68688d8f10.zip |
Notes
Diffstat (limited to 'editors/flim113-emacs')
-rw-r--r-- | editors/flim113-emacs/Makefile | 21 | ||||
-rw-r--r-- | editors/flim113-emacs/files/_pkg.el | 4 |
2 files changed, 24 insertions, 1 deletions
diff --git a/editors/flim113-emacs/Makefile b/editors/flim113-emacs/Makefile index 86aa9d242739..a35ee3ae6c3e 100644 --- a/editors/flim113-emacs/Makefile +++ b/editors/flim113-emacs/Makefile @@ -40,7 +40,7 @@ ALL_TARGET?= elc .if defined(EMACS_PORT) PKGNAME= flim-${EMACS_PORT}-${FLIM_VER} -EMACS_CMD= ${PREFIX}/bin/${EMACS_NAME}-${EMACS_VER} +EMACS_CMD?= ${PREFIX}/bin/${EMACS_NAME}-${EMACS_VER} BUILD_DEPENDS+= ${EMACS_CMD}:${PORTSDIR}/editors/${EMACS_PORT} .if defined(HAS_COMMON_PORT) && (${HAS_COMMON_PORT} == "YES") RUN_DEPENDS+= ${EMACS_CMD}:${PORTSDIR}/editors/${EMACS_PORT}-common @@ -95,6 +95,10 @@ MAKEINFO= makeinfo --no-split --no-validate MAKEINFO_EMACS= ${EMACS_CMD} -no-site-file -no-init-file -batch MAKEINFO_EMACS_FLAGS= -e texinfo-format-buffer -f save-buffer +pre-build: +.if defined(EMACS_PACKAGESDIR) && defined(XEMACS_PKGNAME) + @${MAKE} pkg-el-copy +.endif post-build: .if defined(BUILD_INFO_BY_EMACS) && (${BUILD_INFO_BY_EMACS} == "YES") @@ -107,6 +111,9 @@ pre-install: .if defined(EMACS_PACKAGESDIR) && defined(EMACS_PACKAGES_SUBDIRS) @${MAKE} mkdir-site-packages .endif +.if defined(EMACS_PACKAGESDIR) && defined(XEMACS_PKGNAME) + @${MAKE} pkg-el-install +.endif post-install: # install package-cookie @@ -157,6 +164,18 @@ info-build-by-emacs: ${MAKEINFO_EMACS} $${i} ${MAKEINFO_EMACS_FLAGS} || ${TRUE} ; \ done) .endif + +pkg-el-copy: + @(if [ -f ${FILESDIR}/_pkg.el ] ; then \ + ${CP} ${FILESDIR}/_pkg.el ${WRKSRC}/_pkg.el ;\ + fi) + +pkg-el-install: + @(if [ -f ${FILESDIR}/_pkg.el ] ; then \ + ${MKDIR} ${PREFIX}/${EMACS_PACKAGESDIR}/lisp/${XEMACS_PKGNAME} ;\ + ${INSTALL_DATA} ${FILESDIR}/_pkg.el \ + ${PREFIX}/${EMACS_PACKAGESDIR}/lisp/${XEMACS_PKGNAME}/_pkg.el ;\ + fi) mkdir-site-packages: @(for i in ${EMACS_PACKAGES_SUBDIRS} ; do \ diff --git a/editors/flim113-emacs/files/_pkg.el b/editors/flim113-emacs/files/_pkg.el new file mode 100644 index 000000000000..7b3df375fb4d --- /dev/null +++ b/editors/flim113-emacs/files/_pkg.el @@ -0,0 +1,4 @@ +;;;###autoload +(package-provide 'flim + :version 1.13 + :type 'regular) |