Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/varconf/
Date: Tue, 15 Dec 2015 20:23:09
Message-Id: 1450210977.cd66d74afe4858a87e02a9169b3f4d77043d19a0.pacho@gentoo
1 commit: cd66d74afe4858a87e02a9169b3f4d77043d19a0
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 15 20:21:20 2015 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 15 20:22:57 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd66d74a
7
8 media-libs/varconf: Fix building with latest glibmm/libsigc++ (#568136), bump eapi
9
10 Package-Manager: portage-2.2.26
11
12 media-libs/varconf/varconf-0.6.7-r1.ebuild | 23 +++++++++++++++++++++++
13 1 file changed, 23 insertions(+)
14
15 diff --git a/media-libs/varconf/varconf-0.6.7-r1.ebuild b/media-libs/varconf/varconf-0.6.7-r1.ebuild
16 new file mode 100644
17 index 0000000..ae5f5e3
18 --- /dev/null
19 +++ b/media-libs/varconf/varconf-0.6.7-r1.ebuild
20 @@ -0,0 +1,23 @@
21 +# Copyright 1999-2014 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=5
26 +inherit flag-o-matic
27 +
28 +DESCRIPTION="A configuration system designed for the STAGE server"
29 +SRC_URI="mirror://sourceforge/worldforge/${P}.tar.bz2"
30 +HOMEPAGE="http://www.worldforge.org/dev/eng/libraries/varconf"
31 +
32 +SLOT="0"
33 +LICENSE="LGPL-2.1"
34 +KEYWORDS="~amd64 ~ppc ~x86"
35 +IUSE=""
36 +
37 +RDEPEND=">=dev-libs/libsigc++-2.0"
38 +DEPEND="$RDEPEND
39 + virtual/pkgconfig"
40 +
41 +src_prepare() {
42 + append-cxxflags -std=c++11 #566328
43 +}