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/semi-emacs-current | |
parent | 11db3427a12e1fdf5ddff8237954dcaf64b8cc18 (diff) | |
download | ports-30ec893159f120b9049178b535cc7a68688d8f10.tar.gz ports-30ec893159f120b9049178b535cc7a68688d8f10.zip |
Install _pkg.el for xemacs(21.x or later) package version descriptor.
Notes
Notes:
svn path=/head/; revision=24642
Diffstat (limited to 'editors/semi-emacs-current')
-rw-r--r-- | editors/semi-emacs-current/Makefile | 20 | ||||
-rw-r--r-- | editors/semi-emacs-current/files/_pkg.el | 4 |
2 files changed, 24 insertions, 0 deletions
diff --git a/editors/semi-emacs-current/Makefile b/editors/semi-emacs-current/Makefile index 775ececc4b92..50a7ee31e75f 100644 --- a/editors/semi-emacs-current/Makefile +++ b/editors/semi-emacs-current/Makefile @@ -100,6 +100,11 @@ 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") @${MAKE} info-build-by-emacs @@ -111,6 +116,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: @${MKDIR} -p ${PREFIX}/share/semi @@ -161,6 +169,18 @@ info-build-by-emacs: 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 \ ${MKDIR} ${PREFIX}/${EMACS_PACKAGESDIR}/$${i} ; \ diff --git a/editors/semi-emacs-current/files/_pkg.el b/editors/semi-emacs-current/files/_pkg.el new file mode 100644 index 000000000000..5bc3c1a4a951 --- /dev/null +++ b/editors/semi-emacs-current/files/_pkg.el @@ -0,0 +1,4 @@ +;;;###autoload +(package-provide 'semi + :version 1.18 + :type 'regular) |