diff options
author | Donnie Berkholz <spyderous@gentoo.org> | 2005-08-08 07:08:32 +0000 |
---|---|---|
committer | Donnie Berkholz <spyderous@gentoo.org> | 2005-08-08 07:08:32 +0000 |
commit | 68e18c9df9e30fa7910f6a3987d7ca28668f196c (patch) | |
tree | 444b4cdf41137c9b644d774477303bf739e567b5 /x11-drivers/xf86-video-via | |
parent | added interim version (bug 72353) and removed broken 5.0.3 version (diff) | |
download | gentoo-2-68e18c9df9e30fa7910f6a3987d7ca28668f196c.tar.gz gentoo-2-68e18c9df9e30fa7910f6a3987d7ca28668f196c.tar.bz2 gentoo-2-68e18c9df9e30fa7910f6a3987d7ca28668f196c.zip |
Initial commit for modular X.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'x11-drivers/xf86-video-via')
-rw-r--r-- | x11-drivers/xf86-video-via/ChangeLog | 10 | ||||
-rw-r--r-- | x11-drivers/xf86-video-via/Manifest | 3 | ||||
-rw-r--r-- | x11-drivers/xf86-video-via/files/digest-xf86-video-via-0.1.31 | 1 | ||||
-rw-r--r-- | x11-drivers/xf86-video-via/files/xf86xvpriv.patch | 0 | ||||
-rw-r--r-- | x11-drivers/xf86-video-via/xf86-video-via-0.1.31.ebuild | 25 |
5 files changed, 39 insertions, 0 deletions
diff --git a/x11-drivers/xf86-video-via/ChangeLog b/x11-drivers/xf86-video-via/ChangeLog new file mode 100644 index 000000000000..2fcb71103174 --- /dev/null +++ b/x11-drivers/xf86-video-via/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for x11-drivers/xf86-video-via +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-via/ChangeLog,v 1.1 2005/08/08 07:08:32 spyderous Exp $ + +*xf86-video-via-0.1.31 (08 Aug 2005) + + 08 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>; + +files/xf86xvpriv.patch, +xf86-video-via-0.1.31.ebuild: + Initial commit for modular X. + diff --git a/x11-drivers/xf86-video-via/Manifest b/x11-drivers/xf86-video-via/Manifest new file mode 100644 index 000000000000..99085e67eb76 --- /dev/null +++ b/x11-drivers/xf86-video-via/Manifest @@ -0,0 +1,3 @@ +MD5 35fd358faacc8bbd194caf8e11fcae7a xf86-video-via-0.1.31.ebuild 585 +MD5 d41d8cd98f00b204e9800998ecf8427e files/xf86xvpriv.patch 0 +MD5 99dbc6d3bd0e4c3d071d8af726d5642f files/digest-xf86-video-via-0.1.31 74 diff --git a/x11-drivers/xf86-video-via/files/digest-xf86-video-via-0.1.31 b/x11-drivers/xf86-video-via/files/digest-xf86-video-via-0.1.31 new file mode 100644 index 000000000000..fabe508a843f --- /dev/null +++ b/x11-drivers/xf86-video-via/files/digest-xf86-video-via-0.1.31 @@ -0,0 +1 @@ +MD5 830353f3c933783db9cb60d93d4e538e xf86-video-via-0.1.31.tar.bz2 301830 diff --git a/x11-drivers/xf86-video-via/files/xf86xvpriv.patch b/x11-drivers/xf86-video-via/files/xf86xvpriv.patch new file mode 100644 index 000000000000..e69de29bb2d1 --- /dev/null +++ b/x11-drivers/xf86-video-via/files/xf86xvpriv.patch diff --git a/x11-drivers/xf86-video-via/xf86-video-via-0.1.31.ebuild b/x11-drivers/xf86-video-via/xf86-video-via-0.1.31.ebuild new file mode 100644 index 000000000000..ba7d7f6ede2d --- /dev/null +++ b/x11-drivers/xf86-video-via/xf86-video-via-0.1.31.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-via/xf86-video-via-0.1.31.ebuild,v 1.1 2005/08/08 07:08:32 spyderous Exp $ + +# Must be before x-modular eclass is inherited +#SNAPSHOT="yes" + +inherit x-modular + +DESCRIPTION="X.Org driver for via cards" +KEYWORDS="~x86" +IUSE="dri" +RDEPEND="x11-base/xorg-server" +DEPEND="${RDEPEND} + x11-proto/xproto + dri? ( x11-proto/xf86driproto )" + +PATCHES="${FILESDIR}/xf86xvpriv.patch" +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 +} |