Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libsigc++: libsigc++-2.2.6.ebuild ChangeLog
Date: Mon, 19 Apr 2010 20:23:04
Message-Id: 20100419202300.040452C04B@corvid.gentoo.org
1 eva 10/04/19 20:22:59
2
3 Modified: ChangeLog
4 Added: libsigc++-2.2.6.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.148 dev-libs/libsigc++/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libsigc++/ChangeLog?rev=1.148&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libsigc++/ChangeLog?rev=1.148&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libsigc++/ChangeLog?r1=1.147&r2=1.148
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/ChangeLog,v
19 retrieving revision 1.147
20 retrieving revision 1.148
21 diff -u -r1.147 -r1.148
22 --- ChangeLog 31 Mar 2010 23:14:20 -0000 1.147
23 +++ ChangeLog 19 Apr 2010 20:22:59 -0000 1.148
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-libs/libsigc++
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/ChangeLog,v 1.147 2010/03/31 23:14:20 eva Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/ChangeLog,v 1.148 2010/04/19 20:22:59 eva Exp $
29 +
30 +*libsigc++-2.2.6 (19 Apr 2010)
31 +
32 + 19 Apr 2010; Gilles Dartiguelongue <eva@g.o>
33 + +libsigc++-2.2.6.ebuild:
34 + Version bump.
35
36 *libsigc++-2.2.5 (31 Mar 2010)
37
38
39
40
41 1.1 dev-libs/libsigc++/libsigc++-2.2.6.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libsigc++/libsigc++-2.2.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libsigc++/libsigc++-2.2.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libsigc++-2.2.6.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/libsigc++-2.2.6.ebuild,v 1.1 2010/04/19 20:22:59 eva Exp $
51
52 EAPI="3"
53
54 inherit base eutils gnome.org flag-o-matic
55
56 DESCRIPTION="Typesafe callback system for standard C++"
57 HOMEPAGE="http://libsigc.sourceforge.net/"
58
59 LICENSE="LGPL-2.1"
60 SLOT="2"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
62 IUSE="doc test"
63
64 # Needs mm-common for eautoreconf
65 src_prepare() {
66 # don't waste time building examples
67 sed -i 's|^\(SUBDIRS =.*\)examples\(.*\)$|\1\2|' \
68 Makefile.am Makefile.in || die "sed examples failed"
69
70 # don't waste time building tests unless USE=test
71 if ! use test ; then
72 sed -i 's|^\(SUBDIRS =.*\)tests\(.*\)$|\1\2|' \
73 Makefile.am Makefile.in || die "sed tests failed"
74 fi
75 }
76
77 src_configure() {
78 filter-flags -fno-exceptions
79
80 local myconf="$myconf $(use_enable doc documentation)"
81
82 econf ${myconf} || die "econf failed."
83 }
84
85 src_install() {
86 emake DESTDIR="${D}" install || die "make install failed."
87 dodoc AUTHORS ChangeLog README NEWS TODO || die "dodoc failed"
88
89 if use doc ; then
90 dohtml -r docs/reference/html/* docs/images/* || die "dohtml failed"
91 insinto /usr/share/doc/${PF}
92 doins -r examples || die "doins failed"
93 fi
94 }
95
96 pkg_postinst() {
97 ewarn "To allow parallel installation of sigc++-1.0, sigc++-1.2, and sigc++2.0"
98 ewarn "the header files are now installed in a version specific"
99 ewarn "subdirectory. Be sure to unmerge any libsigc++ versions"
100 ewarn "< 1.0.4 that you may have previously installed."
101 }