summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2011-02-12 08:58:23 +0000
committerPatrick Lauer <patrick@gentoo.org>2011-02-12 08:58:23 +0000
commit84fee2ade3c04794667d201de15ed6387c4f6199 (patch)
tree4c3fe0615e01142c539745b9b37c7f19b6c1d7de /dev-db/tokyocabinet
parentVersion bump. (diff)
downloadgentoo-2-84fee2ade3c04794667d201de15ed6387c4f6199.tar.gz
gentoo-2-84fee2ade3c04794667d201de15ed6387c4f6199.tar.bz2
gentoo-2-84fee2ade3c04794667d201de15ed6387c4f6199.zip
Bump for #354583
(Portage version: 2.2.0_alpha23/cvs/Linux x86_64)
Diffstat (limited to 'dev-db/tokyocabinet')
-rw-r--r--dev-db/tokyocabinet/ChangeLog8
-rw-r--r--dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild (renamed from dev-db/tokyocabinet/tokyocabinet-1.4.38.ebuild)21
2 files changed, 20 insertions, 9 deletions
diff --git a/dev-db/tokyocabinet/ChangeLog b/dev-db/tokyocabinet/ChangeLog
index d963d969925c..c8c3a41f3ec3 100644
--- a/dev-db/tokyocabinet/ChangeLog
+++ b/dev-db/tokyocabinet/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for dev-db/tokyocabinet
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.31 2011/01/13 17:52:46 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.32 2011/02/12 08:58:23 patrick Exp $
+
+*tokyocabinet-1.4.47 (12 Feb 2011)
+
+ 12 Feb 2011; Patrick Lauer <patrick@gentoo.org> -tokyocabinet-1.4.38.ebuild,
+ +tokyocabinet-1.4.47.ebuild:
+ Bump for #354583
13 Jan 2011; Brent Baude <ranger@gentoo.org> tokyocabinet-1.4.46.ebuild:
stable ppc, bug 346661
diff --git a/dev-db/tokyocabinet/tokyocabinet-1.4.38.ebuild b/dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild
index 248817419ec8..597d314889c3 100644
--- a/dev-db/tokyocabinet/tokyocabinet-1.4.38.ebuild
+++ b/dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild
@@ -1,18 +1,18 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.38.ebuild,v 1.4 2010/01/09 20:09:40 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild,v 1.1 2011/02/12 08:58:23 patrick Exp $
-EAPI=2
+EAPI="2"
inherit eutils
DESCRIPTION="A library of routines for managing a database"
-HOMEPAGE="http://1978th.net/tokyocabinet/"
+HOMEPAGE="http://fallabs.com/tokyocabinet/"
SRC_URI="${HOMEPAGE}${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
-KEYWORDS="alpha ~amd64 ~hppa ~ppc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
IUSE="debug doc examples"
DEPEND="sys-libs/zlib
@@ -21,21 +21,26 @@ RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}/fix_rpath.patch"
+ sed -i \
+ -e "/ldconfig/d" \
+ -e "/DATADIR/d" Makefile.in || die
}
src_configure() {
- econf $(use_enable debug)
+ econf $(use_enable debug) --enable-off64
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
if use examples; then
- dodoc example/* || die "Install failed"
+ insinto /usr/share/${PF}/example
+ doins example/* || die "Install failed"
fi
if use doc; then
- dodoc doc/* || die "Install failed"
+ insinto /usr/share/doc/${PF}
+ doins -r doc/* || die "Install failed"
fi
}