blob: d1d480d0a41fabea4dd4de2a193f2a4d85ebe42a (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/linux-firmware/linux-firmware-99999999.ebuild,v 1.3 2010/05/07 18:11:40 robbat2 Exp $
inherit git
DESCRIPTION="Linux firmware files"
HOMEPAGE="http://www.kernel.org/pub/linux/kernel/people/dwmw2/firmware"
SRC_URI=""
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/dwmw2/${PN}.git"
LICENSE="GPL-2 freedist"
SLOT="0"
KEYWORDS=""
DEPEND=""
RDEPEND="!net-wireless/iwl3945-ucode
!net-wireless/ralink-firmware
!net-wireless/iwl4965-ucode
!net-wireless/iwl5000-ucode"
#add anything else that collides to this
src_install() {
insinto /lib/firmware/
doins -r * || die "Install failed!"
}
|