diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2013-07-08 09:38:54 +0000 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2013-07-08 09:38:54 +0000 |
commit | 18c95312abf26acb7f15e62e22b5a85486bf5e5f (patch) | |
tree | 835c5b1ee89f884034f14c5408317ccf3c862e65 /sys-libs/ldb | |
parent | ppc64 stable. bug #449576 (diff) | |
download | gentoo-2-18c95312abf26acb7f15e62e22b5a85486bf5e5f.tar.gz gentoo-2-18c95312abf26acb7f15e62e22b5a85486bf5e5f.tar.bz2 gentoo-2-18c95312abf26acb7f15e62e22b5a85486bf5e5f.zip |
Version bump. Removed old
(Portage version: 2.2.0_alpha187/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Diffstat (limited to 'sys-libs/ldb')
-rw-r--r-- | sys-libs/ldb/ChangeLog | 7 | ||||
-rw-r--r-- | sys-libs/ldb/ldb-1.1.16.ebuild | 76 |
2 files changed, 82 insertions, 1 deletions
diff --git a/sys-libs/ldb/ChangeLog b/sys-libs/ldb/ChangeLog index 0f8e67f86a4f..cb892100ff4a 100644 --- a/sys-libs/ldb/ChangeLog +++ b/sys-libs/ldb/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/ldb # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/ldb/ChangeLog,v 1.51 2013/06/19 23:06:29 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/ldb/ChangeLog,v 1.52 2013/07/08 09:38:54 polynomial-c Exp $ + +*ldb-1.1.16 (08 Jul 2013) + + 08 Jul 2013; Lars Wendler <polynomial-c@gentoo.org> +ldb-1.1.16.ebuild: + Version bump. Removed old. 19 Jun 2013; Tobias Klausmann <klausman@gentoo.org> ldb-1.1.12.ebuild: Keyworded on alpha, bug #424649 diff --git a/sys-libs/ldb/ldb-1.1.16.ebuild b/sys-libs/ldb/ldb-1.1.16.ebuild new file mode 100644 index 000000000000..1f389dcb4246 --- /dev/null +++ b/sys-libs/ldb/ldb-1.1.16.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/ldb/ldb-1.1.16.ebuild,v 1.1 2013/07/08 09:38:54 polynomial-c Exp $ + +EAPI="4" +PYTHON_DEPEND="2" + +inherit python 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" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd" +IUSE="doc" + +RDEPEND="dev-libs/popt + >=sys-libs/talloc-2.0.8[python] + >=sys-libs/tevent-0.9.17 + >=sys-libs/tdb-1.2.11[python] + net-nds/openldap + !!<net-fs/samba-3.6.0[ldb] + !!>=net-fs/samba-4.0.0[ldb] + " + +DEPEND="dev-libs/libxslt + doc? ( app-doc/doxygen ) + virtual/pkgconfig + ${RDEPEND}" + +WAF_BINARY="${S}/buildtools/bin/waf" + +pkg_setup() { + python_set_active_version 2 + python_pkg_setup + python_need_rebuild +} + +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() { + python_need_rebuild + 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 +} |