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/kyotocabinet: ChangeLog kyotocabinet-1.2.38.ebuild
Date: Mon, 31 Jan 2011 12:51:19
Message-Id: 20110131125105.43D1720054@flycatcher.gentoo.org
1 patrick 11/01/31 12:51:05
2
3 Modified: ChangeLog
4 Added: kyotocabinet-1.2.38.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.7 dev-db/kyotocabinet/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/kyotocabinet/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/kyotocabinet/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/kyotocabinet/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-db/kyotocabinet/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 16 Jan 2011 09:42:33 -0000 1.6
24 +++ ChangeLog 31 Jan 2011 12:51:05 -0000 1.7
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-db/kyotocabinet
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-db/kyotocabinet/ChangeLog,v 1.6 2011/01/16 09:42:33 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-db/kyotocabinet/ChangeLog,v 1.7 2011/01/31 12:51:05 patrick Exp $
30 +
31 +*kyotocabinet-1.2.38 (31 Jan 2011)
32 +
33 + 31 Jan 2011; Patrick Lauer <patrick@g.o> +kyotocabinet-1.2.38.ebuild:
34 + Bump
35
36 *kyotocabinet-1.2.34 (16 Jan 2011)
37
38
39
40
41 1.1 dev-db/kyotocabinet/kyotocabinet-1.2.38.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/kyotocabinet/kyotocabinet-1.2.38.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/kyotocabinet/kyotocabinet-1.2.38.ebuild?rev=1.1&content-type=text/plain
45
46 Index: kyotocabinet-1.2.38.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-db/kyotocabinet/kyotocabinet-1.2.38.ebuild,v 1.1 2011/01/31 12:51:05 patrick Exp $
51
52 EAPI="2"
53
54 inherit eutils
55
56 DESCRIPTION="A straightforward implementation of DBM"
57 HOMEPAGE="http://fallabs.com/kyotocabinet/"
58 SRC_URI="${HOMEPAGE}pkg/${P}.tar.gz"
59
60 LICENSE="GPL-3"
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/xz-utils"
67 RDEPEND="${DEPEND}"
68
69 src_prepare() {
70 epatch "${FILESDIR}/fix_rpath-1.2.4.patch"
71 epatch "${FILESDIR}/remove_ldconfig-1.2.4.patch"
72 epatch "${FILESDIR}/remove_docinst-1.2.29.patch"
73 }
74
75 src_configure() {
76 econf $(use_enable debug) --enable-lzma
77 }
78
79 src_install() {
80 emake DESTDIR="${D}" install || die "Install failed"
81
82 if use examples; then
83 insinto /usr/share/${PF}/example
84 doins example/* || die "Install failed"
85 fi
86
87 if use doc; then
88 insinto /usr/share/doc/${PF}
89 doins -r doc/* || die "Install failed"
90 fi
91 }
92
93 src_test() {
94 emake -j1 check || die "Tests failed"
95 }