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.6.0.ebuild

53 lines
1.2 KiB

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit multilib-minimal
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="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~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.4[${MULTILIB_USEDEP}]
virtual/pkgconfig"
S="${WORKDIR}/${MY_P}"
multilib_src_configure() {
local config=(
--with-libatomic-ops
$(use_enable cxx cplusplus)
$(use_enable static-libs static)
$(use threads || echo --disable-threads)
)
ECONF_SOURCE=${S} econf "${config[@]}"
}
multilib_src_compile() {
use sparc && emake src/sparc_mach_dep.lo
default
}
multilib_src_install_all() {
local HTML_DOCS=( doc/*.html )
einstalldocs
dodoc doc/README{.environment,.linux,.macros}
rm -r "${ED%/}"/usr/share/gc || die
# package provides .pc files
find "${D}" -name '*.la' -delete || die
newman doc/gc.man GC_malloc.1
}