public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-base/nouveau-drm: ChangeLog nouveau-drm-20100226.ebuild
@ 2010-02-27  8:12 Chi-Thanh Christopher Nguyen (chithanh)
  0 siblings, 0 replies; 2+ messages in thread
From: Chi-Thanh Christopher Nguyen (chithanh) @ 2010-02-27  8:12 UTC (permalink / raw
  To: gentoo-commits

chithanh    10/02/27 08:12:28

  Modified:             ChangeLog
  Added:                nouveau-drm-20100226.ebuild
  Log:
  nouveau-drm: new snapshot
  (Portage version: 2.2_rc63/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  x11-base/nouveau-drm/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-base/nouveau-drm/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-base/nouveau-drm/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-base/nouveau-drm/ChangeLog?r1=1.5&r2=1.6

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-base/nouveau-drm/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog	22 Feb 2010 22:49:57 -0000	1.5
+++ ChangeLog	27 Feb 2010 08:12:28 -0000	1.6
@@ -1,6 +1,12 @@
 # ChangeLog for x11-base/nouveau-drm
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-base/nouveau-drm/ChangeLog,v 1.5 2010/02/22 22:49:57 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-base/nouveau-drm/ChangeLog,v 1.6 2010/02/27 08:12:28 chithanh Exp $
+
+*nouveau-drm-20100226 (27 Feb 2010)
+
+  27 Feb 2010; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
+  +nouveau-drm-20100226.ebuild:
+  new snapshot, no longer needs firmware for NV50
 
 *nouveau-drm-20100222 (22 Feb 2010)
 



1.1                  x11-base/nouveau-drm/nouveau-drm-20100226.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-base/nouveau-drm/nouveau-drm-20100226.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-base/nouveau-drm/nouveau-drm-20100226.ebuild?rev=1.1&content-type=text/plain

Index: nouveau-drm-20100226.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-base/nouveau-drm/nouveau-drm-20100226.ebuild,v 1.1 2010/02/27 08:12:28 chithanh Exp $

EAPI=2

inherit linux-info linux-mod

DESCRIPTION="Nouveau DRM Kernel Modules for X11"
HOMEPAGE="http://nouveau.freedesktop.org/"
SRC_URI="mirror://gentoo/${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"

IUSE=""

DEPEND="virtual/linux-sources"
RDEPEND="${DEPEND}"

S=${WORKDIR}/master

CONFIG_CHECK="~BACKLIGHT_CLASS_DEVICE ~DEBUG_FS !DRM ~FB_CFB_FILLRECT ~FB_CFB_COPYAREA ~FB_CFB_IMAGEBLIT ~FRAMEBUFFER_CONSOLE ~!FB_VESA ~!FB_UVESA ~I2C_ALGOBIT ~VGA_ARB"

pkg_setup() {
	linux-mod_pkg_setup
	if kernel_is lt 2 6 32; then
		eerror "You need kernel 2.6.32 for nouveau-drm"
		die "Incompatible kernel version"
	fi
	if kernel_is ge 2 6 33; then
		elog "For newer kernels newer than 2.6.32 there is integrated nouveau DRM."
		elog "Use that if you experience build issues."
	fi
}

src_compile() {
	set_arch_to_kernel
	emake \
		LINUXDIR="${KERNEL_DIR}" \
		NOUVEAUROOTDIR="${PWD}" \
		-f "${FILESDIR}"/${PN}-20100212-Makefile \
		|| die "Compiling kernel modules failed"
}

src_install() {
	insinto /lib/modules/${KV_FULL}/${PN}
	doins drivers/gpu/drm/{*/,}*.ko || die "doins failed"
}






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-base/nouveau-drm: ChangeLog nouveau-drm-20100226.ebuild
@ 2010-03-16  4:21 Chi-Thanh Christopher Nguyen (chithanh)
  0 siblings, 0 replies; 2+ messages in thread
From: Chi-Thanh Christopher Nguyen (chithanh) @ 2010-03-16  4:21 UTC (permalink / raw
  To: gentoo-commits

chithanh    10/03/16 04:21:48

  Modified:             ChangeLog nouveau-drm-20100226.ebuild
  Log:
  x11-base/nouveau-drm: remove vesafb warning
  (Portage version: 2.2_rc65/cvs/Linux x86_64)

Revision  Changes    Path
1.7                  x11-base/nouveau-drm/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-base/nouveau-drm/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-base/nouveau-drm/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-base/nouveau-drm/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-base/nouveau-drm/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	27 Feb 2010 08:12:28 -0000	1.6
+++ ChangeLog	16 Mar 2010 04:21:47 -0000	1.7
@@ -1,6 +1,10 @@
 # ChangeLog for x11-base/nouveau-drm
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-base/nouveau-drm/ChangeLog,v 1.6 2010/02/27 08:12:28 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-base/nouveau-drm/ChangeLog,v 1.7 2010/03/16 04:21:47 chithanh Exp $
+
+  16 Mar 2010; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
+  nouveau-drm-20100226.ebuild:
+  remove warning about vesafb, handover is implemented now
 
 *nouveau-drm-20100226 (27 Feb 2010)
 



1.2                  x11-base/nouveau-drm/nouveau-drm-20100226.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-base/nouveau-drm/nouveau-drm-20100226.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-base/nouveau-drm/nouveau-drm-20100226.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-base/nouveau-drm/nouveau-drm-20100226.ebuild?r1=1.1&r2=1.2

Index: nouveau-drm-20100226.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-base/nouveau-drm/nouveau-drm-20100226.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nouveau-drm-20100226.ebuild	27 Feb 2010 08:12:28 -0000	1.1
+++ nouveau-drm-20100226.ebuild	16 Mar 2010 04:21:47 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-base/nouveau-drm/nouveau-drm-20100226.ebuild,v 1.1 2010/02/27 08:12:28 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-base/nouveau-drm/nouveau-drm-20100226.ebuild,v 1.2 2010/03/16 04:21:47 chithanh Exp $
 
 EAPI=2
 
@@ -21,7 +21,7 @@
 
 S=${WORKDIR}/master
 
-CONFIG_CHECK="~BACKLIGHT_CLASS_DEVICE ~DEBUG_FS !DRM ~FB_CFB_FILLRECT ~FB_CFB_COPYAREA ~FB_CFB_IMAGEBLIT ~FRAMEBUFFER_CONSOLE ~!FB_VESA ~!FB_UVESA ~I2C_ALGOBIT ~VGA_ARB"
+CONFIG_CHECK="~BACKLIGHT_CLASS_DEVICE ~DEBUG_FS !DRM ~FB_CFB_FILLRECT ~FB_CFB_COPYAREA ~FB_CFB_IMAGEBLIT ~FRAMEBUFFER_CONSOLE ~!FB_UVESA ~I2C_ALGOBIT ~VGA_ARB"
 
 pkg_setup() {
 	linux-mod_pkg_setup






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-03-16  4:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-27  8:12 [gentoo-commits] gentoo-x86 commit in x11-base/nouveau-drm: ChangeLog nouveau-drm-20100226.ebuild Chi-Thanh Christopher Nguyen (chithanh)
  -- strict thread matches above, loose matches on Subject: below --
2010-03-16  4:21 Chi-Thanh Christopher Nguyen (chithanh)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox