Gentoo Archives: gentoo-commits

From: "Sven Wegener (swegener)" <swegener@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: wxwidgets.eclass
Date: Sun, 25 Nov 2007 14:19:48
Message-Id: E1IwIKh-0006o4-NH@stork.gentoo.org
1 swegener 07/11/25 14:19:39
2
3 Modified: wxwidgets.eclass
4 Log:
5 don't use command substitution
6
7 Revision Changes Path
8 1.23 eclass/wxwidgets.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/wxwidgets.eclass?rev=1.23&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/wxwidgets.eclass?rev=1.23&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/wxwidgets.eclass?r1=1.22&r2=1.23
13
14 Index: wxwidgets.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/wxwidgets.eclass,v
17 retrieving revision 1.22
18 retrieving revision 1.23
19 diff -u -r1.22 -r1.23
20 --- wxwidgets.eclass 21 Nov 2007 01:29:13 -0000 1.22
21 +++ wxwidgets.eclass 25 Nov 2007 14:19:39 -0000 1.23
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2007 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/wxwidgets.eclass,v 1.22 2007/11/21 01:29:13 dirtyepic Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/wxwidgets.eclass,v 1.23 2007/11/25 14:19:39 swegener Exp $
27
28 # @ECLASS: wxwidgets.eclass
29 # @MAINTAINER:
30 @@ -162,7 +162,7 @@
31 # all the crazy looping
32
33 # base can be provided by both gtk2 and base installations
34 - if $(built_with_use =x11-libs/wxGTK-${WX_GTK_VER}* X); then
35 + if built_with_use =x11-libs/wxGTK-${WX_GTK_VER}* X; then
36 wxtoolkit="gtk2"
37 else
38 wxtoolkit="base"
39 @@ -171,7 +171,7 @@
40 debug-print "wxtoolkit is ${wxtoolkit}"
41
42 # debug or release?
43 - if $(built_with_use =x11-libs/wxGTK-${WX_GTK_VER}* debug); then
44 + if built_with_use =x11-libs/wxGTK-${WX_GTK_VER}* debug; then
45 wxdebug="debug"
46 else
47 wxdebug="release"
48 @@ -224,7 +224,7 @@
49
50
51 ebegin "Checking wxGTK-${WX_GTK_VER} for ${1} support"
52 - if $(built_with_use =x11-libs/wxGTK-${WX_GTK_VER}* "${1}"); then
53 + if built_with_use =x11-libs/wxGTK-${WX_GTK_VER}* "${1}"; then
54 eend 0
55 else
56 eend 1
57
58
59
60 --
61 gentoo-commits@g.o mailing list