You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/boehm-gc/boehm-gc-7.1-r1.ebuild

50 lines
1.3 KiB

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/boehm-gc/boehm-gc-7.1-r1.ebuild,v 1.2 2011/11/13 18:56:12 vapier Exp $
inherit eutils
MY_P="gc-${PV/_/}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="The Boehm-Demers-Weiser conservative garbage collector"
HOMEPAGE="http://www.hpl.hp.com/personal/Hans_Boehm/gc/"
SRC_URI="http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/${MY_P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86"
IUSE="cxx threads"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e '/^SUBDIRS/s/doc//' Makefile.in || die
epatch "${FILESDIR}"/${PN}-6.5-gentoo.patch
epatch "${FILESDIR}"/gc6.6-builtin-backtrace-uclibc.patch
sed '/Cflags/s:$:/gc:g' -i bdw-gc.pc.in || die
}
src_compile() {
econf \
$(use_enable cxx cplusplus) \
$(use threads || echo --disable-threads)
emake || die
}
src_install() {
emake DESTDIR="${D}" install || die
rm -rf "${D}"/usr/share/gc || die
# dist_noinst_HEADERS
insinto /usr/include/gc
doins include/{cord.h,ec.h,javaxfc.h}
insinto /usr/include/gc/private
doins include/private/*.h
dodoc README.QUICK doc/README* doc/barrett_diagram
dohtml doc/*.html
newman doc/gc.man GC_malloc.1
}