blob: e25b8e3fd5be35425f3b6ac4113e65cae4a729f5 (
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
|
# 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.7 2005/11/07 13:05:46 s4t4n 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 ~amd64"
DEPEND="virtual/x11"
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
}
|