blob: f4b65cd2aa4fc16bb03e65a9fb2a954a24fcae09 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/glade/glade-2.0.1.ebuild,v 1.8 2004/08/06 15:29:59 gustavoz Exp $
inherit gnome.org eutils
DESCRIPTION="a GUI Builder. This release is for GTK+ 2 and GNOME 2."
HOMEPAGE="http://glade.gnome.org/"
LICENSE="GPL-2"
SLOT="2"
KEYWORDS="x86 ppc sparc alpha ia64 amd64"
IUSE="gnome gnomedb"
RDEPEND="=x11-libs/gtk+-2*
>=dev-libs/libxml2-2.4.1
>=app-text/scrollkeeper-0.2
gnome? ( >=gnome-base/libgnomeui-2.0.0
>=gnome-base/libgnomecanvas-2.0.0
>=gnome-base/libbonoboui-2.0.0 )
gnomedb? ( >=gnome-extra/libgnomedb-0.11 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
sys-devel/gettext
>=dev-util/intltool-0.11"
src_unpack() {
unpack ${A}
# this patch fixes potential potential issues
# with scrollkeeper. speeds up unnecessary scroll generation
EPATCH_OPTS="-d ${S}" epatch ${FILESDIR}/${PN}-2.0.0-scrollkeeper.patch
}
src_compile() {
# note: ./configure --help and configure.in lists
# --disable-gnomedb, whereas the code looks for --disable-gnome-db
econf \
`use_enable gnome` \
`use_enable gnomedb gnome-db` \
|| die
emake || die "Compilation failed"
}
src_install() {
dodir /var/lib/scrollkeeper
einstall "scrollkeeper_localstate_dir=${D}/var/lib/scrollkeeper"
# regenerate these at pkg_postinst
rm -rf ${D}/var/lib/scrollkeeper
dodoc AUTHORS COPYING* FAQ NEWS README* TODO
}
pkg_postinst() {
echo ">>> Updating Scrollkeeper"
scrollkeeper-update -q -p ${ROOT}/var/lib/scrollkeeper
}
|