diff options
author | sobomax <sobomax@FreeBSD.org> | 2000-07-28 10:45:43 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2000-07-28 10:45:43 +0000 |
commit | c1162f73f7166754119dd3bbd7d66ef84d311894 (patch) | |
tree | e639c6cef2724f27135776002abdb85cccabf530 /lang/ccscript/Makefile | |
parent | 3e599b7be0b4cdc251811778de08e17b77e31c18 (diff) | |
download | FreeBSD-ports-c1162f73f7166754119dd3bbd7d66ef84d311894.zip FreeBSD-ports-c1162f73f7166754119dd3bbd7d66ef84d311894.tar.gz |
Add ccscript - a state-event driven class extendible C++ script interpreter.
PR: 20229
Submitted by: David Sugar <dyfet@gnu.org>
Diffstat (limited to 'lang/ccscript/Makefile')
-rw-r--r-- | lang/ccscript/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/lang/ccscript/Makefile b/lang/ccscript/Makefile new file mode 100644 index 0000000..3db6de8 --- /dev/null +++ b/lang/ccscript/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: ccscript +# Date created: 26 July 2000 +# Whom: David Sugar <dyfet@gnu.org> +# +# $FreeBSD$ +# + +PORTNAME= ccscript +PORTVERSION= 1.1.1 +CATEGORIES= lang +MASTER_SITES= ftp://www.voxilla.org/pub/ccscript/ + +MAINTAINER= dyfet@gnu.org + +LIB_DEPENDS= ccstd.0:${PORTSDIR}/devel/commoncpp + +USE_GMAKE= yes +USE_LIBTOOL= yes +USE_AUTOCONF= yes +INSTALLS_SHLIB= yes + +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" + +post-extract: + @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ + 's|-release \$$\(LT_RELEASE\)||g' + +.include <bsd.port.mk> |