blob: 4b068f7d1f500783c590cd9f1ff30c71b5ea7d22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.2.901.ebuild,v 1.3 2008/04/10 06:32:51 dberkholz Exp $
XDPVER="-1"
IUSE="debug dri"
inherit x-modular
DESCRIPTION="X.Org driver for VIA/S3G cards"
HOMEPAGE="http://www.openchrome.org"
SRC_URI="${HOMEPAGE}/releases/${P}.tar.bz2"
LICENSE="MIT"
KEYWORDS="amd64 x86"
RDEPEND=">=x11-base/xorg-server-1.2
dri? ( x11-libs/libdrm )"
DEPEND="${RDEPEND}
x11-libs/libX11
x11-libs/libXv
x11-libs/libXvMC
x11-proto/videoproto
x11-proto/xextproto
x11-proto/xproto
dri? (
x11-proto/xf86driproto
x11-proto/glproto
)"
CONFIGURE_OPTIONS="
$(use_enable debug)
$(use_enable debug xv-debug)
"
DOCS="release_notes-0.3.0"
pkg_setup() {
if use dri && ! built_with_use x11-base/xorg-server dri; then
die "Build x11-base/xorg-server with the 'dri' USE flag."
fi
}
pkg_postinst() {
elog "Supported chipsets:"
elog ""
elog "CLE266 (VT3122)"
elog "KM400/P4M800 (VT3205)"
elog "K8M800 (VT3204)"
elog "PM800/PM880/CN400 (VT3259)"
elog "VM800/CN700/P4M800Pro (VT3314)"
elog "CX700 (VT3324)"
elog "P4M890 (VT3327)"
elog "K8M890 (VT3336)"
elog "P4M900/VN896 (VT3364)"
elog ""
elog "The driver name is 'openchrome', and this is what you need"
elog "to use in your xorg.conf now (instead of 'via')."
elog ""
elog "See the ChangeLog and release notes for more information."
}
|