blob: 3ea9283c200d8fad3fd1e307a3be76792d1994c4 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/rtl8192se-firmware/rtl8192se-firmware-2.6.0019.1207.2010.ebuild,v 1.1 2011/02/09 22:19:27 chithanh Exp $
EAPI=3
MY_P="${P/-firmware-/_linux_}"
DESCRIPTION="RTL8191SE/8192SE wireless chipset firmware"
HOMEPAGE="http://www.realtek.com.tw/"
SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
S=${WORKDIR}/${MY_P}/firmware/RTL8192SE
src_install() {
insinto /lib/firmware/RTL8192SE
doins *.bin || die
}
|