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-cpp/gconfmm: ChangeLog gconfmm-2.28.0.ebuild
Date: Thu, 29 Oct 2009 22:44:48
Message-Id: E1N3dja-00069i-Hi@stork.gentoo.org
1 eva 09/10/29 22:44:46
2
3 Modified: ChangeLog
4 Added: gconfmm-2.28.0.ebuild
5 Log:
6 New version for GNOME 2.28.
7 (Portage version: 2.2_rc46/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.70 dev-cpp/gconfmm/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/gconfmm/ChangeLog?rev=1.70&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/gconfmm/ChangeLog?rev=1.70&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/gconfmm/ChangeLog?r1=1.69&r2=1.70
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-cpp/gconfmm/ChangeLog,v
19 retrieving revision 1.69
20 retrieving revision 1.70
21 diff -u -r1.69 -r1.70
22 --- ChangeLog 12 Oct 2009 20:31:30 -0000 1.69
23 +++ ChangeLog 29 Oct 2009 22:44:45 -0000 1.70
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-cpp/gconfmm
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gconfmm/ChangeLog,v 1.69 2009/10/12 20:31:30 eva Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gconfmm/ChangeLog,v 1.70 2009/10/29 22:44:45 eva Exp $
29 +
30 +*gconfmm-2.28.0 (29 Oct 2009)
31 +
32 + 29 Oct 2009; Gilles Dartiguelongue <eva@g.o>
33 + +gconfmm-2.28.0.ebuild:
34 + New version for GNOME 2.28.
35
36 12 Oct 2009; Gilles Dartiguelongue <eva@g.o gconfmm-2.18.0.ebuild,
37 -gconfmm-2.20.0.ebuild:
38
39
40
41 1.1 dev-cpp/gconfmm/gconfmm-2.28.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/gconfmm/gconfmm-2.28.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/gconfmm/gconfmm-2.28.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gconfmm-2.28.0.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-cpp/gconfmm/gconfmm-2.28.0.ebuild,v 1.1 2009/10/29 22:44:45 eva Exp $
51
52 inherit gnome2 eutils
53
54 DESCRIPTION="C++ bindings for GConf"
55 HOMEPAGE="http://www.gtkmm.org"
56
57 LICENSE="LGPL-2.1"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
60 IUSE="doc examples"
61
62 RDEPEND=">=gnome-base/gconf-2.4
63 >=dev-cpp/glibmm-2.12
64 >=dev-cpp/gtkmm-2.4"
65
66 DEPEND=">=dev-util/pkgconfig-0.12.0
67 ${RDEPEND}"
68
69 DOCS="AUTHORS COPYING* ChangeLog NEWS README INSTALL"
70
71 src_unpack() {
72 gnome2_src_unpack
73
74 if ! use examples; then
75 # don't waste time building the examples
76 sed -i 's/^\(SUBDIRS =.*\)examples\(.*\)$/\1\2/' Makefile.in || \
77 die "sed Makefile.in failed"
78 fi
79 }
80
81 src_compile() {
82 gnome2_src_compile
83
84 if use doc; then
85 cd "${S}/docs/reference"
86 make all
87 fi
88 }
89
90 src_install() {
91 gnome2_src_install
92
93 if use doc ; then
94 dohtml -r docs/reference/html/* docs/images/*
95 fi
96
97 if use examples; then
98 find examples -type d -name '.deps' -exec rm -fr {} \; 2>/dev/null
99 cp -R examples "${D}/usr/share/doc/${PF}"
100 fi
101 }