blob: b5682bdea5705d77ac7f3a1dc278c5834f1e8f7c (
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-2009 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.2 2009/12/12 20:36:27 flameeyes 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"
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!"
}
|