Gentoo Archives: gentoo-commits

From: "Chi-Thanh Christopher Nguyen (chithanh)" <chithanh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-dummy: xf86-video-dummy-0.3.5-r1.ebuild ChangeLog
Date: Sun, 08 Jul 2012 15:14:07
Message-Id: 20120708151358.52E5D20063@flycatcher.gentoo.org
1 chithanh 12/07/08 15:13:58
2
3 Modified: ChangeLog
4 Added: xf86-video-dummy-0.3.5-r1.ebuild
5 Log:
6 Add patch to fix dga failure, bug #425322.
7
8 (Portage version: 2.2.0_alpha115/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.77 x11-drivers/xf86-video-dummy/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-dummy/ChangeLog?rev=1.77&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-dummy/ChangeLog?rev=1.77&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-dummy/ChangeLog?r1=1.76&r2=1.77
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-dummy/ChangeLog,v
20 retrieving revision 1.76
21 retrieving revision 1.77
22 diff -u -r1.76 -r1.77
23 --- ChangeLog 29 Jun 2012 04:20:22 -0000 1.76
24 +++ ChangeLog 8 Jul 2012 15:13:58 -0000 1.77
25 @@ -1,6 +1,13 @@
26 # ChangeLog for x11-drivers/xf86-video-dummy
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-dummy/ChangeLog,v 1.76 2012/06/29 04:20:22 maekke Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-dummy/ChangeLog,v 1.77 2012/07/08 15:13:58 chithanh Exp $
30 +
31 +*xf86-video-dummy-0.3.5-r1 (08 Jul 2012)
32 +
33 + 08 Jul 2012; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
34 + +files/xf86-video-dummy-0.3.5-dga-support.patch,
35 + +xf86-video-dummy-0.3.5-r1.ebuild:
36 + Add patch to fix dga failure, bug #425322.
37
38 29 Jun 2012; Markus Meier <maekke@g.o> xf86-video-dummy-0.3.5.ebuild:
39 arm stable, bug #419473
40 @@ -320,4 +327,3 @@
41 08 Aug 2005; Donnie Berkholz <dberkholz@g.o>;
42 +xf86-video-dummy-0.1.0.ebuild:
43 Initial commit for modular X.
44 -
45
46
47
48 1.1 x11-drivers/xf86-video-dummy/xf86-video-dummy-0.3.5-r1.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-dummy/xf86-video-dummy-0.3.5-r1.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-dummy/xf86-video-dummy-0.3.5-r1.ebuild?rev=1.1&content-type=text/plain
52
53 Index: xf86-video-dummy-0.3.5-r1.ebuild
54 ===================================================================
55 # Copyright 1999-2012 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-dummy/xf86-video-dummy-0.3.5-r1.ebuild,v 1.1 2012/07/08 15:13:58 chithanh Exp $
58
59 EAPI=4
60 inherit xorg-2
61
62 DESCRIPTION="X.Org driver for dummy cards"
63
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
65 IUSE="dga"
66
67 RDEPEND=">=x11-base/xorg-server-1.0.99"
68 DEPEND="${RDEPEND}
69 dga? (
70 x11-proto/xf86dgaproto
71 )"
72
73 pkg_setup() {
74 XORG_CONFIGURE_OPTIONS=(
75 $(use_enable dga)
76 )
77 xorg-2_pkg_setup
78 }
79
80 PATCHES=(
81 "${FILESDIR}"/${P}-dga-support.patch
82 )