blob: 6ca6fed081097085bfb3f19c3d33ec7393b19c68 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmwifi/wmwifi-0.3.ebuild,v 1.5 2005/06/30 20:29:14 josejx Exp $
IUSE=""
HOMEPAGE="http://wmwifi.digitalssg.net"
DESCRIPTION="wireless network interface monitor dockapp"
SRC_URI="http://digitalssg.net/debian/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="ppc x86"
DEPEND="virtual/x11"
RDEPEND="${DEPEND}"
src_compile() {
myconf=""
# make sure it uses current kernel headers to insure
# its using current kernels wireless ext.
export CPPFLAGS="-I/usr/src/linux/include"
econf || die
emake || die
}
src_install() {
emake DESTDIR=${D} install || die
}
|