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