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.45.ebuild tokyocabinet-1.4.43.ebuild tokyocabinet-1.4.44.ebuild
Date: Wed, 02 Jun 2010 10:55:22
Message-Id: 20100602105517.C926D2CE14@corvid.gentoo.org
1 patrick 10/06/02 10:55:17
2
3 Modified: ChangeLog
4 Added: tokyocabinet-1.4.45.ebuild
5 Removed: tokyocabinet-1.4.43.ebuild
6 tokyocabinet-1.4.44.ebuild
7 Log:
8 Bump, fixes #321171, thanks to Johan Bergstroem
9 (Portage version: 2.2_rc67/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.25 dev-db/tokyocabinet/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.25&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.25&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/ChangeLog?r1=1.24&r2=1.25
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v
21 retrieving revision 1.24
22 retrieving revision 1.25
23 diff -u -r1.24 -r1.25
24 --- ChangeLog 3 May 2010 17:56:03 -0000 1.24
25 +++ ChangeLog 2 Jun 2010 10:55:17 -0000 1.25
26 @@ -1,6 +1,14 @@
27 # ChangeLog for dev-db/tokyocabinet
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.24 2010/05/03 17:56:03 patrick Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.25 2010/06/02 10:55:17 patrick Exp $
31 +
32 +*tokyocabinet-1.4.45 (02 Jun 2010)
33 +
34 + 02 Jun 2010; Patrick Lauer <patrick@g.o> -files/1.4.43.patch,
35 + -tokyocabinet-1.4.44.ebuild, -files/1.4.44.patch,
36 + +tokyocabinet-1.4.45.ebuild, +files/1.4.45.patch,
37 + -tokyocabinet-1.4.43.ebuild:
38 + Bump, fixes #321171, thanks to Johan Bergstroem
39
40 03 May 2010; Patrick Lauer <patrick@g.o>
41 tokyocabinet-1.4.44.ebuild:
42
43
44
45 1.1 dev-db/tokyocabinet/tokyocabinet-1.4.45.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.45.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.45.ebuild?rev=1.1&content-type=text/plain
49
50 Index: tokyocabinet-1.4.45.ebuild
51 ===================================================================
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.45.ebuild,v 1.1 2010/06/02 10:55:17 patrick Exp $
55
56 EAPI=2
57
58 inherit eutils
59
60 DESCRIPTION="A library of routines for managing a database"
61 HOMEPAGE="http://1978th.net/tokyocabinet/"
62 SRC_URI="${HOMEPAGE}${P}.tar.gz"
63
64 LICENSE="LGPL-2.1"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
67 IUSE="debug doc examples"
68
69 DEPEND="sys-libs/zlib
70 app-arch/bzip2"
71 RDEPEND="${DEPEND}"
72
73 src_prepare() {
74 epatch "${FILESDIR}/fix_rpath.patch"
75 epatch "${FILESDIR}/${PV}.patch"
76 }
77
78 src_configure() {
79 econf $(use_enable debug) --enable-off64
80 }
81
82 src_install() {
83 emake DESTDIR="${D}" install || die "Install failed"
84
85 if use examples; then
86 dodoc example/* || die "Install failed"
87 fi
88
89 if use doc; then
90 dodoc doc/* || die "Install failed"
91 fi
92 }
93
94 src_test() {
95 emake -j1 check || die "Tests failed"
96 }