Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/gconfmm/
Date: Sat, 19 Dec 2015 11:10:20
Message-Id: 1450523386.fa972fb39666a828fa1468fd15431f263cde29e1.pacho@gentoo
1 commit: fa972fb39666a828fa1468fd15431f263cde29e1
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 19 11:04:04 2015 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 19 11:09:46 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa972fb3
7
8 dev-cpp/gconfmm: Fix building with latest glibmm/libsigc++ (#568580)
9
10 Package-Manager: portage-2.2.26
11
12 dev-cpp/gconfmm/Manifest | 1 +
13 dev-cpp/gconfmm/gconfmm-2.28.3-r1.ebuild | 41 ++++++++++++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/dev-cpp/gconfmm/Manifest b/dev-cpp/gconfmm/Manifest
17 index d4e406e..dc7152e 100644
18 --- a/dev-cpp/gconfmm/Manifest
19 +++ b/dev-cpp/gconfmm/Manifest
20 @@ -1 +1,2 @@
21 +DIST gconfmm-2.28.3.tar.bz2 471125 SHA256 a5e0092bb73371a3ca76b2ecae794778f3a9409056fee9b28ec1db072d8e6108 SHA512 0fd3a43373dfdf514eca61537c19dafd4ad582d2ec6bb325652766fba90ed723feff6daf93effcdf20f917c573131d58c16f1a826194f653864a701bb8a57097 WHIRLPOOL 361aeef2173cbc0f43efacf8b612f1a933e332e94f1b57d1039a67e08bd3757524b6d68347c136f650523b1a80e97267c60babed6e0caa158c8452be8c39db32
22 DIST gconfmm-2.28.3.tar.xz 376840 SHA256 d7bd2d29c1a87b85329547fb29a0eca52d944e60699982152775002e24c09228 SHA512 8a6f34b175fd2370d596ef859b7075140441f14b97b708afd96bae25874780d321ed81905182ed50abaf6f41f710a325b8053b9aef511cd242df43570646df73 WHIRLPOOL 452f600bb03670a09797ac43c547e7038c16f322f372dd1a4db9ec4a5646ecb4be40a69e2aa91aaa849a3211268d060bcca4b44a438c8c194261253d71d89bc5
23
24 diff --git a/dev-cpp/gconfmm/gconfmm-2.28.3-r1.ebuild b/dev-cpp/gconfmm/gconfmm-2.28.3-r1.ebuild
25 new file mode 100644
26 index 0000000..b490b1a
27 --- /dev/null
28 +++ b/dev-cpp/gconfmm/gconfmm-2.28.3-r1.ebuild
29 @@ -0,0 +1,41 @@
30 +# Copyright 1999-2012 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI="5"
35 +GCONF_DEBUG="no"
36 +GNOME2_LA_PUNT="yes"
37 +GNOME_TARBALL_SUFFIX="bz2"
38 +
39 +inherit flag-o-matic gnome2
40 +
41 +DESCRIPTION="C++ bindings for GConf"
42 +HOMEPAGE="http://www.gtkmm.org"
43 +
44 +LICENSE="LGPL-2.1"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
47 +IUSE="doc"
48 +
49 +RDEPEND="
50 + >=gnome-base/gconf-2.4:2
51 + >=dev-cpp/glibmm-2.12:2[doc?]
52 + >=dev-cpp/gtkmm-2.4:2.4
53 +"
54 +DEPEND="${RDEPEND}
55 + virtual/pkgconfig
56 +"
57 +
58 +src_configure() {
59 + append-cxxflags -std=c++11 #568580
60 + gnome2_src_configure \
61 + $(use_enable doc documentation)
62 +}
63 +
64 +src_install() {
65 + gnome2_src_install
66 +
67 + if use doc ; then
68 + dohtml -r docs/reference/html/*
69 + fi
70 +}