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.36.ebuild
Date: Tue, 27 Oct 2009 09:31:48
Message-Id: E1N2iP4-0006DD-HI@stork.gentoo.org
1 patrick 09/10/27 09:31:46
2
3 Modified: ChangeLog
4 Added: tokyocabinet-1.4.36.ebuild
5 Log:
6 Bump, closes #290701
7 (Portage version: 2.2_rc46/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.6 dev-db/tokyocabinet/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/tokyocabinet/ChangeLog?r1=1.5&r2=1.6
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- ChangeLog 26 Oct 2009 20:34:55 -0000 1.5
23 +++ ChangeLog 27 Oct 2009 09:31:45 -0000 1.6
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-db/tokyocabinet
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.5 2009/10/26 20:34:55 klausman Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.6 2009/10/27 09:31:45 patrick Exp $
29 +
30 +*tokyocabinet-1.4.36 (27 Oct 2009)
31 +
32 + 27 Oct 2009; Patrick Lauer <patrick@g.o>
33 + +tokyocabinet-1.4.36.ebuild:
34 + Bump, closes #290701
35
36 26 Oct 2009; Tobias Klausmann <klausman@g.o>
37 tokyocabinet-1.4.35.ebuild:
38
39
40
41 1.1 dev-db/tokyocabinet/tokyocabinet-1.4.36.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.36.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.36.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tokyocabinet-1.4.36.ebuild
47 ===================================================================
48 # Copyright 1999-2009 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.36.ebuild,v 1.1 2009/10/27 09:31:45 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 ~x86 ~ppc-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 }
72
73 src_configure() {
74 econf $(use_enable debug)
75 }
76
77 src_install() {
78 emake DESTDIR="${D}" install || die "Install failed"
79
80 if use examples; then
81 dodoc example/* || die "Install failed"
82 fi
83
84 if use doc; then
85 dodoc doc/* || die "Install failed"
86 fi
87 }
88
89 src_test() {
90 emake -j1 check || die "Tests failed"
91 }