blob: cb801d016f8ff5897f72e05b26ae32e882ed77e5 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellm-wifi/gkrellm-wifi-0.9.12.ebuild,v 1.6 2004/09/02 18:22:39 pvdabeel Exp $
DESCRIPTION="A GKrellM2 plug-in for monitoring the link quality of your wireless LAN cards"
HOMEPAGE="http://brix.gimp.org/files/gkrellm-wifi/"
SRC_URI="http://brix.gimp.org/files/gkrellm-wifi/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc ~amd64"
IUSE=""
DEPEND=">=app-admin/gkrellm-2.1.12"
src_compile() {
CFLAGS="$CFLAGS -I/usr/src/linux/include"
make || die
}
src_install() {
exeinto /usr/lib/gkrellm2/plugins
doexe gkrellm-wifi.so
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README THEMING TODO
}
|