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.2d-r1.ebuild

60 lines
1.5 KiB

# Copyright 1999-2013 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.2d-r1.ebuild,v 1.1 2013/04/25 08:57:24 sera Exp $
EAPI=5
inherit autotools eutils
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="boehm-gc"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~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-7.2
virtual/pkgconfig"
S="${WORKDIR}/${MY_P/d}"
src_prepare() {
rm -r libatomic_ops || die
epatch "${FILESDIR}"/${P}-configure.patch
epatch "${FILESDIR}"/${P}-automake-1.13.patch
eautoreconf
}
src_configure() {
local config=(
--with-libatomic-ops
$(use_enable cxx cplusplus)
$(use_enable static-libs static)
$(use threads || echo --disable-threads)
)
econf "${config[@]}"
}
src_install() {
default
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
dodoc README.QUICK doc/README{.environment,.linux,.macros} doc/barrett_diagram
dohtml doc/*.html
newman doc/gc.man GC_malloc.1
prune_libtool_files
}