Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/perl/files/eblits: src_configure-v50180002.eblit
Date: Mon, 07 Jul 2014 12:44:15
Message-Id: 20140707124412.B2C6F20051@flycatcher.gentoo.org
1 pinkbyte 14/07/07 12:44:12
2
3 Modified: src_configure-v50180002.eblit
4 Log:
5 Revision bump: apply workaround for bug #157774 - do not build gdbm stuff when USE='-gdbm'. Drop old revisions
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
8
9 Revision Changes Path
10 1.2 dev-lang/perl/files/eblits/src_configure-v50180002.eblit
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/perl/files/eblits/src_configure-v50180002.eblit?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/perl/files/eblits/src_configure-v50180002.eblit?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/perl/files/eblits/src_configure-v50180002.eblit?r1=1.1&r2=1.2
15
16 Index: src_configure-v50180002.eblit
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/perl/files/eblits/src_configure-v50180002.eblit,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- src_configure-v50180002.eblit 11 Mar 2014 17:01:14 -0000 1.1
23 +++ src_configure-v50180002.eblit 7 Jul 2014 12:44:12 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/perl/files/eblits/src_configure-v50180002.eblit,v 1.1 2014/03/11 17:01:14 civil Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/perl/files/eblits/src_configure-v50180002.eblit,v 1.2 2014/07/07 12:44:12 pinkbyte Exp $
29
30 myconf() {
31 # the myconf array is declared in src_configure
32 @@ -93,7 +93,14 @@
33 fi
34
35 # don't try building ODBM, bug #354453
36 - myconf -Dnoextensions=ODBM_File
37 + disabled_extensions="ODBM_File"
38 +
39 + if ! use gdbm ; then
40 + # workaround for bug #157774: don't try building GDBM related stuff with USE="-gdbm"
41 + disabled_extensions="${disabled_extensions} GDBM_File NDBM_File"
42 + fi
43 +
44 + myconf -Dnoextensions="${disabled_extensions}"
45
46 sh Configure \
47 -des \