You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-wireless/wimax/wimax-1.5.2-r1.ebuild

43 lines
1.4 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/wimax/wimax-1.5.2-r1.ebuild,v 1.6 2012/06/14 05:24:15 xmw Exp $
EAPI="4"
inherit base linux-info multilib
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=${P}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="static-libs"
DEPEND="dev-libs/libnl:1.1
>=sys-kernel/linux-headers-2.6.34
net-wireless/wpa_supplicant[wimax]"
RDEPEND="${DEPEND}
net-wireless/wimax-tools"
src_configure() {
econf \
--with-libwimaxll=/usr/$(get_libdir) \
--localstatedir=/var \
--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"
sed -e "s:/usr/lib/libeap.so.0:/usr/$(get_libdir)/libeap.so.0:g" \
-e "s:<GetDeviceTraces>3</GetDeviceTraces>:<GetDeviceTraces>0</GetDeviceTraces>:g" \
-e "s:<OutputTarget>console</OutputTarget>:<OutputTarget>daemon</OutputTarget>:g" \
-e "s:<IPRenew>1</IPRenew>:<IPRenew>0</IPRenew>:g" \
-i "${D}/etc/wimax/config.xml" || die "Fixing config failed"
# Drop udev rusles for now
rm -rf "${D}/etc/udev"
use static-libs || find "${D}" -name '*.*a' -exec rm {} +
}