56 lines
1.5 KiB
Bash
56 lines
1.5 KiB
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
inherit gnome2 flag-o-matic multilib-minimal
|
|
|
|
DESCRIPTION="Typesafe callback system for standard C++"
|
|
HOMEPAGE="https://libsigcplusplus.github.io/libsigcplusplus/
|
|
https://github.com/libsigcplusplus/libsigcplusplus"
|
|
|
|
LICENSE="LGPL-2.1+"
|
|
SLOT="2"
|
|
KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
|
|
IUSE="doc static-libs test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND=""
|
|
DEPEND="sys-devel/m4
|
|
doc? ( app-doc/doxygen )
|
|
test? ( dev-libs/boost[${MULTILIB_USEDEP}] )"
|
|
# Needs mm-common for eautoreconf
|
|
|
|
src_prepare() {
|
|
# don't waste time building examples
|
|
sed -i 's|^\(SUBDIRS =.*\)examples\(.*\)$|\1\2|' \
|
|
Makefile.am Makefile.in || die "sed examples failed"
|
|
|
|
# don't waste time building tests unless USE=test
|
|
if ! use test ; then
|
|
sed -i 's|^\(SUBDIRS =.*\)tests\(.*\)$|\1\2|' \
|
|
Makefile.am Makefile.in || die "sed tests failed"
|
|
fi
|
|
|
|
gnome2_src_prepare
|
|
}
|
|
|
|
multilib_src_configure() {
|
|
filter-flags -fno-exceptions #84263
|
|
|
|
ECONF_SOURCE="${S}" gnome2_src_configure \
|
|
$(multilib_native_use_enable doc documentation) \
|
|
$(use_enable static-libs static) \
|
|
$(use_enable test benchmark)
|
|
}
|
|
|
|
multilib_src_install() {
|
|
gnome2_src_install
|
|
}
|
|
|
|
multilib_src_install_all() {
|
|
einstalldocs
|
|
|
|
# Note: html docs are installed into /usr/share/doc/libsigc++-2.0
|
|
# We can't use /usr/share/doc/${PF} because of links from glibmm etc. docs
|
|
use doc && dodoc -r examples
|
|
}
|