blob: 1baab0bfafc8cc3895bc5efb0730069bf08e11d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/libsigc++-2.2.2.ebuild,v 1.7 2008/12/07 12:05:29 vapier Exp $
inherit eutils gnome.org flag-o-matic
DESCRIPTION="Typesafe callback system for standard C++"
HOMEPAGE="http://libsigc.sourceforge.net/"
LICENSE="LGPL-2.1"
SLOT="2"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE="debug doc test"
src_unpack() {
unpack ${A}
cd "${S}"
# don't waste time building examples/docs
sed -i 's|^\(SUBDIRS =.*\)docs examples\(.*\)$|\1\2|' Makefile.in || \
die "sed docs/examples failed"
# don't waste time building tests unless USE=test
if ! use test ; then
sed -i 's|^\(SUBDIRS =.*\)tests\(.*\)$|\1\2|' Makefile.in || \
die "sed tests failed"
fi
# fix image paths
if use doc ; then
sed -i 's|../../images/||g' docs/reference/html/*.html || \
die "sed failed"
fi
}
src_compile() {
filter-flags -fno-exceptions
local myconf
use debug \
&& myconf="--enable-debug=yes" \
|| myconf="--enable-debug=no"
econf ${myconf} || die "econf failed."
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed."
rm -fr "${D}"/usr/share
dodoc AUTHORS ChangeLog README NEWS TODO
if use doc ; then
dohtml -r docs/reference/html/* docs/images/*
cp -R examples "${D}"/usr/share/doc/${PF}/
fi
}
pkg_postinst() {
ewarn "To allow parallel installation of sigc++-1.0, sigc++-1.2, and sigc++2.0"
ewarn "the header files are now installed in a version specific"
ewarn "subdirectory. Be sure to unmerge any libsigc++ versions"
ewarn "< 1.0.4 that you may have previously installed."
}
|