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