| 1 |
# Copyright 1999-2011 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/microcode-data-20100209.ebuild,v 1.2 2010/09/19 19:19:05 vapier Exp $
|
| 4 |
|
| 5 |
NUM="18683"
|
| 6 |
DESCRIPTION="Intel IA32 microcode update data"
|
| 7 |
HOMEPAGE="http://urbanmyth.org/microcode/"
|
| 8 |
SRC_URI="http://downloadmirror.intel.com/${NUM}/eng/microcode-${PV}.tgz"
|
| 9 |
|
| 10 |
LICENSE="intel-ucode"
|
| 11 |
SLOT="0"
|
| 12 |
KEYWORDS="amd64 x86"
|
| 13 |
IUSE=""
|
| 14 |
|
| 15 |
RDEPEND="!<sys-apps/microcode-ctl-1.17-r2" #268586
|
| 16 |
|
| 17 |
S=${WORKDIR}
|
| 18 |
|
| 19 |
src_install() {
|
| 20 |
insinto /lib/firmware
|
| 21 |
newins microcode-${PV}.dat microcode.dat || die
|
| 22 |
}
|
| 23 |
|
| 24 |
pkg_postinst() {
|
| 25 |
einfo "The microcode available for Intel CPUs has been updated. You'll need"
|
| 26 |
einfo "to reload the code into your processor. If you're using the init.d:"
|
| 27 |
einfo "/etc/init.d/microcode_ctl restart"
|
| 28 |
}
|