Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/tokyocabinet: ChangeLog tokyocabinet-1.4.47.ebuild tokyocabinet-1.4.41.ebuild tokyocabinet-1.4.45.ebuild tokyocabinet-1.4.42.ebuild
Date: Fri, 01 Apr 2011 17:10:13
Message-Id: 20110401171002.244EC20054@flycatcher.gentoo.org
1 patrick 11/04/01 17:10:02
2
3 Modified: ChangeLog tokyocabinet-1.4.47.ebuild
4 Removed: tokyocabinet-1.4.41.ebuild
5 tokyocabinet-1.4.45.ebuild
6 tokyocabinet-1.4.42.ebuild
7 Log:
8 Fixing cflags and autotools handling for #361129
9
10 (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.34 dev-db/tokyocabinet/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.34&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.34&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?r1=1.33&r2=1.34
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v
22 retrieving revision 1.33
23 retrieving revision 1.34
24 diff -u -r1.33 -r1.34
25 --- ChangeLog 26 Feb 2011 08:22:12 -0000 1.33
26 +++ ChangeLog 1 Apr 2011 17:10:02 -0000 1.34
27 @@ -1,6 +1,15 @@
28 # ChangeLog for dev-db/tokyocabinet
29 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.33 2011/02/26 08:22:12 xarthisius Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.34 2011/04/01 17:10:02 patrick Exp $
32 +
33 + 01 Apr 2011; Patrick Lauer <patrick@g.o> -tokyocabinet-1.4.41.ebuild,
34 + -tokyocabinet-1.4.42.ebuild, -tokyocabinet-1.4.45.ebuild,
35 + tokyocabinet-1.4.47.ebuild:
36 + Fixing cflags and autotools handling for #361129
37 +
38 + 01 Apr 2011; Patrick Lauer <patrick@g.o> -tokyocabinet-1.4.41.ebuild,
39 + -tokyocabinet-1.4.42.ebuild, -tokyocabinet-1.4.45.ebuild:
40 + Remove old
41
42 26 Feb 2011; Kacper Kowalik <xarthisius@g.o>
43 tokyocabinet-1.4.46.ebuild:
44
45
46
47 1.2 dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild?rev=1.2&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild?rev=1.2&content-type=text/plain
51 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild?r1=1.1&r2=1.2
52
53 Index: tokyocabinet-1.4.47.ebuild
54 ===================================================================
55 RCS file: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild,v
56 retrieving revision 1.1
57 retrieving revision 1.2
58 diff -u -r1.1 -r1.2
59 --- tokyocabinet-1.4.47.ebuild 12 Feb 2011 08:58:23 -0000 1.1
60 +++ tokyocabinet-1.4.47.ebuild 1 Apr 2011 17:10:02 -0000 1.2
61 @@ -1,10 +1,10 @@
62 # Copyright 1999-2011 Gentoo Foundation
63 # Distributed under the terms of the GNU General Public License v2
64 -# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild,v 1.1 2011/02/12 08:58:23 patrick Exp $
65 +# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild,v 1.2 2011/04/01 17:10:02 patrick Exp $
66
67 EAPI="2"
68
69 -inherit eutils
70 +inherit eutils autotools
71
72 DESCRIPTION="A library of routines for managing a database"
73 HOMEPAGE="http://fallabs.com/tokyocabinet/"
74 @@ -24,10 +24,14 @@
75 sed -i \
76 -e "/ldconfig/d" \
77 -e "/DATADIR/d" Makefile.in || die
78 + # cflags fix - remove -O2 at end of line
79 + sed -i -e 's/-O3"$/"/' configure.in || die
80 + eautoreconf || die
81 }
82
83 src_configure() {
84 - econf $(use_enable debug) --enable-off64
85 + # we use the "fastest" target without the -O3
86 + econf $(use_enable debug) --enable-off64 --enable-fastest
87 }
88
89 src_install() {