blob: 9b858b2aefd4a74097d71084694584757750962c (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-kernel/linux-firmware/linux-firmware-20110601.ebuild,v 1.1 2011/06/02 00:12:53 chithanh Exp $
EAPI=3
inherit savedconfig
if [[ ${PV} == 99999999* ]]; then
inherit git-2
SRC_URI=""
EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/dwmw2/${PN}.git"
else
SRC_URI="mirror://kernel/linux/kernel/people/dwmw2/firmware/${P}.tar.bz2"
fi
DESCRIPTION="Linux firmware files"
HOMEPAGE="http://www.kernel.org/pub/linux/kernel/people/dwmw2/firmware"
LICENSE="GPL-1 GPL-2 GPL-3 BSD freedist"
KEYWORDS="~amd64 ~arm ~x86"
SLOT="0"
IUSE="savedconfig"
DEPEND=""
RDEPEND="!savedconfig? (
!media-sound/alsa-firmware[alsa_cards_korg1212]
!media-sound/alsa-firmware[alsa_cards_maestro3]
!media-sound/alsa-firmware[alsa_cards_sb16]
!media-sound/alsa-firmware[alsa_cards_ymfpci]
!media-tv/cx18-firmware
!media-tv/ivtv-firmware
!media-tv/linuxtv-dvb-firmware[dvb_cards_cx231xx]
!media-tv/linuxtv-dvb-firmware[dvb_cards_cx23885]
!media-tv/linuxtv-dvb-firmware[dvb_cards_usb-dib0700]
!net-wireless/i2400m-fw
!net-wireless/iwl1000-ucode
!net-wireless/iwl3945-ucode
!net-wireless/iwl4965-ucode
!net-wireless/iwl5000-ucode
!net-wireless/iwl5150-ucode
!net-wireless/iwl6000-ucode
!net-wireless/iwl6050-ucode
!net-wireless/libertas-firmware
!net-wireless/rt61-firmware
!net-wireless/rt73-firmware
!sys-block/qla-fc-firmware
!x11-drivers/radeon-ucode
)"
#add anything else that collides to this
src_prepare() {
echo "# Remove files that shall not be installed from this list." > ${PN}.conf
find * \( \! -type d -and \! -name ${PN}.conf \) >> ${PN}.conf
if use savedconfig; then
restore_config ${PN}.conf
ebegin "Removing all files not listed in config"
find * \( \! -type d -and \! -name ${PN}.conf \) \
| sort ${PN}.conf ${PN}.conf - \
| uniq -u | xargs -r rm
eend $? || die
fi
}
src_install() {
save_config ${PN}.conf
rm ${PN}.conf || die
insinto /lib/firmware/
doins -r * || die "Install failed!"
}
pkg_preinst() {
if use savedconfig; then
ewarn "USE=savedconfig is active. You must handle file collisions manually."
fi
}
pkg_postinst() {
elog "If you are only interested in particular firmware files, edit the saved"
elog "configfile and remove those that you do not want."
}
|