gc: new package part of inkscape depends

This commit is contained in:
str1ngs 2011-06-26 16:44:38 -07:00
parent 5280ebf018
commit fc8d3a72b0
4 changed files with 40 additions and 0 deletions

1
srcpkgs/gc-devel Symbolic link
View File

@ -0,0 +1 @@
gc

2
srcpkgs/gc/depends Normal file
View File

@ -0,0 +1,2 @@
abi_depends=">=7.1"
api_depends="${abi_depends}"

View File

@ -0,0 +1,13 @@
# Template file for 'gc-devel'.
#
short_desc="${short_desc} - development files"
long_desc="${long_desc}
This package contains files for development, headers, static libs, etc."
do_install()
{
mkdir -p ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/{include,share} ${DESTDIR}/usr
mv ${SRCPKGDESTDIR}/usr/lib/*.a ${DESTDIR}/usr/lib
}

24
srcpkgs/gc/template Normal file
View File

@ -0,0 +1,24 @@
# Template file for 'gc'
pkgname=gc
version=7.1
distfiles="http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-$version.tar.gz"
build_style=gnu_configure
short_desc="A garbage collector for C and C++"
maintainer="Mike Rosset <mike.rosset@gmail.com>"
homepage="http://www.hpl.hp.com/personal/Hans_Boehm/gc/"
license="GPL-2"
checksum=e3cef6028fe3efe7de3bcf4107c880eae50b3ee79841450d885467c09bcebf30
long_desc="
The Boehm-Demers-Weiser conservative garbage collector can be used as a
garbage collecting replacement for C malloc or C++ new. It allows you to
allocate memory basically as you normally would, without explicitly
deallocating memory that is no longer useful. The collector automatically
recycles memory when it determines that it can no longer be otherwise
accessed.
"
subpackages="gc-devel"
Add_dependency run libgcc
Add_dependency run glibc
Add_dependency build glibc-devel