diff options
author | jlam <jlam@pkgsrc.org> | 1999-09-24 16:42:05 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 1999-09-24 16:42:05 +0000 |
commit | aa7a93bc67b9aefe0adf4b223a82932f6a5a9225 (patch) | |
tree | 4387aaa45e53105770afdc001482f99b49799ff4 /devel/boehm-gc/Makefile | |
parent | fb3cad5af74473b8df2262c2b4a74c06566636bf (diff) | |
download | pkgsrc-aa7a93bc67b9aefe0adf4b223a82932f6a5a9225.tar.gz |
Update boehm-gc to 5.0alpha3. It now supports m68k, i386, sparc a.out
systems and ELF ones (checked on alpha, i386, powerpc) as well. Update
supplied by SUNAGAWA Keiki <kei_sun@ba2.so-net.ne.jp> in PR#8482 with
minor additions by me.
Diffstat (limited to 'devel/boehm-gc/Makefile')
-rw-r--r-- | devel/boehm-gc/Makefile | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/devel/boehm-gc/Makefile b/devel/boehm-gc/Makefile index a1bf1ddf5c1..4a5d35726f1 100644 --- a/devel/boehm-gc/Makefile +++ b/devel/boehm-gc/Makefile @@ -1,17 +1,14 @@ -# $NetBSD: Makefile,v 1.11 1999/05/24 20:39:37 tv Exp $ +# $NetBSD: Makefile,v 1.12 1999/09/24 16:42:05 jlam Exp $ # FreeBSD Id: Makefile,v 1.1 1996/11/16 01:51:25 jdp Exp # -DISTNAME= gc4.12 -PKGNAME= boehm-gc-4.12 +DISTNAME= gc5.0alpha3 +PKGNAME= boehm-gc-5.0a3 CATEGORIES= devel -MASTER_SITES= http://reality.sgi.com/employees/boehm_mti/gc_source/ +MASTER_SITES= http://reality.sgi.com/boehm_mti/gc_source/ MAINTAINER= packages@netbsd.org -HOMEPAGE= http://reality.sgi.com/employees/boehm_mti/gc.html - -NOT_FOR_PLATFORM= *-*-sparc # SEGV in "./test_cpp 1" in build: target -NOT_FOR_PLATFORM+= *-*-alpha # needs dlopen, ELF, still SEGV's +HOMEPAGE= http://reality.sgi.com/boehm_mti/gc.html WRKSRC= ${WRKDIR}/gc ALL_TARGET= BSD-pkg-all @@ -19,4 +16,11 @@ INSTALL_TARGET= BSD-pkg-install MAKE_ENV+= CP="${CP}" INSTALL_DATA="${INSTALL_DATA}" \ INSTALL_MAN="${INSTALL_MAN}" +post-extract: + ${MV} ${WRKSRC}/gc.man ${WRKSRC}/gc.man.in + +pre-build: + ${SED} -e "s,@PREFIX@,${PREFIX},g" ${WRKSRC}/gc.man.in \ + > ${WRKSRC}/gc.man + .include "../../mk/bsd.pkg.mk" |