blob: cabe04d9c6eb0e111c2579939ac0b964456cad3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit gnome2
DESCRIPTION="Library to access RESTful web-services"
HOMEPAGE="http://moblin.org/projects/librest"
SRC_URI="http://moblin.org/sites/all/files/rest-0.6.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gnome"
RDEPEND=">=dev-libs/glib-2.18.0
>=net-libs/libsoup-2.4
gnome? ( >=net-libs/libsoup-gnome-2.25.1 )
>=dev-libs/libxml2-2"
DEPEND="${RDEPEND}
sys-devel/gettext
>=dev-util/pkgconfig-0.9"
DOCS="AUTHORS NEWS README"
S="${WORKDIR}/rest-0.6"
pkg_setup() {
G2CONF="${G2CONF}
$(use_with gnome)"
}
|