diff options
author | wiz <wiz@pkgsrc.org> | 2005-08-03 20:46:16 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2005-08-03 20:46:16 +0000 |
commit | eff99f5b4fe20001455e8e40a5e71105d70e0bde (patch) | |
tree | 0d8c649fc3b8ea2548004d576ed6d7fd6af6d382 /lang/clisp/Makefile | |
parent | 4dcfa50aa65324476cfd3c17a2a90f1b35851f06 (diff) | |
download | pkgsrc-eff99f5b4fe20001455e8e40a5e71105d70e0bde.tar.gz |
Peter Schuller in PR 30890:
clisp is not built with any extension modules; including the
POSIX/SYSCALLS/OS module which is going to be needed for
almost any "real" work with clisp.
Enable some more modules and bump PKGREVISION.
Shorten DESCR a bit while here.
Diffstat (limited to 'lang/clisp/Makefile')
-rw-r--r-- | lang/clisp/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lang/clisp/Makefile b/lang/clisp/Makefile index 307b4c0a347..51137b14370 100644 --- a/lang/clisp/Makefile +++ b/lang/clisp/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.43 2005/06/17 04:49:47 jlam Exp $ +# $NetBSD: Makefile,v 1.44 2005/08/03 20:46:16 wiz Exp $ DISTNAME= clisp-2.33.2 +PKGREVISION= 1 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=clisp/} EXTRACT_SUFX= .tar.bz2 @@ -33,7 +34,11 @@ do-configure: ${CONFIGURE_SCRIPT} --host=${MACHINE_GNU_PLATFORM} \ --prefix=${PREFIX}) && \ ./makemake --prefix=${PREFIX} --with-readline --with-gettext \ - --with-dynamic-ffi --fsstnd=netbsd >Makefile + --with-dynamic-ffi --fsstnd=netbsd >Makefile && \ + ${MV} Makefile Makefile.patch && \ + ${SED} -e 's/MODULES =/MODULES = syscalls regexp pcre wildcard/g' \ + < Makefile.patch > Makefile && \ + ${RM} Makefile.patch pre-build: cd ${WRKSRC}/avcall && ${MAKE} @@ -42,5 +47,6 @@ pre-build: .include "../../converters/libiconv/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/readline/buildlink3.mk" +.include "../../devel/pcre/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |