Gentoo Archives: gentoo-commits

From: "Donnie Berkholz (dberkholz)" <dberkholz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: x-modular.eclass
Date: Wed, 26 Nov 2008 23:13:25
Message-Id: E1L5TZU-0002V2-3Z@stork.gentoo.org
1 dberkholz 08/11/26 23:13:24
2
3 Modified: x-modular.eclass
4 Log:
5 x-modular_dri_check(): Keep working when xorg-server doesn't support USE=dri.
6
7 Revision Changes Path
8 1.103 eclass/x-modular.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/x-modular.eclass?rev=1.103&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/x-modular.eclass?rev=1.103&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/x-modular.eclass?r1=1.102&r2=1.103
13
14 Index: x-modular.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v
17 retrieving revision 1.102
18 retrieving revision 1.103
19 diff -u -r1.102 -r1.103
20 --- x-modular.eclass 25 Aug 2008 17:10:36 -0000 1.102
21 +++ x-modular.eclass 26 Nov 2008 23:13:24 -0000 1.103
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2005 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.102 2008/08/25 17:10:36 dberkholz Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.103 2008/11/26 23:13:24 dberkholz Exp $
27 #
28 # @ECLASS: x-modular.eclass
29 # @MAINTAINER:
30 @@ -195,7 +195,7 @@
31 if [[ -n "${DRIVER}" ]]; then
32 if has dri ${IUSE} && use dri; then
33 einfo "Checking for direct rendering capabilities ..."
34 - if ! built_with_use x11-base/xorg-server dri; then
35 + if ! built_with_use --missing true x11-base/xorg-server dri; then
36 die "You must build x11-base/xorg-server with USE=dri."
37 fi
38 fi