diff options
author | nakai <nakai@FreeBSD.org> | 1999-11-11 18:15:58 +0800 |
---|---|---|
committer | nakai <nakai@FreeBSD.org> | 1999-11-11 18:15:58 +0800 |
commit | 1ae093c6a796f2efd680abc55010705d513ae1f8 (patch) | |
tree | ee1eabbfabe1c84c1a833eff16d173d51981d1ae /lang/librep2/Makefile | |
parent | 93bdc451cd6956df5319ca171a580e43f3132212 (diff) | |
download | freebsd-ports-gnome-1ae093c6a796f2efd680abc55010705d513ae1f8.tar.gz freebsd-ports-gnome-1ae093c6a796f2efd680abc55010705d513ae1f8.tar.zst freebsd-ports-gnome-1ae093c6a796f2efd680abc55010705d513ae1f8.zip |
Initial import.
Lisp interpriter library.
Diffstat (limited to 'lang/librep2/Makefile')
-rw-r--r-- | lang/librep2/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lang/librep2/Makefile b/lang/librep2/Makefile new file mode 100644 index 000000000000..5b99ef9d617e --- /dev/null +++ b/lang/librep2/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: librep +# Version required: 0.7.1 +# Date created: 13 September 1999 +# Whom: Yukihiro Nakai <nakai@FreeBSD.org> +# +# $FreeBSD$ +# + +DISTNAME= librep-0.7.1 +CATEGORIES= lang +MASTER_SITES= ftp://ftp.dcs.warwick.ac.uk/people/John.Harper/librep/ + +MAINTAINER= nakai@FreeBSD.org + +PLIST_SUB= GNUHOST=${ARCH}--freebsd${OSREL} + +USE_GMAKE= yes +GNU_CONFIGURE= yes +CONFIGURE_ENV+= LIBS="-lxpg4" + +TAR_VER= '\"'`${TAR} --version 2>&1 | ${SED} 's/GNU tar version //'`'\"' + +post-patch: + ${CAT} ${WRKSRC}/lisp/tar-file-handler.jl | \ + ${SED} '/^(defvar tarfh-gnu-tar-version/s/nil/'${TAR_VER}'/' \ + > ${FILESDIR}/tmp.work + ${CP} ${FILESDIR}/tmp.work ${WRKSRC}/lisp/tar-file-handler.jl + +.include <bsd.port.mk> |