Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libsigc++: libsigc++-2.2.11.ebuild ChangeLog libsigc++-2.2.9.ebuild libsigc++-2.2.7.ebuild
Date: Sat, 29 Sep 2012 09:56:03
Message-Id: 20120929095543.525A721600@flycatcher.gentoo.org
1 pacho 12/09/29 09:55:43
2
3 Modified: ChangeLog
4 Added: libsigc++-2.2.11.ebuild
5 Removed: libsigc++-2.2.9.ebuild libsigc++-2.2.7.ebuild
6 Log:
7 Version bump, drop old.
8
9 (Portage version: 2.1.11.19/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.175 dev-libs/libsigc++/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsigc++/ChangeLog?rev=1.175&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsigc++/ChangeLog?rev=1.175&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsigc++/ChangeLog?r1=1.174&r2=1.175
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/ChangeLog,v
21 retrieving revision 1.174
22 retrieving revision 1.175
23 diff -u -r1.174 -r1.175
24 --- ChangeLog 30 Oct 2011 15:09:54 -0000 1.174
25 +++ ChangeLog 29 Sep 2012 09:55:43 -0000 1.175
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-libs/libsigc++
28 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/ChangeLog,v 1.174 2011/10/30 15:09:54 armin76 Exp $
30 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/ChangeLog,v 1.175 2012/09/29 09:55:43 pacho Exp $
32 +
33 +*libsigc++-2.2.11 (29 Sep 2012)
34 +
35 + 29 Sep 2012; Pacho Ramos <pacho@g.o> +libsigc++-2.2.11.ebuild,
36 + -libsigc++-2.2.7.ebuild, -libsigc++-2.2.9.ebuild:
37 + Version bump, drop old.
38
39 30 Oct 2011; Raúl Porcel <armin76@g.o> libsigc++-2.2.10.ebuild:
40 alpha/ia64/s390/sh/sparc stable wrt #385699
41
42
43
44 1.1 dev-libs/libsigc++/libsigc++-2.2.11.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsigc++/libsigc++-2.2.11.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsigc++/libsigc++-2.2.11.ebuild?rev=1.1&content-type=text/plain
48
49 Index: libsigc++-2.2.11.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/libsigc++-2.2.11.ebuild,v 1.1 2012/09/29 09:55:43 pacho Exp $
54
55 EAPI="4"
56
57 inherit base eutils gnome.org flag-o-matic
58
59 DESCRIPTION="Typesafe callback system for standard C++"
60 HOMEPAGE="http://libsigc.sourceforge.net/"
61
62 LICENSE="LGPL-2.1"
63 SLOT="2"
64 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"
65 IUSE="doc static-libs test"
66
67 DEPEND="sys-devel/m4"
68 RDEPEND=""
69
70 # Needs mm-common for eautoreconf
71 src_prepare() {
72 # don't waste time building examples
73 sed -i 's|^\(SUBDIRS =.*\)examples\(.*\)$|\1\2|' \
74 Makefile.am Makefile.in || die "sed examples failed"
75
76 # don't waste time building tests unless USE=test
77 if ! use test ; then
78 sed -i 's|^\(SUBDIRS =.*\)tests\(.*\)$|\1\2|' \
79 Makefile.am Makefile.in || die "sed tests failed"
80 fi
81 }
82
83 src_configure() {
84 filter-flags -fno-exceptions
85
86 econf $(use_enable doc documentation) \
87 $(use_enable static-libs static)
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install
92 dodoc AUTHORS ChangeLog README NEWS TODO
93 use static-libs || find "${D}" -name '*.la' -exec rm -f {} +
94
95 if use doc ; then
96 dohtml -r docs/reference/html/* docs/images/*
97 insinto /usr/share/doc/${PF}
98 doins -r examples
99 fi
100 }