blob: 5ae3c9336135bdfddf4bbf0073ab7a9221000385 (
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
35
36
37
38
39
40
41
42
43
44
45
46
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit autotools gnome2 git
EGIT_REPO_URI="git://git.dronelabs.com/ethos"
DESCRIPTION="Generic Plugin Engine for GLib"
HOMEPAGE="http://git.dronelabs.com/ethos/about/"
SRC_URI=""
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="introspection javascript python"
RDEPEND=">=dev-libs/glib-2.16.0
>=x11-libs/gtk+-2.10.0
introspection? ( >=dev-libs/gobject-introspection-0.6.3 )
javascript? ( >=dev-libs/gjs-0.2 )
python? ( >=dev-python/pygobject-2.15.3
>=dev-python/pygtk-2.12 )"
DEPEND="${RDEPEND}
sys-devel/gettext
>=dev-util/pkgconfig-0.9"
DOCS="AUTHORS NEWS README TODO"
S=${WORKDIR}/trunk
pkg_setup() {
G2CONF="${G2CONF}
--disable-vala
$(use_enable python)
$(use_enable javascript js)
$(use_enable introspection)"
}
src_unpack() {
git_src_unpack
cd ${S}
./autogen.sh
}
|