mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-22 23:01:02 +02:00
fixed? intel-wimax to build on newer kernels with real headers.
sometimes I hate intel
This commit is contained in:
parent
6d071bb4f1
commit
b8040d362c
2 changed files with 38 additions and 0 deletions
|
|
@ -1,3 +1,4 @@
|
|||
AUX wimax 433 RMD160 7c9291b4189588547c854cc36477d7c413ca6ad4 SHA1 c5d9a10d018a8144ccf441409c9db54117489dc9 SHA256 1dfa24bb9d83ad711a9331b917fc7a37ac4d439d13bb82b90d0b8dff0ebf343c
|
||||
DIST WiMAX-Network-Service-1.4.0.tar.bz2 1360859 RMD160 518678f32275e1c890c7a1f4266732a2ec9dedda SHA1 4b6e174ba7b604474ab0ced72d78c9ebfa66749d SHA256 a421b2f6e7912280cbddc6818892b4bffa4da0ff5347a9d26ddbcb81e99963ec
|
||||
EBUILD intel-wimax-network-service-1.4.0-r1.ebuild 1101 RMD160 8d588a0c4005c9fca6017ea8bc1d98d7bec2b226 SHA1 f946c9bb15cc044e2dbc11bedf45e5850948a7d5 SHA256 3568032f277f7025215d29c4f80634106af2e3c18000b0dd335e37dad0e74681
|
||||
EBUILD intel-wimax-network-service-1.4.0.ebuild 952 RMD160 01c8a7b9ca6cb8ca36263707312cc80b97fd22fd SHA1 6247a11815facc5fbd6a8ff1ea06079316ed8da6 SHA256 ba9dec9d63b0d6123dd989e71b3535845b59b233da0632b1d2bef7939a322e3e
|
||||
|
|
|
|||
|
|
@ -0,0 +1,37 @@
|
|||
# Copyright 1999-2009 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=2
|
||||
|
||||
inherit linux-info multilib
|
||||
|
||||
MY_P="WiMAX-Network-Service-${PV}"
|
||||
DESCRIPTION="Intel WiMAX daemon used to interface to the hardware"
|
||||
HOMEPAGE="http://www.linuxwimax.org/"
|
||||
SRC_URI="http://www.linuxwimax.org/Download?action=AttachFile&do=get&target=${MY_P}.tar.bz2 -> ${MY_P}.tar.bz2"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">=dev-libs/libnl-1.1
|
||||
>=sys-kernel/linux-headers-2.6.30-r1"
|
||||
#is this the first headers version with /usr/include/linux/wimax.h?
|
||||
#is it close enough for me to not care anymore?
|
||||
RDEPEND="${DEPEND}
|
||||
net-wireless/intel-wimax-tools
|
||||
net-wireless/intel-wimax-binary-supplicant"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
src_configure() {
|
||||
econf --prefix=/usr --localstatedir=/var --with-libwimaxll=/usr/$(get_libdir) --with-i2400m=/usr || die "econf failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install || die "Install failed"
|
||||
doinitd "${FILESDIR}"/wimax || die "failed to place the init daemon"
|
||||
dodoc README || die "Failed to find README"
|
||||
}
|
||||
Loading…
Reference in a new issue