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.38.ebuild
Date: Tue, 10 Nov 2009 13:59:55
Message-Id: E1N7rGC-0001r1-P0@stork.gentoo.org
1 patrick 09/11/10 13:59:52
2
3 Modified: ChangeLog
4 Added: tokyocabinet-1.4.38.ebuild
5 Log:
6 Buuuump.
7 (Portage version: 2.2_rc49/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.12 dev-db/tokyocabinet/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.12&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/tokyocabinet/ChangeLog?rev=1.12&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/tokyocabinet/ChangeLog?r1=1.11&r2=1.12
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v
19 retrieving revision 1.11
20 retrieving revision 1.12
21 diff -u -r1.11 -r1.12
22 --- ChangeLog 7 Nov 2009 18:49:06 -0000 1.11
23 +++ ChangeLog 10 Nov 2009 13:59:52 -0000 1.12
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.11 2009/11/07 18:49:06 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.12 2009/11/10 13:59:52 patrick Exp $
29 +
30 +*tokyocabinet-1.4.38 (10 Nov 2009)
31 +
32 + 10 Nov 2009; Patrick Lauer <patrick@g.o>
33 + +tokyocabinet-1.4.38.ebuild:
34 + Buuuump.
35
36 *tokyocabinet-1.4.37 (07 Nov 2009)
37
38
39
40
41 1.1 dev-db/tokyocabinet/tokyocabinet-1.4.38.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.38.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.38.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tokyocabinet-1.4.38.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.38.ebuild,v 1.1 2009/11/10 13:59:52 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 ~x86 ~x86-fbsd ~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 }