blob: b19fe5bd48fc6b00ba4456ad4de8bb35c86c2ddb (
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
32
33
34
35
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=2
inherit linux-info
MY_P="wimax-tools-${PV}"
DESCRIPTION="Tools to use Intel's WiMax cards"
HOMEPAGE="http://www.linuxwimax.org"
SRC_URI="http://kernel.org/pub/linux/kernel/people/inaky/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=sys-kernel/linux-headers-2.6.29"
RDEPEND=""
S="${WORKDIR}/${MY_P}"
src_configure() {
econf
}
src_compile() {
emake -j1 || die "Compile failed"
}
src_install() {
einstall || die "Install failed"
dodoc README || die "Failed to find README"
}
|