mgorny 14/06/12 20:49:40 Modified: ChangeLog Added: ntdb-1.0-r1.ebuild Log: Enable multilib support, required by samba-4. (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Revision Changes Path 1.5 sys-libs/ntdb/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ntdb/ChangeLog?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ntdb/ChangeLog?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ntdb/ChangeLog?r1=1.4&r2=1.5 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-libs/ntdb/ChangeLog,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- ChangeLog 18 Apr 2014 21:04:15 -0000 1.4 +++ ChangeLog 12 Jun 2014 20:49:40 -0000 1.5 @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/ntdb # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/ntdb/ChangeLog,v 1.4 2014/04/18 21:04:15 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/ntdb/ChangeLog,v 1.5 2014/06/12 20:49:40 mgorny Exp $ + +*ntdb-1.0-r1 (12 Jun 2014) + + 12 Jun 2014; Michał Górny <[email protected]> +ntdb-1.0-r1.ebuild: + Enable multilib support, required by samba-4. 18 Apr 2014; Lars Wendler <[email protected]> ntdb-1.0.ebuild: Hard block older samba versions again. @@ -16,4 +21,3 @@ 17 Apr 2014; Lars Wendler <[email protected]> +ntdb-1.0.ebuild, +metadata.xml: Initital commit. - 1.1 sys-libs/ntdb/ntdb-1.0-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ntdb/ntdb-1.0-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/ntdb/ntdb-1.0-r1.ebuild?rev=1.1&content-type=text/plain Index: ntdb-1.0-r1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-libs/ntdb/ntdb-1.0-r1.ebuild,v 1.1 2014/06/12 20:49:40 mgorny Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7} ) inherit waf-utils multilib-minimal 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} app-text/docbook-xml-dtd:4.2" WAF_BINARY="${S}/buildtools/bin/waf" src_prepare() { 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_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 }
