Gentoo Archives: gentoo-commits

From: "Ole Markus With (olemarkus)" <olemarkus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/php/files/eblits: src_configure-v53.eblit
Date: Fri, 23 Dec 2011 17:16:53
Message-Id: 20111223171642.CF6092004C@flycatcher.gentoo.org
1 olemarkus 11/12/23 17:16:42
2
3 Modified: src_configure-v53.eblit
4 Log:
5 Fixed a typo leading to bug 395725
6
7 (Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 dev-lang/php/files/eblits/src_configure-v53.eblit
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/files/eblits/src_configure-v53.eblit?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/files/eblits/src_configure-v53.eblit?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/files/eblits/src_configure-v53.eblit?r1=1.1&r2=1.2
15
16 Index: src_configure-v53.eblit
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/php/files/eblits/src_configure-v53.eblit,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- src_configure-v53.eblit 16 Dec 2011 09:02:43 -0000 1.1
23 +++ src_configure-v53.eblit 23 Dec 2011 17:16:42 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2011 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/files/eblits/src_configure-v53.eblit,v 1.1 2011/12/16 09:02:43 olemarkus Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/files/eblits/src_configure-v53.eblit,v 1.2 2011/12/23 17:16:42 olemarkus Exp $
29
30 eblit-php-src_configure() {
31 addpredict /usr/share/snmp/mibs/.index
32 @@ -10,11 +10,10 @@
33 # This is a global variable and should be in caps. It isn't because the
34 # phpconfutils eclass relies on exactly this name...
35 # for --with-libdir see bug #327025
36 - my_conf="
37 - --prefix="${PHP_DESTDIR}"
38 - --mandir="${PHP_DESTDIR}"/man
39 - --infodir="${PHP_DESTDIR}"/info
40 - --libdir="${PHP_DESTDIR}"/lib
41 + my_conf="--prefix=${PHP_DESTDIR}
42 + --mandir=${PHP_DESTDIR}/man
43 + --infodir=${PHP_DESTDIR}/info
44 + --libdir=${PHP_DESTDIR}/lib
45 --with-libdir=$(get_libdir)
46 --without-pear
47 $(use_enable threads maintainer-zts)"
48 @@ -63,7 +62,7 @@
49 $(use_enable sockets sockets )
50 $(use_with sqlite sqlite /usr)"
51 use sqlite && my_conf+=" $(use_enable unicode sqlite-utf8)"
52 - $my_conf="
53 + my_conf+="
54 $(use_with sqlite3 sqlite3 /usr)
55 $(use_with sybase-ct sybase-ct /usr)
56 $(use_enable sysvipc sysvmsg )