diff options
author | agc <agc@pkgsrc.org> | 1999-10-29 13:57:56 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1999-10-29 13:57:56 +0000 |
commit | 212e28034344d5a4c4529ed00a112f088ff62b78 (patch) | |
tree | a4528481e927832954f5ace47ccc89fe3be08b30 /lang/librep/Makefile | |
parent | a967374368368fc34d7cf519df8e3d2d2880f635 (diff) | |
download | pkgsrc-212e28034344d5a4c4529ed00a112f088ff62b78.tar.gz |
Initial import of librep, an Emacs Lisp-like runtime library,
interpreter, compiler and VM, into the NetBSD packages collection.
Diffstat (limited to 'lang/librep/Makefile')
-rw-r--r-- | lang/librep/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lang/librep/Makefile b/lang/librep/Makefile new file mode 100644 index 00000000000..e54208443bb --- /dev/null +++ b/lang/librep/Makefile @@ -0,0 +1,29 @@ +# $NetBSD: Makefile,v 1.1.1.1 1999/10/29 13:57:56 agc Exp $ +# + +DISTNAME= librep-0.7 +CATEGORIES= lang +MASTER_SITES= ftp://ftp.dcs.warwick.ac.uk/people/John.Harper/librep/ + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://www.dcs.warwick.ac.uk/~john/sw/librep.html + +ONLY_FOR_PLATFORM= SunOS-*-* # only for Solaris, at the moment + +GNU_CONFIGURE= yes +USE_GMAKE= yes +USE_LIBTOOL= yes + +#INFO_FILES= librep.info + +PLIST_SRC= ${WRKDIR}/PLIST-src + +post-install: + case ${OPSYS} in \ + NetBSD) platform=""; os="netbsd1" ;; \ + SunOS) platform="sun"; os="solaris2" ;; \ + esac; \ + ${SED} -e 's|@PLATFORM@|'$$platform'|g' -e 's|@OS@|'$$os'|g' \ + ${PKGDIR}/PLIST > ${PLIST_SRC} + +.include "../../mk/bsd.pkg.mk" |