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