diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-09-13 20:10:19 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-09-13 20:10:19 +0000 |
commit | 3ebb110a4ba38e0697b8bdf179cbcd76b19053bb (patch) | |
tree | b38d5cae4c257902b88ff5003a8572827dfc3a47 /x11-drivers/psb-firmware | |
parent | Properly rebuild autotools, closes bug #255666. (diff) | |
download | gentoo-2-3ebb110a4ba38e0697b8bdf179cbcd76b19053bb.tar.gz gentoo-2-3ebb110a4ba38e0697b8bdf179cbcd76b19053bb.tar.bz2 gentoo-2-3ebb110a4ba38e0697b8bdf179cbcd76b19053bb.zip |
Initial import of the intel poulsbo graphics driver and support libs. Fixes #274184. Thanks to Konrad Campowsky for the ebuilds and all the people who tested them.
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'x11-drivers/psb-firmware')
-rw-r--r-- | x11-drivers/psb-firmware/ChangeLog | 12 | ||||
-rw-r--r-- | x11-drivers/psb-firmware/metadata.xml | 9 | ||||
-rw-r--r-- | x11-drivers/psb-firmware/psb-firmware-0.30_p3.ebuild | 27 |
3 files changed, 48 insertions, 0 deletions
diff --git a/x11-drivers/psb-firmware/ChangeLog b/x11-drivers/psb-firmware/ChangeLog new file mode 100644 index 000000000000..631a638ac5f9 --- /dev/null +++ b/x11-drivers/psb-firmware/ChangeLog @@ -0,0 +1,12 @@ +# ChangeLog for x11-drivers/psb-firmware +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/psb-firmware/ChangeLog,v 1.1 2009/09/13 20:10:19 patrick Exp $ + +*psb-firmware-0.30_p3 (13 Sep 2009) + + 13 Sep 2009; Patrick Lauer <patrick@gentoo.org> + +psb-firmware-0.30_p3.ebuild, +metadata.xml: + Initial import of the intel poulsbo graphics driver and support libs. + Fixes #274184. Thanks to Konrad Campowsky for the ebuilds and all the + people who tested them. + diff --git a/x11-drivers/psb-firmware/metadata.xml b/x11-drivers/psb-firmware/metadata.xml new file mode 100644 index 000000000000..e433c08d449a --- /dev/null +++ b/x11-drivers/psb-firmware/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>no-herd</herd> + <maintainer> + <email>patrick@gentoo.org</email> + <name>Patrick Lauer</name> + </maintainer> +</pkgmetadata> diff --git a/x11-drivers/psb-firmware/psb-firmware-0.30_p3.ebuild b/x11-drivers/psb-firmware/psb-firmware-0.30_p3.ebuild new file mode 100644 index 000000000000..20ff72153391 --- /dev/null +++ b/x11-drivers/psb-firmware/psb-firmware-0.30_p3.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/psb-firmware/psb-firmware-0.30_p3.ebuild,v 1.1 2009/09/13 20:10:19 patrick Exp $ + +inherit rpm + +DESCRIPTION="firmware for the intel gma500 (poulsbo)" +HOMEPAGE="http://www.happyassassin.net/2009/05/13/native-poulsbo-gma-500-graphics-driver-for-fedora-10/" +SRC_URI="http://adamwill.fedorapeople.org/poulsbo/src/psb-firmware-0.30-3.fc11.src.rpm" + +LICENSE="intel-psb" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="" +RDEPEND="" + +src_unpack() { + rpm_src_unpack +} + +src_install() { + cd "${WORKDIR}/${PN}" + insinto /lib/firmware + doins msvdx_fw.bin +} |