Version bump

atratsevskiy
Трацевский Александр 14 years ago
parent 4689db9cba
commit b0d844eaaf

@ -0,0 +1,47 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
WANT_AUTOMAKE="1.10"
WANT_AUTOCONF="2.5"
inherit eutils autotools
DESCRIPTION="A reverse-engineered Linux driver for mobile WiMAX devices based on Samsung CMC-730 chip."
HOMEPAGE="http://code.google.com/p/madwimax/"
SRC_URI="http://madwimax.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="virtual/libusb:1
app-text/txt2man
dev-util/pkgconfig"
RDEPEND="virtual/libusb:1"
src_prepare() {
epatch "${FILESDIR}/${P}"-led.patch || die "epatch failed"
eautoreconf
}
src_configure() {
econf --without-man-pages || die "econf failed"
}
src_compile() {
emake || die "emake failed"
cd "${S}"/man
txt2man madwimax.8.txt > madwimax.8
}
src_install() {
dodoc README TODO THANKS AUTHORS ChangeLog
dosbin src/madwimax
doman man/madwimax.8
insinto /etc/udev/rules.d/
newins scripts/udev/z60_madwimax.rules 60-madwimax.rules
exeinto /etc/madwimax
doexe scripts/events/event.sh
}
Loading…
Cancel
Save