commit: 9299b28f0c4f422db1f424df7372a2ee8a035785
Author: Felix Janda <felix.janda <AT> posteo <DOT> de>
AuthorDate: Sun Feb 22 16:51:46 2015 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Mon Feb 23 12:55:24 2015 +0000
URL:
http://sources.gentoo.org/gitweb/?p=proj/hardened-dev.git;a=commit;h=9299b28f
dev-libs/boehm-gc: bump to 7.4.2
Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
---
dev-libs/boehm-gc/boehm-gc-7.4.2-r99.ebuild | 47 +++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/dev-libs/boehm-gc/boehm-gc-7.4.2-r99.ebuild
b/dev-libs/boehm-gc/boehm-gc-7.4.2-r99.ebuild
new file mode 100644
index 0000000..2312d58
--- /dev/null
+++ b/dev-libs/boehm-gc/boehm-gc-7.4.2-r99.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2015 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.4.2.ebuild,v
1.4 2015/02/21 12:19:01 ago Exp $
+
+EAPI=5
+
+inherit eutils
+
+MY_P="gc-${PV}"
+
+DESCRIPTION="The Boehm-Demers-Weiser conservative garbage collector"
+HOMEPAGE="http://www.hboehm.info/gc/"
+SRC_URI="http://www.hboehm.info/gc/gc_source/${MY_P}.tar.gz"
+
+LICENSE="boehm-gc"
+SLOT="0"
+KEYWORDS="amd64 ~arm ~mips ppc ~x86"
+IUSE="cxx static-libs threads"
+
+DEPEND=">=dev-libs/libatomic_ops-7.4
+ virtual/pkgconfig"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+ epatch "${FILESDIR}"/${PN}-7.2e-os_dep.patch
+}
+
+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
+ use static-libs || prune_libtool_files
+
+ rm -r "${ED}"/usr/share/gc || die
+ dodoc README.QUICK doc/README{.environment,.linux,.macros}
+ dohtml doc/*.html
+ newman doc/gc.man GC_malloc.1
+}