Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: gnome2.eclass
Date: Thu, 23 May 2013 19:31:20
Message-Id: 20130523193113.191442171D@flycatcher.gentoo.org
1 vapier 13/05/23 19:31:13
2
3 Modified: gnome2.eclass
4 Log:
5 quote $ECONF_SOURCE
6
7 Revision Changes Path
8 1.121 eclass/gnome2.eclass
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gnome2.eclass?rev=1.121&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gnome2.eclass?rev=1.121&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/gnome2.eclass?r1=1.120&r2=1.121
13
14 Index: gnome2.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v
17 retrieving revision 1.120
18 retrieving revision 1.121
19 diff -u -r1.120 -r1.121
20 --- gnome2.eclass 16 Jan 2013 23:01:02 -0000 1.120
21 +++ gnome2.eclass 23 May 2013 19:31:12 -0000 1.121
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2013 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.120 2013/01/16 23:01:02 eva Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.121 2013/05/23 19:31:12 vapier Exp $
27
28 # @ECLASS: gnome2.eclass
29 # @MAINTAINER:
30 @@ -122,7 +122,7 @@
31 # Remember to drop 'doc' USE flag from your package if it was only used to
32 # rebuild docs.
33 # Preserve old behavior for older EAPI.
34 - if grep -q "enable-gtk-doc" ${ECONF_SOURCE:-.}/configure ; then
35 + if grep -q "enable-gtk-doc" "${ECONF_SOURCE:-.}"/configure ; then
36 if has ${EAPI:-0} 0 1 2 3 4 && in_iuse doc ; then
37 G2CONF="$(use_enable doc gtk-doc) ${G2CONF}"
38 else
39 @@ -132,29 +132,29 @@
40
41 # Pass --disable-maintainer-mode when needed
42 if grep -q "^[[:space:]]*AM_MAINTAINER_MODE(\[enable\])" \
43 - ${ECONF_SOURCE:-.}/configure.*; then
44 + "${ECONF_SOURCE:-.}"/configure.*; then
45 G2CONF="--disable-maintainer-mode ${G2CONF}"
46 fi
47
48 # Pass --disable-scrollkeeper when possible
49 - if grep -q "disable-scrollkeeper" ${ECONF_SOURCE:-.}/configure; then
50 + if grep -q "disable-scrollkeeper" "${ECONF_SOURCE:-.}"/configure; then
51 G2CONF="--disable-scrollkeeper ${G2CONF}"
52 fi
53
54 # Pass --disable-silent-rules when possible (not needed for eapi5), bug #429308
55 if has ${EAPI:-0} 0 1 2 3 4; then
56 - if grep -q "disable-silent-rules" ${ECONF_SOURCE:-.}/configure; then
57 + if grep -q "disable-silent-rules" "${ECONF_SOURCE:-.}"/configure; then
58 G2CONF="--disable-silent-rules ${G2CONF}"
59 fi
60 fi
61
62 # Pass --disable-schemas-install when possible
63 - if grep -q "disable-schemas-install" ${ECONF_SOURCE:-.}/configure; then
64 + if grep -q "disable-schemas-install" "${ECONF_SOURCE:-.}"/configure; then
65 G2CONF="--disable-schemas-install ${G2CONF}"
66 fi
67
68 # Pass --disable-schemas-compile when possible
69 - if grep -q "disable-schemas-compile" ${ECONF_SOURCE:-.}/configure; then
70 + if grep -q "disable-schemas-compile" "${ECONF_SOURCE:-.}"/configure; then
71 G2CONF="--disable-schemas-compile ${G2CONF}"
72 fi