diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2007-12-01 20:20:49 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2007-12-01 20:20:49 +0000 |
commit | 4753a2dc378afd77983c5282887f056f824e039d (patch) | |
tree | 3f4db19ac079d8933eb600ad4969f36dd76781a7 /x11-drivers | |
parent | Update xinf file, used by sys-apps/kudzu and thus by system-config-display. (diff) | |
download | gentoo-2-4753a2dc378afd77983c5282887f056f824e039d.tar.gz gentoo-2-4753a2dc378afd77983c5282887f056f824e039d.tar.bz2 gentoo-2-4753a2dc378afd77983c5282887f056f824e039d.zip |
(#167256, #189456) Bump. Should fix DRI.
(Portage version: 2.1.4_rc4)
Diffstat (limited to 'x11-drivers')
-rw-r--r-- | x11-drivers/xf86-video-sis/ChangeLog | 8 | ||||
-rw-r--r-- | x11-drivers/xf86-video-sis/files/digest-xf86-video-sis-0.9.4 | 6 | ||||
-rw-r--r-- | x11-drivers/xf86-video-sis/xf86-video-sis-0.9.4.ebuild | 34 |
3 files changed, 47 insertions, 1 deletions
diff --git a/x11-drivers/xf86-video-sis/ChangeLog b/x11-drivers/xf86-video-sis/ChangeLog index bb8fe0d9e248..ab3e5ea60bae 100644 --- a/x11-drivers/xf86-video-sis/ChangeLog +++ b/x11-drivers/xf86-video-sis/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-drivers/xf86-video-sis # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/ChangeLog,v 1.29 2007/09/09 15:46:25 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/ChangeLog,v 1.30 2007/12/01 20:20:48 dberkholz Exp $ + +*xf86-video-sis-0.9.4 (01 Dec 2007) + + 01 Dec 2007; Donnie Berkholz <dberkholz@gentoo.org>; + +xf86-video-sis-0.9.4.ebuild: + (#167256, #189456) Bump. Should fix DRI. 09 Sep 2007; Raúl Porcel <armin76@gentoo.org> xf86-video-sis-0.9.3.ebuild: diff --git a/x11-drivers/xf86-video-sis/files/digest-xf86-video-sis-0.9.4 b/x11-drivers/xf86-video-sis/files/digest-xf86-video-sis-0.9.4 new file mode 100644 index 000000000000..cc8a543f7148 --- /dev/null +++ b/x11-drivers/xf86-video-sis/files/digest-xf86-video-sis-0.9.4 @@ -0,0 +1,6 @@ +MD5 56566e8c3fb4bb99791d1788d0a9a1a8 x11-driver-patches-4.tar.bz2 346 +RMD160 fcbd405de080d07612d46f455b927035fd8123a8 x11-driver-patches-4.tar.bz2 346 +SHA256 07069bbd072f2def50e83801a8f2a41a4c96495104f15cd6f56f7df7f89769bf x11-driver-patches-4.tar.bz2 346 +MD5 43f12cabf770b06170cdd1cdaafdc50f xf86-video-sis-0.9.4.tar.bz2 619166 +RMD160 635a61fa5dd05d2344c277e2167b17ca5b3e0f17 xf86-video-sis-0.9.4.tar.bz2 619166 +SHA256 50856446841526fc393af6bae0fbc39c20bb07e60056a676d0bc620446b593ac xf86-video-sis-0.9.4.tar.bz2 619166 diff --git a/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.4.ebuild b/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.4.ebuild new file mode 100644 index 000000000000..df9a4d8126d4 --- /dev/null +++ b/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.4.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-sis/xf86-video-sis-0.9.4.ebuild,v 1.1 2007/12/01 20:20:48 dberkholz Exp $ + +# Must be before x-modular eclass is inherited +#SNAPSHOT="yes" +XDPVER=4 + +inherit x-modular + +DESCRIPTION="SiS and XGI video driver" +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sh ~x86 ~x86-fbsd" +IUSE="dri" +RDEPEND=">=x11-base/xorg-server-1.0.99" +DEPEND="${RDEPEND} + x11-proto/fontsproto + x11-proto/randrproto + x11-proto/renderproto + x11-proto/videoproto + x11-proto/xextproto + x11-proto/xf86dgaproto + x11-proto/xf86miscproto + x11-proto/xineramaproto + x11-proto/xproto + dri? ( x11-proto/xf86driproto + >=x11-libs/libdrm-2 )" + +CONFIGURE_OPTIONS="$(use_enable dri)" + +pkg_setup() { + if use dri && ! built_with_use x11-base/xorg-server dri; then + die "Build x11-base/xorg-server with USE=dri." + fi +} |