blob: 48603c1e4ec01c04403aea4ebf085e5e1b59cc74 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit gnome2 clutter
DESCRIPTION="Clutter-imcontext - a base class for input method contexts"
KEYWORDS="~x86 ~amd64"
IUSE="doc"
SLOT="0"
SRC_URI="http://git.moblin.org/cgit.cgi/${PN}/snapshot/${P}.tar.bz2"
RDEPEND=">=dev-libs/glib-2
media-libs/clutter:1.0"
DEPEND="${RDEPEND}
doc? ( >=dev-util/gtk-doc-1.11 )"
DOCS="AUTHORS ChangeLog"
src_unpack() {
gnome2_src_unpack
cd ${S}
./autogen.sh
}
|