blob: 6d83e261373994089c66c81c20454e3d969fb69b (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/deskbar-applet/deskbar-applet-2.14.0.1.ebuild,v 1.5 2006/03/23 19:15:25 gustavoz Exp $
inherit gnome2 eutils
DESCRIPTION="An Omnipresent Versatile Search Interface"
HOMEPAGE="http://raphael.slinckx.net/deskbar/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~sparc ~x86"
IUSE="eds"
RDEPEND=">=dev-lang/python-2.3
>=x11-libs/gtk+-2.6
>=dev-python/pygtk-2.6
>=dev-python/gnome-python-2.10
>=gnome-base/gnome-desktop-2.10
>=dev-python/gnome-python-desktop-2.14.0
>=dev-python/gnome-python-extras-2.12
>=gnome-base/gconf-2
eds? ( >=gnome-extra/evolution-data-server-1.2 )
sys-devel/gettext"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.33
dev-util/pkgconfig"
pkg_setup() {
G2CONF="${G2CONF} $(use_enable eds evolution) --exec-prefix=/usr"
}
src_unpack() {
unpack ${A}
cd ${S}
# Fix installing libs into pythondir
epatch ${FILESDIR}/${PN}-2.13.91-multilib.patch
automake || die "automake failed"
autoconf || die "autoconf failed"
gnome2_omf_fix
}
|