blob: 4b93c2c8ee5e51510dfc628c2f0e48d72b1d82ff (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/service-discovery-applet/service-discovery-applet-0.3.ebuild,v 1.1 2005/10/07 19:47:33 swegener Exp $
inherit eutils gnome2
DESCRIPTION="Service Discovery Applet"
HOMEPAGE="http://0pointer.de/~sebest/"
SRC_URI="http://0pointer.de/~sebest/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RDEPEND=">=dev-lang/python-2.4
>=dev-python/gnome-python-extras-2
>=dev-python/pygtk-2.0
gnome-base/gconf
sys-apps/dbus
net-dns/avahi"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.21"
pkg_setup() {
if ! built_with_use net-dns/avahi python || ! built_with_use sys-apps/dbus python
then
die "Sorry, but you need net-dns/avahi and sys-apps/dbus compiled with python support."
fi
}
src_install() {
USE_DESTDIR="1" gnome2_src_install
dodoc AUTHORS README
}
|