summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2015-03-08 11:09:35 +0000
committerLars Wendler <polynomial-c@gentoo.org>2015-03-08 11:09:35 +0000
commit5cb2e16cfb936a62663f42c179428d88fd53e364 (patch)
tree40c730ffcd6d23ede8cddeac62677ed44aed3436 /sys-libs
parentVersion bump (diff)
downloadgentoo-2-5cb2e16cfb936a62663f42c179428d88fd53e364.tar.gz
gentoo-2-5cb2e16cfb936a62663f42c179428d88fd53e364.tar.bz2
gentoo-2-5cb2e16cfb936a62663f42c179428d88fd53e364.zip
Removed non-multilib ebuild
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Diffstat (limited to 'sys-libs')
-rw-r--r--sys-libs/ntdb/ChangeLog5
-rw-r--r--sys-libs/ntdb/ntdb-1.0.ebuild42
2 files changed, 4 insertions, 43 deletions
diff --git a/sys-libs/ntdb/ChangeLog b/sys-libs/ntdb/ChangeLog
index 8147123f3f11..4ad495fc1da6 100644
--- a/sys-libs/ntdb/ChangeLog
+++ b/sys-libs/ntdb/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-libs/ntdb
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/ntdb/ChangeLog,v 1.7 2015/03/03 10:06:34 dlan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/ntdb/ChangeLog,v 1.8 2015/03/08 11:09:35 polynomial-c Exp $
+
+ 08 Mar 2015; Lars Wendler <polynomial-c@gentoo.org> -ntdb-1.0.ebuild:
+ Removed non-multilib ebuild.
03 Mar 2015; Yixun Lan <dlan@gentoo.org> ntdb-1.0-r1.ebuild:
add arm64 support, tested on A53 board
diff --git a/sys-libs/ntdb/ntdb-1.0.ebuild b/sys-libs/ntdb/ntdb-1.0.ebuild
deleted file mode 100644
index 24cfabad4761..000000000000
--- a/sys-libs/ntdb/ntdb-1.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/ntdb/ntdb-1.0.ebuild,v 1.5 2015/01/03 13:14:16 mgorny Exp $
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_6,2_7} )
-PYTHON_REQ_USE="threads(+)"
-
-inherit waf-utils python-single-r1
-
-DESCRIPTION="A not-so trivial keyword/data database system"
-HOMEPAGE="http://tdb.samba.org/"
-SRC_URI="http://samba.org/ftp/tdb/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~hppa ~x86"
-IUSE="python"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="python? ( ${PYTHON_DEPS} )"
-DEPEND="!!<net-fs/samba-4.1.7
- ${RDEPEND}
- ${PYTHON_DEPS}
- app-text/docbook-xml-dtd:4.2"
-
-WAF_BINARY="${S}/buildtools/bin/waf"
-
-src_configure() {
- local extra_opts=""
- use python || extra_opts+=" --disable-python"
- waf-utils_src_configure \
- ${extra_opts}
-}
-
-src_test() {
- # the default src_test runs 'make test' and 'make check', letting
- # the tests fail occasionally (reason: unknown)
- emake check
-}