blob: f01df789dcf241483d55a9539d8da7f9a76c5712 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/giggle/giggle-0.4.96.ebuild,v 1.2 2010/03/17 16:42:52 sping Exp $
EAPI="1"
inherit autotools gnome2
DESCRIPTION="GTK+ Frontend for GIT"
HOMEPAGE="http://live.gnome.org/giggle"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-interix ~amd64-linux ~x86-linux"
IUSE="eds"
RDEPEND=">=dev-vcs/git-1.4.4.3
>=dev-libs/glib-2.18
>=x11-libs/gtk+-2.10
>=x11-libs/gtksourceview-2.8
eds? ( gnome-extra/evolution-data-server )
>=gnome-base/libglade-2.4"
DEPEND="${RDEPEND}
sys-devel/gettext
>=dev-util/pkgconfig-0.15
>=dev-util/intltool-0.35
>=sys-devel/autoconf-2.64
>=sys-devel/libtool-2"
DOCS="AUTHORS ChangeLog NEWS README"
G2CONF="$(use_enable eds evolution-data-server)"
src_unpack() {
gnome2_src_unpack
cd "${S}"
eautoreconf
}
|