Gentoo Archives: gentoo-commits

From: "Chí-Thanh Christopher Nguyễn" <chithanh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-openchrome/
Date: Sun, 29 May 2016 18:55:45
Message-Id: 1464548141.e56bf5142eab166a9b9ca149d3e4e73bc2287e79.chithanh@gentoo
1 commit: e56bf5142eab166a9b9ca149d3e4e73bc2287e79
2 Author: Chí-Thanh Christopher Nguyễn <chithanh <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 29 18:55:41 2016 +0000
4 Commit: Chí-Thanh Christopher Nguyễn <chithanh <AT> gentoo <DOT> org>
5 CommitDate: Sun May 29 18:55:41 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e56bf514
7
8 x11-drivers/xf86-video-openchrome: Version bump
9
10 Package-Manager: portage-2.2.28
11
12 x11-drivers/xf86-video-openchrome/Manifest | 1 +
13 .../xf86-video-openchrome-0.4.0.ebuild | 50 ++++++++++++++++++++++
14 2 files changed, 51 insertions(+)
15
16 diff --git a/x11-drivers/xf86-video-openchrome/Manifest b/x11-drivers/xf86-video-openchrome/Manifest
17 index f83e4a5..7631d37 100644
18 --- a/x11-drivers/xf86-video-openchrome/Manifest
19 +++ b/x11-drivers/xf86-video-openchrome/Manifest
20 @@ -1 +1,2 @@
21 DIST xf86-video-openchrome-0.3.3.tar.bz2 518705 SHA256 e49e2f1e5dac86408e5a74b87038cc4082d2c3fba4e0579823161991432412ed SHA512 ed1c30a6d92b804648de324d98ca61bd7887b4b97ed94e5b0c1f5abaf7d0dbb5ba1dc79e7c35a8cd76bff0d5b05594921bddc9007ef9ba00e72d0b9bd678de9e WHIRLPOOL d22b8a6ffaaad33a705a725abb018b9637097011f83682c10a6c72a8ffce29ae82341080a86d82203f00aad2fec9c94fda5065c9df7494a4fc858843292e75ab
22 +DIST xf86-video-openchrome-0.4.0.tar.bz2 532508 SHA256 73e7966d01d0d644d3b9204e8bfc106cb99069c58e981626e7352f2693e3e927 SHA512 64408abfd759b4ba1a2bf1714345f9b1f806127f66af8b746bd58753fc10b631a7695a68351e42fa514ef4e87e2b3e564884abd758e32b2d1253b66e05e40ac8 WHIRLPOOL aa45f88c52e5fd838abcb78c13611c415704ae0dcb3c3a0d9f5626c66813c9304cae483229c551af48562e77abe43222a7355ff6da9b41c67e42882f8f90e7a2
23
24 diff --git a/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.4.0.ebuild b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.4.0.ebuild
25 new file mode 100644
26 index 0000000..0d44bc0
27 --- /dev/null
28 +++ b/x11-drivers/xf86-video-openchrome/xf86-video-openchrome-0.4.0.ebuild
29 @@ -0,0 +1,50 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +XORG_DRI="always"
36 +inherit xorg-2
37 +
38 +DESCRIPTION="X.Org driver for VIA/S3G cards"
39 +HOMEPAGE="https://www.freedesktop.org/wiki/Openchrome/"
40 +LICENSE="MIT"
41 +
42 +KEYWORDS="~amd64 ~x86"
43 +IUSE="debug viaregtool"
44 +
45 +RDEPEND=">=x11-base/xorg-server-1.9"
46 +DEPEND="
47 + ${RDEPEND}
48 + x11-libs/libX11
49 + x11-libs/libXext
50 + x11-libs/libXv
51 + x11-libs/libXvMC
52 + x11-libs/libdrm
53 +"
54 +
55 +DOCS=( ChangeLog NEWS README )
56 +
57 +src_configure() {
58 + XORG_CONFIGURE_OPTIONS=(
59 + $(use_enable debug)
60 + $(use_enable debug xv-debug)
61 + $(use_enable viaregtool)
62 + )
63 + xorg-2_src_configure
64 +}
65 +
66 +pkg_postinst() {
67 + xorg-2_pkg_postinst
68 +
69 + elog "Supported chipsets:"
70 + elog "CLE266 (VT3122), KM400/P4M800 (VT3205), K8M800 (VT3204),"
71 + elog "PM800/PM880/CN400 (VT3259), VM800/CN700/P4M800Pro (VT3314),"
72 + elog "CX700 (VT3324), P4M890 (VT3327), K8M890 (VT3336),"
73 + elog "P4M900/VN896 (VT3364), VX800 (VT3353), VX855 (VT3409), VX900"
74 + elog
75 + elog "The driver name is 'openchrome', and this is what you need"
76 + elog "to use in your xorg.conf (and not 'via')."
77 + elog
78 + elog "See the ChangeLog and release notes for more information."
79 +}