Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/gobby/
Date: Wed, 23 Dec 2015 10:59:53
Message-Id: 1450868318.fb59d3dd0f48704b8386be2af79a6b6074797a78.pacho@gentoo
1 commit: fb59d3dd0f48704b8386be2af79a6b6074797a78
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 23 10:22:55 2015 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 23 10:58:38 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb59d3dd
7
8 app-editors/gobby: Fix building with latest glibmm/libsigc++, use USE zeroconf instead of avahi (#477620)
9
10 Package-Manager: portage-2.2.26
11
12 app-editors/gobby/gobby-0.4.13-r1.ebuild | 42 ++++++++++++++++++++++++++++++++
13 1 file changed, 42 insertions(+)
14
15 diff --git a/app-editors/gobby/gobby-0.4.13-r1.ebuild b/app-editors/gobby/gobby-0.4.13-r1.ebuild
16 new file mode 100644
17 index 0000000..f6a97b0
18 --- /dev/null
19 +++ b/app-editors/gobby/gobby-0.4.13-r1.ebuild
20 @@ -0,0 +1,42 @@
21 +# Copyright 1999-2015 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="GTK-based collaborative editor"
29 +HOMEPAGE="http://gobby.0x539.de/"
30 +SRC_URI="http://releases.0x539.de/${PN}/${P}.tar.gz"
31 +LICENSE="GPL-2"
32 +SLOT="0"
33 +KEYWORDS="~amd64 ~ppc ~x86"
34 +IUSE="gnome zeroconf"
35 +
36 +RDEPEND="
37 + dev-cpp/glibmm:2
38 + dev-cpp/gtkmm:2.4
39 + dev-libs/libsigc++:2
40 + >=net-libs/obby-0.4.6[zeroconf?]
41 + dev-cpp/libxmlpp:2.6
42 + x11-libs/gtksourceview:2.0
43 + gnome? ( gnome-base/gnome-vfs )
44 +"
45 +DEPEND="${RDEPEND}
46 + virtual/pkgconfig
47 +"
48 +
49 +# There's only one test and it needs X
50 +RESTRICT="test"
51 +
52 +src_configure() {
53 + append-cxxflags -std=c++11
54 + econf \
55 + --with-gtksourceview2 \
56 + $(use_with gnome)
57 +}
58 +
59 +src_install() {
60 + default
61 + domenu contrib/gobby.desktop
62 +}