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.2_alpha6.ebuild

61 lines
1.5 KiB

# Copyright 1999-2012 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.2_alpha6.ebuild,v 1.2 2012/06/11 16:01:14 darkside Exp $
EAPI=4
AUTOTOOLS_AUTORECONF=yes
inherit autotools-utils
MY_P="gc-${PV/_/}"
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 ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="cxx static-libs threads"
DEPEND="dev-libs/libatomic_ops"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
DOCS=( README.QUICK doc/README{,.environment,.linux,.macros} doc/barrett_diagram )
src_prepare() {
sed '/Cflags/s:$:/gc:g' -i bdw-gc.pc.in || die
sed \
-e '/gc_allocator.h/d' \
-i Makefile.am || die
rm -rf libatomic_ops || die
autotools-utils_src_prepare
}
src_configure() {
local myeconfargs=(
--with-libatomic-ops=yes
$(use_enable cxx cplusplus)
$(use threads || echo --disable-threads)
)
autotools-utils_src_configure
}
src_install() {
autotools-utils_src_install
rm -rf "${ED}"/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
dohtml doc/*.html
newman doc/gc.man GC_malloc.1
}