blob: a96909d409876d6b00f212a270adaa6f3a001438 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/wifi-radar/wifi-radar-1.9.8.ebuild,v 1.4 2007/04/15 21:48:25 welp Exp $
inherit eutils
DESCRIPTION="WiFi Radar is a Python/PyGTK2 utility for managing WiFi profiles."
HOMEPAGE="http://wifi-radar.systemimager.org/"
SRC_URI="http://wifi-radar.systemimager.org/pub/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="svg"
RDEPEND=">=dev-python/pygtk-2.6.1
>=net-wireless/wireless-tools-27-r1"
src_install ()
{
dosbin wifi-radar
dosed "s:/etc/conf.d:/etc:g" /usr/sbin/wifi-radar
dobin wifi-radar.sh
dodir /etc/wifi-radar
insinto /etc/wifi-radar; doins wifi-radar.conf
if use svg; then
doicon pixmaps/wifi-radar.svg
make_desktop_entry wifi-radar.sh "WiFi Radar" wifi-radar.svg Network
else
doicon pixmaps/wifi-radar.png
make_desktop_entry wifi-radar.sh "WiFi Radar" wifi-radar.png Network
fi
doman wifi-radar.1 wifi-radar.conf.5
dodoc AUTHORS ChangeLog README TODO
}
pkg_postinst()
{
einfo "Remember to edit configuration file /etc/wifi-radar.conf to suit your needs..."
echo
einfo "To use wifi-radar with a normal user (with sudo) add:"
einfo "%users ALL = /usr/sbin/wifi-radar"
einfo "in your /etc/sudoers. Also, find the line saying:"
einfo "Defaults env_reset"
einfo "and modify it as follows:"
einfo "Defaults env_keep=DISPLAY"
echo
einfo "Then launch wifi-radar.sh"
echo
}
|