Gentoo Archives: gentoo-commits

From: Nirbheek Chauhan <nirbheek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: net-libs/rest/
Date: Tue, 22 Feb 2011 19:45:13
Message-Id: deb9ad98ac316463985381655bf9e0bbbd9426b2.nirbheek@gentoo
1 commit: deb9ad98ac316463985381655bf9e0bbbd9426b2
2 Author: Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 22 18:50:41 2011 +0000
4 Commit: Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 22 19:32:15 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=deb9ad98
7
8 Add net-libs/rest-0.7.6
9
10 * Upstream bugzilla, homepage unknown
11
12 ---
13 net-libs/rest/rest-0.7.6.ebuild | 47 +++++++++++++++++++++++++++++++++++++++
14 1 files changed, 47 insertions(+), 0 deletions(-)
15
16 diff --git a/net-libs/rest/rest-0.7.6.ebuild b/net-libs/rest/rest-0.7.6.ebuild
17 new file mode 100644
18 index 0000000..b253700
19 --- /dev/null
20 +++ b/net-libs/rest/rest-0.7.6.ebuild
21 @@ -0,0 +1,47 @@
22 +# Copyright 1999-2011 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +# $Header: $
25 +
26 +EAPI="3"
27 +GCONF_DEBUG="yes"
28 +GNOME2_LA_PUNT="yes"
29 +
30 +inherit gnome2 virtualx
31 +
32 +DESCRIPTION="Helper library for RESTful services"
33 +HOMEPAGE="http://git.gnome.org/browse/librest"
34 +
35 +LICENSE="LGPL-2.1"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +IUSE="doc +gnome +introspection test"
39 +
40 +# XXX: coverage testing should not be enabled
41 +RDEPEND=">=dev-libs/glib-2.18:2
42 + dev-libs/libxml2:2
43 +
44 + gnome? ( >=net-libs/libsoup-gnome-2.25.1:2.4 )
45 + introspection? ( >=dev-libs/gobject-introspection-0.6.7 )"
46 +DEPEND="${RDEPEND}
47 + >=dev-util/gtk-doc-am-1.13
48 + >=dev-util/intltool-0.40
49 + dev-util/pkgconfig
50 + doc? ( >=dev-util/gtk-doc-1.13 )
51 + test? ( sys-apps/dbus )"
52 +
53 +pkg_setup() {
54 + G2CONF="${G2CONF}
55 + --disable-static
56 + --disable-gcov
57 + $(use_with gnome)
58 + $(use_enable introspection)"
59 + DOCS="AUTHORS NEWS README"
60 +}
61 +
62 +# FIXME: tests fail, find out where to report it.
63 +# No idea where the upstream bugzilla is.
64 +src_test() {
65 + unset DBUS_SESSION_BUS_ADDRESS
66 + # Tests need dbus
67 + Xemake check || die
68 +}