summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-06-27 22:31:39 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-06-27 22:31:39 +0000
commit9014e83df9ecdd0bba701cd9d409b8d6e31fc149 (patch)
treec9ddaa8a89d886bc446766a9dd80d499043f163c /dev-db/tokyocabinet
parentRemove old. (diff)
downloadgentoo-2-9014e83df9ecdd0bba701cd9d409b8d6e31fc149.tar.gz
gentoo-2-9014e83df9ecdd0bba701cd9d409b8d6e31fc149.tar.bz2
gentoo-2-9014e83df9ecdd0bba701cd9d409b8d6e31fc149.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-db/tokyocabinet')
-rw-r--r--dev-db/tokyocabinet/ChangeLog8
-rw-r--r--dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild48
-rw-r--r--dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild56
3 files changed, 6 insertions, 106 deletions
diff --git a/dev-db/tokyocabinet/ChangeLog b/dev-db/tokyocabinet/ChangeLog
index be28945f0329..84b6085e065b 100644
--- a/dev-db/tokyocabinet/ChangeLog
+++ b/dev-db/tokyocabinet/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-db/tokyocabinet
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.49 2012/12/27 08:33:11 armin76 Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.50 2015/06/27 22:31:39 mrueg Exp $
+
+ 27 Jun 2015; Manuel Rüger <mrueg@gentoo.org> -tokyocabinet-1.4.46.ebuild,
+ -tokyocabinet-1.4.47.ebuild:
+ Remove old.
27 Dec 2012; Raúl Porcel <armin76@gentoo.org> tokyocabinet-1.4.48.ebuild:
alpha stable wrt #441146
diff --git a/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild b/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild
deleted file mode 100644
index ac6b5af6053a..000000000000
--- a/dev-db/tokyocabinet/tokyocabinet-1.4.46.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# 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.46.ebuild,v 1.7 2011/02/26 08:22:12 xarthisius Exp $
-
-EAPI="2"
-
-inherit eutils
-
-DESCRIPTION="A library of routines for managing a database"
-HOMEPAGE="http://fallabs.com/tokyocabinet/"
-SRC_URI="${HOMEPAGE}${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-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
- app-arch/bzip2"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- epatch "${FILESDIR}/fix_rpath.patch"
- epatch "${FILESDIR}/${PV}.patch"
- epatch "${FILESDIR}/remove_docinst.patch"
-}
-
-src_configure() {
- econf $(use_enable debug) --enable-off64
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "Install failed"
-
- if use examples; then
- insinto /usr/share/${PF}/example
- doins example/* || die "Install failed"
- fi
-
- if use doc; then
- insinto /usr/share/doc/${PF}
- doins -r doc/* || die "Install failed"
- fi
-}
-
-src_test() {
- emake -j1 check || die "Tests failed"
-}
diff --git a/dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild b/dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild
deleted file mode 100644
index 17da6c8105c8..000000000000
--- a/dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild,v 1.10 2012/04/25 16:22:24 jlec Exp $
-
-EAPI="2"
-
-inherit eutils autotools
-
-DESCRIPTION="A library of routines for managing a database"
-HOMEPAGE="http://fallabs.com/tokyocabinet/"
-SRC_URI="${HOMEPAGE}${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-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
- app-arch/bzip2"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- epatch "${FILESDIR}/fix_rpath.patch"
- sed -i \
- -e "/ldconfig/d" \
- -e "/DATADIR/d" Makefile.in || die
- # cflags fix - remove -O2 at end of line and -fomit-frame-pointer
- sed -i -e 's/-O3"$/"/' configure.in || die
- sed -i -e 's/-fomit-frame-pointer//' configure.in || die
- # flag only works on x86 derivatives, remove everywhere else
- if ! use x86 && ! use amd64; then sed -i -e 's/ -minline-all-stringops//' configure.in; fi
- eautoreconf
-}
-
-src_configure() {
- # we use the "fastest" target without the -O3
- econf $(use_enable debug) --enable-off64 --enable-fastest
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "Install failed"
-
- if use examples; then
- insinto /usr/share/${PF}/example
- doins example/* || die "Install failed"
- fi
-
- if use doc; then
- insinto /usr/share/doc/${PF}
- doins -r doc/* || die "Install failed"
- fi
-}
-
-src_test() {
- emake -j1 check || die "Tests failed"
-}