From 5b65a225b6558bc7a7af7c7cb05d4cc094386992 Mon Sep 17 00:00:00 2001 From: Lars Wendler Date: Wed, 28 Jan 2015 06:56:31 +0000 Subject: Re-added latest stable version which was accidently removed with my previous commit (Portage version: 2.2.15/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 0x981CA6FC) --- sys-libs/ldb/ChangeLog | 6 ++- sys-libs/ldb/ldb-1.1.17-r1.ebuild | 77 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 82 insertions(+), 1 deletion(-) create mode 100644 sys-libs/ldb/ldb-1.1.17-r1.ebuild (limited to 'sys-libs/ldb') diff --git a/sys-libs/ldb/ChangeLog b/sys-libs/ldb/ChangeLog index 6eecd9c326b9..09d9dd9b2226 100644 --- a/sys-libs/ldb/ChangeLog +++ b/sys-libs/ldb/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-libs/ldb # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/ldb/ChangeLog,v 1.71 2015/01/27 11:56:05 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/ldb/ChangeLog,v 1.72 2015/01/28 06:56:31 polynomial-c Exp $ + + 28 Jan 2015; Lars Wendler +ldb-1.1.17-r1.ebuild: + Re-added latest stable version which was accidently removed with my previous + commit. *ldb-1.1.20 (27 Jan 2015) diff --git a/sys-libs/ldb/ldb-1.1.17-r1.ebuild b/sys-libs/ldb/ldb-1.1.17-r1.ebuild new file mode 100644 index 000000000000..d633e7366b7a --- /dev/null +++ b/sys-libs/ldb/ldb-1.1.17-r1.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/ldb/ldb-1.1.17-r1.ebuild,v 1.7 2015/01/28 06:56:31 polynomial-c Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_{6,7} ) +PYTHON_REQ_USE="threads" + +inherit python-single-r1 waf-utils multilib + +DESCRIPTION="An LDAP-like embedded database" +HOMEPAGE="http://ldb.samba.org" +SRC_URI="http://www.samba.org/ftp/pub/${PN}/${P}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0/${PV}" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh x86 ~amd64-fbsd ~x86-fbsd" +IUSE="doc" + +RDEPEND="dev-libs/popt + >=sys-libs/talloc-2.1.0[python] + >=sys-libs/tevent-0.9.21[python(+)] + >=sys-libs/tdb-1.2.12[python] + net-nds/openldap + !!=net-fs/samba-4.0.0[ldb] + ${PYTHON_DEPS} + " + +DEPEND="dev-libs/libxslt + doc? ( app-doc/doxygen ) + virtual/pkgconfig + ${RDEPEND}" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +WAF_BINARY="${S}/buildtools/bin/waf" + +pkg_setup() { + python-single-r1_pkg_setup +} + +src_configure() { + waf-utils_src_configure \ + --disable-rpath \ + --disable-rpath-install --bundled-libraries=NONE \ + --with-modulesdir="${EPREFIX}"/usr/$(get_libdir)/samba \ + --builtin-libraries=NONE +} + +src_compile(){ + waf-utils_src_compile + use doc && doxygen Doxyfile +} + +src_test() { + WAF_MAKE=1 \ + PATH=buildtools/bin:../../../buildtools/bin:$PATH:"${S}"/bin/shared/private/ \ + LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"${S}"/bin/shared/private/:"${S}"/bin/shared waf test || die +} + +src_install() { + waf-utils_src_install + + if use doc; then + dohtml -r apidocs/html/* + doman apidocs/man/man3/*.3 + fi +} + +pkg_postinst() { + if has_version sys-auth/sssd; then + ewarn "You have sssd installed. It is known to break after ldb upgrades," + ewarn "so please try to rebuild it before reporting bugs." + ewarn "See http://bugs.gentoo.org/404281" + fi +} -- cgit v1.2.3-65-gdbad