blob: a6293979fed6b6ff3666606c742ab6effdf57459 (
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-2003 Gentoo Technologies, Inc.
# 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.1 2004/02/01 02:10:37 rphillips Exp $
IUSE=""
S="${WORKDIR}/${P}"
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="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
}
|