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-libs/guiloader-c++/
Date: Sat, 19 Dec 2015 16:18:26
Message-Id: 1450541801.4cab941588fcde4afef864cc4985f4af2e44dd6a.pacho@gentoo
1 commit: 4cab941588fcde4afef864cc4985f4af2e44dd6a
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 19 15:47:51 2015 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 19 16:16:41 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cab9415
7
8 dev-libs/guiloader-c++: Fix building with latest glibmm/libsigc++
9
10 Package-Manager: portage-2.2.26
11
12 .../guiloader-c++/guiloader-c++-2.21.0-r1.ebuild | 40 ++++++++++++++++++++++
13 1 file changed, 40 insertions(+)
14
15 diff --git a/dev-libs/guiloader-c++/guiloader-c++-2.21.0-r1.ebuild b/dev-libs/guiloader-c++/guiloader-c++-2.21.0-r1.ebuild
16 new file mode 100644
17 index 0000000..73c2e44
18 --- /dev/null
19 +++ b/dev-libs/guiloader-c++/guiloader-c++-2.21.0-r1.ebuild
20 @@ -0,0 +1,40 @@
21 +# Copyright 1999-2012 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI="5"
26 +inherit eutils flag-o-matic
27 +
28 +DESCRIPTION="C++ binding to GuiLoader library"
29 +HOMEPAGE="http://www.crowdesigner.org"
30 +SRC_URI="https://nothing-personal.googlecode.com/files/${P}.tar.bz2"
31 +
32 +LICENSE="MIT"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~x86"
35 +IUSE="nls"
36 +
37 +LANGS="ru"
38 +
39 +RDEPEND=">=dev-libs/guiloader-2.21
40 + >=dev-cpp/gtkmm-2.22:2.4
41 + >=dev-cpp/glibmm-2.24:2"
42 +DEPEND="${RDEPEND}
43 + dev-libs/boost
44 + virtual/pkgconfig
45 + nls? ( >=sys-devel/gettext-0.18 )"
46 +
47 +for x in ${LANGS}; do
48 + IUSE="${IUSE} linguas_${x}"
49 +done
50 +
51 +src_configure() {
52 + append-cxxflags -std=c++11
53 + econf $(use_enable nls)
54 +}
55 +
56 +src_install() {
57 + default
58 + prune_libtool_files
59 + dodoc doc/{authors.txt,news.en.txt,readme.en.txt}
60 +}