diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2019-03-15 09:27:12 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2019-03-15 09:27:59 -0400 |
commit | cfc90866fd1f354b4708e3ff3771a1b8f37fe9b2 (patch) | |
tree | 8d322ab4a9b2b9feafc78d54be83b89d5e3f5394 /dev-libs/xapian/xapian-1.4.11.ebuild | |
parent | x11-misc/dmenu: Update live ebuild (diff) | |
download | gentoo-cfc90866fd1f354b4708e3ff3771a1b8f37fe9b2.tar.gz gentoo-cfc90866fd1f354b4708e3ff3771a1b8f37fe9b2.tar.bz2 gentoo-cfc90866fd1f354b4708e3ff3771a1b8f37fe9b2.zip |
dev-libs/xapian: version bump to 1.4.11, address bug #670004
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'dev-libs/xapian/xapian-1.4.11.ebuild')
-rw-r--r-- | dev-libs/xapian/xapian-1.4.11.ebuild | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/dev-libs/xapian/xapian-1.4.11.ebuild b/dev-libs/xapian/xapian-1.4.11.ebuild new file mode 100644 index 000000000000..090a5f406a5d --- /dev/null +++ b/dev-libs/xapian/xapian-1.4.11.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit eutils multilib-minimal + +MY_P="${PN}-core-${PV}" + +DESCRIPTION="Xapian Probabilistic Information Retrieval library" +HOMEPAGE="http://www.xapian.org/" +SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0/30" # ABI version of libxapian.so +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-solaris" +IUSE="doc static-libs -cpu_flags_x86_sse +cpu_flags_x86_sse2 +glass +inmemory +remote" + +DEPEND="sys-libs/zlib" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}" + +multilib_src_configure() { + local myconf="" + + if use cpu_flags_x86_sse2; then + myconf="${myconf} --enable-sse=sse2" + else + if use cpu_flags_x86_sse; then + myconf="${myconf} --enable-sse=sse" + else + myconf="${myconf} --disable-sse" + fi + fi + + myconf="${myconf} $(use_enable static-libs static)" + + use glass || myconf="${myconf} --disable-backend-glass" + use inmemory || myconf="${myconf} --disable-backend-inmemory" + use remote || myconf="${myconf} --disable-backend-remote" + + myconf="${myconf} --enable-backend-chert --program-suffix=" + + ECONF_SOURCE=${S} econf $myconf +} + +MULTILIB_WRAPPED_HEADERS=( + /usr/include/xapian/postingsource.h + /usr/include/xapian/attributes.h + /usr/include/xapian/valuesetmatchdecider.h + /usr/include/xapian/version.h + /usr/include/xapian/version.h + /usr/include/xapian/types.h + /usr/include/xapian/positioniterator.h + /usr/include/xapian/registry.h +) + +multilib_src_install() { + emake DESTDIR="${D}" install +} + +multilib_src_install_all() { + # bug #573466 + ln -sf "${D}usr/bin/xapian-config" "${D}usr/bin/xapian-config-1.3" + + use doc || rm -rf "${D}usr/share/doc/xapian-core-${PV}" + + dodoc AUTHORS HACKING PLATFORMS README NEWS + + find "${D}" -name "*.la" -type f -delete || die +} + +multilib_src_test() { + emake check VALGRIND= +} |