blob: 5f37d95a85435b08866b774fb8ba3e670f272269 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/libsigc++-2.0.11.ebuild,v 1.4 2005/05/08 01:47:06 cryos 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="x86 ~ppc ~alpha amd64 ~sparc ~ppc64 ~hppa ~ppc-macos"
IUSE="debug"
DEPEND="virtual/libc"
src_compile() {
filter-flags -fno-exceptions
if use ppc-macos ; then
if [ -e /usr/lib/lib/libgcc_s.1.dylib ] ; then
append-ldflags -lgcc_s
fi
fi
local myconf
use debug \
&& myconf="--enable-debug=yes" \
|| myconf="--enable-debug=no"
econf ${myconf} || die "econf failed."
emake || die "emake failed"
}
src_install() {
make install DESTDIR=${D} || die "make install failed."
dodoc AUTHORS ChangeLog README NEWS TODO
mv ${D}/usr/share/doc/libsigc-2.0/docs/* ${D}/usr/share/doc/${PF}/
}
pkg_postinst() {
ewarn "To allow parallel installation of sig++-1.0, sig++-1.2, and sig++2.0"
ewarn "the header files are now installed in a version specific"
ewarn "subdirectory. Be sure to unmerge any libsig++ versions"
ewarn "< 1.0.4 that you may have previously installed."
}
|