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.4.0.ebuild ChangeLog
Date: Thu, 02 Oct 2014 12:02:42
Message-Id: 20141002120237.AB73E6C30@oystercatcher.gentoo.org
1 pacho 14/10/02 12:02:37
2
3 Modified: ChangeLog
4 Added: libsigc++-2.4.0.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.194 dev-libs/libsigc++/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsigc++/ChangeLog?rev=1.194&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsigc++/ChangeLog?rev=1.194&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsigc++/ChangeLog?r1=1.193&r2=1.194
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/ChangeLog,v
20 retrieving revision 1.193
21 retrieving revision 1.194
22 diff -u -r1.193 -r1.194
23 --- ChangeLog 7 Sep 2014 12:41:18 -0000 1.193
24 +++ ChangeLog 2 Oct 2014 12:02:37 -0000 1.194
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/libsigc++
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/ChangeLog,v 1.193 2014/09/07 12:41:18 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/ChangeLog,v 1.194 2014/10/02 12:02:37 pacho Exp $
30 +
31 +*libsigc++-2.4.0 (02 Oct 2014)
32 +
33 + 02 Oct 2014; Pacho Ramos <pacho@g.o> +libsigc++-2.4.0.ebuild:
34 + Version bump
35
36 *libsigc++-2.3.2-r1 (07 Sep 2014)
37
38
39
40
41 1.1 dev-libs/libsigc++/libsigc++-2.4.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsigc++/libsigc++-2.4.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libsigc++/libsigc++-2.4.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libsigc++-2.4.0.ebuild
47 ===================================================================
48 # Copyright 1999-2014 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.4.0.ebuild,v 1.1 2014/10/02 12:02:37 pacho Exp $
51
52 EAPI="5"
53 GCONF_DEBUG="no"
54
55 inherit eutils gnome2 flag-o-matic
56
57 DESCRIPTION="Typesafe callback system for standard C++"
58 HOMEPAGE="http://libsigc.sourceforge.net/"
59
60 LICENSE="LGPL-2.1"
61 SLOT="2"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
63 IUSE="doc static-libs test"
64
65 RDEPEND=""
66 DEPEND="sys-devel/m4"
67 # Needs mm-common for eautoreconf
68
69 src_prepare() {
70 # don't waste time building examples
71 sed -i 's|^\(SUBDIRS =.*\)examples\(.*\)$|\1\2|' \
72 Makefile.am Makefile.in || die "sed examples failed"
73
74 # don't waste time building tests unless USE=test
75 if ! use test ; then
76 sed -i 's|^\(SUBDIRS =.*\)tests\(.*\)$|\1\2|' \
77 Makefile.am Makefile.in || die "sed tests failed"
78 fi
79
80 gnome2_src_prepare
81 }
82
83 src_configure() {
84 filter-flags -fno-exceptions #84263
85
86 gnome2_src_configure \
87 $(use_enable doc documentation) \
88 $(use_enable static-libs static)
89 }
90
91 src_install() {
92 gnome2_src_install
93
94 if use doc ; then
95 dohtml -r docs/reference/html/* docs/images/*
96 insinto /usr/share/doc/${PF}
97 doins -r examples
98 fi
99 }