blob: e3c51bcf9efb1cd9a5f7177dbfde59170d50e662 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/zd1201-firmware/zd1201-firmware-0.14.ebuild,v 1.3 2006/09/17 18:30:37 jhuebel Exp $
MY_P=zd1201-${PV}-fw
S=${WORKDIR}/${MY_P}
DESCRIPTION="Firmware for ZyDAS 1201 based USB 802.11b Network WiFi devices"
HOMEPAGE="http://linux-lc100020.sourceforge.net/"
SRC_URI="mirror://sourceforge/linux-lc100020/${MY_P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 x86"
IUSE=""
DEPEND=">=sys-apps/hotplug-20040923"
src_compile() {
echo "Binary, no compile"
}
src_install() {
insinto /lib/firmware
doins zd1201.fw zd1201-ap.fw
dodoc README
}
|