summaryrefslogtreecommitdiff
path: root/lang/librep/Makefile
diff options
context:
space:
mode:
authoragc <agc>1999-10-29 13:57:56 +0000
committeragc <agc>1999-10-29 13:57:56 +0000
commit227d6d33510f91411df62883f4745a55db3ff7cd (patch)
treea4528481e927832954f5ace47ccc89fe3be08b30 /lang/librep/Makefile
parentffae4f8b4d7430ee398136bef2d51631cd0d5a63 (diff)
downloadpkgsrc-227d6d33510f91411df62883f4745a55db3ff7cd.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/Makefile29
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"