From 7c0800e7ae19001dce65fb7a4202a0f31b5140bf Mon Sep 17 00:00:00 2001 From: Gluzskiy Alexandr Date: Wed, 7 Sep 2016 00:08:54 +0300 Subject: samba-scm (dependent on gentoo patches, will be broken soon) --- sys-libs/tdb/metadata.xml | 12 +++++++++ sys-libs/tdb/tdb-scm.ebuild | 66 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 78 insertions(+) create mode 100644 sys-libs/tdb/metadata.xml create mode 100644 sys-libs/tdb/tdb-scm.ebuild (limited to 'sys-libs') diff --git a/sys-libs/tdb/metadata.xml b/sys-libs/tdb/metadata.xml new file mode 100644 index 0000000..f0c4a5f --- /dev/null +++ b/sys-libs/tdb/metadata.xml @@ -0,0 +1,12 @@ + + + + + patrick@gentoo.org + Patrick Lauer + + + samba@gentoo.org + Samba + + diff --git a/sys-libs/tdb/tdb-scm.ebuild b/sys-libs/tdb/tdb-scm.ebuild new file mode 100644 index 0000000..6156378 --- /dev/null +++ b/sys-libs/tdb/tdb-scm.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE="threads" + +inherit waf-utils multilib-minimal python-single-r1 git-r3 + +DESCRIPTION="A simple database API" +HOMEPAGE="http://tdb.samba.org/" +SRC_URI="" + +EGIT_REPO_URI="git://git.samba.org/samba.git" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="" +IUSE="python" + + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="python? ( ${PYTHON_DEPS} )" +DEPEND=" + ${RDEPEND} + ${PYTHON_DEPS} + app-text/docbook-xml-dtd:4.2" + +S="${S}/lib/tdb" +WAF_BINARY="${S}/../../buildtools/bin/waf" +WAF="${S}/../../buildtools/bin/waf" + +src_prepare() { + default + python_fix_shebang . + multilib_copy_sources +} + +multilib_src_configure() { + local extra_opts=() + if ! multilib_is_native_abi || ! use python; then + extra_opts+=( --disable-python ) + fi + + waf-utils_src_configure \ + "${extra_opts[@]}" +} + +multilib_src_compile() { + # need to avoid parallel building, this looks like the sanest way with waf-utils/multiprocessing eclasses + unset MAKEOPTS + waf-utils_src_compile +} + +multilib_src_test() { + # the default src_test runs 'make test' and 'make check', letting + # the tests fail occasionally (reason: unknown) + emake check +} + +multilib_src_install() { + waf-utils_src_install +} -- cgit v1.2.3