Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/eiciel/
Date: Fri, 01 Jan 2016 21:22:56
Message-Id: 1451683294.6d4013959da6485ead5cfdb8913234b9545d9a50.pacho@gentoo
1 commit: 6d4013959da6485ead5cfdb8913234b9545d9a50
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 1 21:21:34 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 1 21:21:34 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d401395
7
8 gnome-extra/eiciel: Fix building with latest glibmm/libsigc++
9
10 Package-Manager: portage-2.2.26
11
12 gnome-extra/eiciel/eiciel-0.9.11-r1.ebuild | 36 ++++++++++++++++++++++++++++++
13 1 file changed, 36 insertions(+)
14
15 diff --git a/gnome-extra/eiciel/eiciel-0.9.11-r1.ebuild b/gnome-extra/eiciel/eiciel-0.9.11-r1.ebuild
16 new file mode 100644
17 index 0000000..5605832
18 --- /dev/null
19 +++ b/gnome-extra/eiciel/eiciel-0.9.11-r1.ebuild
20 @@ -0,0 +1,36 @@
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 +GCONF_DEBUG="no"
27 +GNOME2_LA_PUNT="yes"
28 +
29 +inherit flag-o-matic gnome2
30 +
31 +DESCRIPTION="ACL editor for GNOME, with Nautilus extension"
32 +HOMEPAGE="http://rofi.roger-ferrer.org/eiciel/"
33 +SRC_URI="http://rofi.roger-ferrer.org/eiciel/download/${P}.tar.bz2"
34 +
35 +LICENSE="GPL-2"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +IUSE="xattr"
39 +
40 +RDEPEND="
41 + >=sys-apps/acl-2.2.32
42 + >=dev-cpp/gtkmm-3:3.0
43 + >=gnome-base/nautilus-3
44 +"
45 +DEPEND="${RDEPEND}
46 + virtual/pkgconfig
47 + >=sys-devel/gettext-0.18.1
48 +"
49 +
50 +src_configure() {
51 + append-cxxflags -std=c++11
52 + gnome2_src_configure \
53 + --disable-static \
54 + --with-gnome-version=3 \
55 + $(use_enable xattr user-attributes)
56 +}