blob: 3f67f5f7ecab090f5d0b9d9e7472c2d47285211d (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/glade/glade-2.12.1.ebuild,v 1.2 2006/05/07 20:02:54 corsair Exp $
inherit gnome2
DESCRIPTION="A user interface builder for the GTK+ toolkit and GNOME"
HOMEPAGE="http://glade.gnome.org/"
LICENSE="GPL-2"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~ppc ppc64 ~sparc ~x86"
IUSE="accessibility gnome"
# gnomedb
RDEPEND=">=dev-libs/libxml2-2.4.1
>=x11-libs/gtk+-2.8
gnome? (
>=gnome-base/libgnomeui-2.9
>=gnome-base/libgnomecanvas-2
>=gnome-base/libbonoboui-2
accessibility? ( gnome-extra/libgail-gnome ) )"
# gnomedb? (
# >=gnome-extra/libgnomedb-1.3
# >=gnome-extra/libgda-1.3 )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9
sys-devel/gettext
>=app-text/scrollkeeper-0.1.4
>=dev-util/intltool-0.28"
DOCS="ABOUT-NLS AUTHORS ChangeLog FAQ NEWS README TODO"
USE_DESTDIR="1"
pkg_setup() {
G2CONF="$(use_enable gnome)"
# $(use_enable gnomedb gnome-db)"
}
src_unpack() {
unpack ${A}
gnome2_omf_fix
}
|