blob: 0bfa2b892f1044dd7f3c10ce025cc58885cd8874 (
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
|
# Copyright 1999-2008 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.12 2008/08/11 17:26:00 armin76 Exp $
inherit multilib
DESCRIPTION="A GKrellM2 plug-in for monitoring the link quality of your wireless LAN cards"
HOMEPAGE="http://dev.gentoo.org/~brix/files/gkrellm-wifi/"
SRC_URI="http://dev.gentoo.org/~brix/files/gkrellm-wifi/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc amd64"
IUSE=""
RDEPEND=">=app-admin/gkrellm-2.1.12
>=net-wireless/wireless-tools-22"
DEPEND="${RDEPEND}
>=x11-libs/gtk+-2
dev-util/pkgconfig"
src_compile() {
CFLAGS="$CFLAGS -I/usr/include/"
emake || die
}
src_install() {
exeinto /usr/$(get_libdir)/gkrellm2/plugins
doexe gkrellm-wifi.so
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README THEMING TODO
}
|