summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChí-Thanh Christopher Nguyễn <chithanh@gentoo.org>2010-02-15 21:38:01 +0000
committerChí-Thanh Christopher Nguyễn <chithanh@gentoo.org>2010-02-15 21:38:01 +0000
commit4975bcc304f16275809096230b873eb07421601f (patch)
treedefc1b89122b4482680a5fe97892e3079d9e1064 /x11-drivers/xf86-video-nouveau
parentDisable cluster from the official test runs. Will be handled by the upcoming ... (diff)
downloadgentoo-2-4975bcc304f16275809096230b873eb07421601f.tar.gz
gentoo-2-4975bcc304f16275809096230b873eb07421601f.tar.bz2
gentoo-2-4975bcc304f16275809096230b873eb07421601f.zip
initial import of x11-drivers/nouveau-firmware for bug #253705
(Portage version: 2.2_rc62/cvs/Linux x86_64)
Diffstat (limited to 'x11-drivers/xf86-video-nouveau')
-rw-r--r--x11-drivers/xf86-video-nouveau/ChangeLog10
-rw-r--r--x11-drivers/xf86-video-nouveau/metadata.xml9
-rw-r--r--x11-drivers/xf86-video-nouveau/xf86-video-nouveau-0.0.15_pre20100213.ebuild41
3 files changed, 60 insertions, 0 deletions
diff --git a/x11-drivers/xf86-video-nouveau/ChangeLog b/x11-drivers/xf86-video-nouveau/ChangeLog
new file mode 100644
index 000000000000..9761ea49ac5e
--- /dev/null
+++ b/x11-drivers/xf86-video-nouveau/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for x11-drivers/xf86-video-nouveau
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-nouveau/ChangeLog,v 1.1 2010/02/15 21:38:01 chithanh Exp $
+
+*xf86-video-nouveau-0.0.15_pre20100213 (15 Feb 2010)
+
+ 15 Feb 2010; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
+ +xf86-video-nouveau-0.0.15_pre20100213.ebuild, +metadata.xml:
+ Initial import for bug #253705
+
diff --git a/x11-drivers/xf86-video-nouveau/metadata.xml b/x11-drivers/xf86-video-nouveau/metadata.xml
new file mode 100644
index 000000000000..40a4ce953dab
--- /dev/null
+++ b/x11-drivers/xf86-video-nouveau/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer>
+ <email>chithanh@gentoo.org</email>
+ <name>Chí-Thanh Christopher Nguyễn</name>
+</maintainer>
+<herd>x11</herd>
+</pkgmetadata>
diff --git a/x11-drivers/xf86-video-nouveau/xf86-video-nouveau-0.0.15_pre20100213.ebuild b/x11-drivers/xf86-video-nouveau/xf86-video-nouveau-0.0.15_pre20100213.ebuild
new file mode 100644
index 000000000000..b65cb2fe1601
--- /dev/null
+++ b/x11-drivers/xf86-video-nouveau/xf86-video-nouveau-0.0.15_pre20100213.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-nouveau/xf86-video-nouveau-0.0.15_pre20100213.ebuild,v 1.1 2010/02/15 21:38:01 chithanh Exp $
+
+EAPI=2
+SNAPSHOT="yes"
+inherit linux-info x-modular
+
+DESCRIPTION="Nouveau video driver"
+HOMEPAGE="http://nouveau.freedesktop.org/"
+SRC_URI="mirror://gentoo/${P}.tar.bz2"
+
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=x11-base/xorg-server-1.7[-minimal]
+ >=x11-libs/libdrm-2.4.18_pre"
+
+DEPEND="${RDEPEND}
+ x11-proto/fontsproto
+ x11-proto/randrproto
+ x11-proto/renderproto
+ x11-proto/videoproto
+ x11-proto/xextproto
+ x11-proto/xf86driproto
+ x11-proto/xproto"
+
+pkg_postinst() {
+ x-modular_pkg_postinst
+ if ! has_version x11-base/nouveau-drm; then
+ if ! linux_config_exists || ! linux_chkconfig_present DRM_NOUVEAU; then
+ ewarn "Nouveau DRM not detected. If you want any kind of"
+ ewarn "acceleration with nouveau, emerge x11-base/nouveau-drm or"
+ ewarn "enable CONFIG_DRM_NOUVEAU in the kernel."
+ fi
+ fi
+ if ! has_version x11-drivers/nouveau-firmware; then
+ ewarn "Nouveau firmware not detected, for acceleration on NV50 (G80)"
+ ewarn "and newer chipsets, emerge x11-drivers/nouveau-firmware."
+ fi
+}