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/orinoco-fwutils/orinoco-fwutils-0.1.ebuild

44 lines
931 B

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/orinoco-fwutils/orinoco-fwutils-0.1.ebuild,v 1.4 2012/07/06 19:31:10 steev Exp $
DESCRIPTION="ORiNOCO IEEE 802.11 wireless LAN firmware utilities"
HOMEPAGE="http://www.nongnu.org/orinoco/"
SRC_URI="mirror://sourceforge/orinoco/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RDEPEND="app-arch/unzip
dev-lang/perl
net-misc/wget
sys-apps/coreutils
sys-apps/sed"
src_unpack() {
unpack ${A}
# fix paths
for file in "${S}"/get_*; do
sed -i \
-e "s:parse_:/usr/bin/parse_:g" \
-e "s:\./::g" \
${file}
done
}
src_install() {
dobin get_* parse_*
dodoc README
}
pkg_postinst() {
einfo
einfo "After fetching the firmware using these tools you must place it in"
einfo "/lib/firmware/ for the kernel driver to be able to load it."
einfo
}