diff options
author | itohy <itohy@pkgsrc.org> | 2000-05-09 23:33:40 +0000 |
---|---|---|
committer | itohy <itohy@pkgsrc.org> | 2000-05-09 23:33:40 +0000 |
commit | 27dd813e08be9777de3c1c8d985fdc2a1c1d8d93 (patch) | |
tree | 751f935d094a4c2264e6d45e8eb56e0cf2ca9bc2 /lang/gforth/Makefile | |
parent | c292b6f4c057b87aa834dc88fb1f84971b5c92d1 (diff) | |
download | pkgsrc-27dd813e08be9777de3c1c8d985fdc2a1c1d8d93.tar.gz |
Fix installation of info dir.
Add gforth.el.
Fix @dirrm order.
Diffstat (limited to 'lang/gforth/Makefile')
-rw-r--r-- | lang/gforth/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lang/gforth/Makefile b/lang/gforth/Makefile index 5fe23087cf1..08bf9fa14a9 100644 --- a/lang/gforth/Makefile +++ b/lang/gforth/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2000/04/11 06:54:45 itohy Exp $ +# $NetBSD: Makefile,v 1.5 2000/05/09 23:33:40 itohy Exp $ DISTNAME= gforth-0.4.0 CATEGORIES= lang @@ -10,6 +10,8 @@ HOMEPAGE= http://www.complang.tuwien.ac.at/forth/gforth/ ONLY_FOR_PLATFORM= *-*-i386 *-*-m68k GNU_CONFIGURE= YES +# Make sure elisp will be installed even if no emacs installed. +CONFIGURE_ENV+= EMACS=${PREFIX}/bin/emacs INFO_FILES= gforth.info PLIST_SRC= ${WRKDIR}/PLIST @@ -22,4 +24,7 @@ post-build: @k=${KERNEL_FI} && ${ECHO} "using kernel image: $$k" && \ ${SED} -e "s/@KERNEL_FI@/$$k/g" <${PKGDIR}/PLIST >${PLIST_SRC} +pre-install: + ${MKDIR} ${PREFIX}/share/emacs/site-lisp + .include "../../mk/bsd.pkg.mk" |