Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-fps/quake3: quake3-1.34_rc3.ebuild
Date: Sat, 12 Jan 2008 02:53:14
Message-Id: E1JDWUh-0002hf-Nq@stork.gentoo.org
1 mr_bones_ 08/01/12 02:53:11
2
3 Modified: quake3-1.34_rc3.ebuild
4 Log:
5 avoid building empty package when USE=-dedicated -opengl
6 (Portage version: 2.1.3.19)
7
8 Revision Changes Path
9 1.8 games-fps/quake3/quake3-1.34_rc3.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/quake3/quake3-1.34_rc3.ebuild?rev=1.8&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/quake3/quake3-1.34_rc3.ebuild?rev=1.8&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-fps/quake3/quake3-1.34_rc3.ebuild?r1=1.7&r2=1.8
14
15 Index: quake3-1.34_rc3.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-fps/quake3/quake3-1.34_rc3.ebuild,v
18 retrieving revision 1.7
19 retrieving revision 1.8
20 diff -u -r1.7 -r1.8
21 --- quake3-1.34_rc3.ebuild 22 Jun 2007 02:06:59 -0000 1.7
22 +++ quake3-1.34_rc3.ebuild 12 Jan 2008 02:53:11 -0000 1.8
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2007 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-fps/quake3/quake3-1.34_rc3.ebuild,v 1.7 2007/06/22 02:06:59 vapier Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/games-fps/quake3/quake3-1.34_rc3.ebuild,v 1.8 2008/01/12 02:53:11 mr_bones_ Exp $
28
29 # quake3-9999 -> latest svn
30 # quake3-9999.REV -> use svn REV
31 @@ -66,7 +66,7 @@
32 buildit() { use $1 && echo 1 || echo 0 ; }
33 emake \
34 BUILD_SERVER=$(buildit dedicated) \
35 - BUILD_CLIENT=$(buildit opengl) \
36 + BUILD_CLIENT=$(( $(buildit opengl) | $(buildit !dedicated) )) \
37 TEMPDIR="${T}" \
38 CC="$(tc-getCC)" \
39 ARCH=$(tc-arch-kernel) \
40
41
42
43 --
44 gentoo-commits@l.g.o mailing list