Fri Feb 29 13:06:36 2008 UTC ()
Import libgcroots version 0.2.1.

This library abstracts architecture-dependent part of garbage collector
roots acquisition such as register windows of SPARC and register stack
backing store of IA-64. Main part of the code is based on Boehm GC 7.0.

With this library, you can easily write your own garbage collector such as
for small footprint, some application-specific optimizations, just learning
or to test experimental ideas.

Status:

Vendor Tag:	TNF
Release Tags:	pkgsrc-base


(obache)
diff -r0 -r1.1.1.1 pkgsrc/devel/libgcroots/Makefile
diff -r0 -r1.1.1.1 pkgsrc/devel/libgcroots/PLIST
diff -r0 -r1.1.1.1 pkgsrc/devel/libgcroots/distinfo
diff -r0 -r1.1.1.1 pkgsrc/devel/libgcroots/DESCR
diff -r0 -r1.1.1.1 pkgsrc/devel/libgcroots/buildlink3.mk

File Added: pkgsrc/devel/libgcroots/Makefile
# $NetBSD: Makefile,v 1.1.1.1 2008/02/29 13:06:36 obache Exp $
#

DISTNAME=	libgcroots-0.2.1
CATEGORIES=	devel
MASTER_SITES=	http://sigscheme.googlecode.com/files/

MAINTAINER=	obache@NetBSD.org
HOMEPAGE=	http://code.google.com/p/sigscheme/wiki/libgcroots
COMMENT=	Garbage collector supporting library

PKG_DESTDIR_SUPPORT=	user-destdir

GNU_CONFIGURE=	yes
USE_LIBTOOL=	yes
USE_TOOLS+=	pkg-config

PKGCONFIG_OVERRIDE+=	gcroots.pc.in

# This directory is used for c++ interface, but not build by default.
post-install:
	rmdir ${DESTDIR}${PREFIX}/include/libgcroots

.include "../../mk/bsd.pkg.mk"

File Added: pkgsrc/devel/libgcroots/PLIST
@comment $NetBSD: PLIST,v 1.1.1.1 2008/02/29 13:06:36 obache Exp $
include/gcroots.h
lib/libgcroots.la
lib/pkgconfig/gcroots.pc

File Added: pkgsrc/devel/libgcroots/distinfo
$NetBSD: distinfo,v 1.1.1.1 2008/02/29 13:06:36 obache Exp $

SHA1 (libgcroots-0.2.1.tar.gz) = 28c11ced03a5c8a6cd1c753cd59c3d8c03f93d7f
RMD160 (libgcroots-0.2.1.tar.gz) = 83f61c9564829942165588c6bdb1a2457170f34d
Size (libgcroots-0.2.1.tar.gz) = 409928 bytes

File Added: pkgsrc/devel/libgcroots/DESCR
This library abstracts architecture-dependent part of garbage collector
roots acquisition such as register windows of SPARC and register stack
backing store of IA-64. Main part of the code is based on Boehm GC 7.0.

With this library, you can easily write your own garbage collector such as
for small footprint, some application-specific optimizations, just learning
or to test experimental ideas.

File Added: pkgsrc/devel/libgcroots/buildlink3.mk
# $NetBSD: buildlink3.mk,v 1.1.1.1 2008/02/29 13:06:36 obache Exp $

BUILDLINK_DEPTH:=		${BUILDLINK_DEPTH}+
LIBGCROOTS_BUILDLINK3_MK:=	${LIBGCROOTS_BUILDLINK3_MK}+

.if ${BUILDLINK_DEPTH} == "+"
BUILDLINK_DEPENDS+=	libgcroots
.endif

BUILDLINK_PACKAGES:=	${BUILDLINK_PACKAGES:Nlibgcroots}
BUILDLINK_PACKAGES+=	libgcroots
BUILDLINK_ORDER:=	${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}libgcroots

.if ${LIBGCROOTS_BUILDLINK3_MK} == "+"
BUILDLINK_API_DEPENDS.libgcroots+=	libgcroots>=0.2.1
BUILDLINK_PKGSRCDIR.libgcroots?=	../../devel/libgcroots
.endif	# LIBGCROOTS_BUILDLINK3_MK

BUILDLINK_DEPTH:=		${BUILDLINK_DEPTH:S/+$//}