From 38423c67c8a23f6a1bc42038193182e2da3116eb Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 25 Apr 2020 11:37:10 +0100 Subject: gentoo resync : 25.04.2020 --- dev-libs/xapian/xapian-1.4.7.ebuild | 75 ------------------------------------- 1 file changed, 75 deletions(-) delete mode 100644 dev-libs/xapian/xapian-1.4.7.ebuild (limited to 'dev-libs/xapian/xapian-1.4.7.ebuild') diff --git a/dev-libs/xapian/xapian-1.4.7.ebuild b/dev-libs/xapian/xapian-1.4.7.ebuild deleted file mode 100644 index b5da2d4f5cb3..000000000000 --- a/dev-libs/xapian/xapian-1.4.7.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit eutils multilib-minimal - -MY_P="${PN}-core-${PV}" - -DESCRIPTION="Xapian Probabilistic Information Retrieval library" -HOMEPAGE="https://www.xapian.org/" -SRC_URI="https://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 +chert +inmemory" - -DEPEND="sys-libs/zlib" -RDEPEND="${DEPEND}" - -REQUIRED_USE="inmemory? ( chert )" - -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 chert || myconf="${myconf} --disable-backend-chert" - use inmemory || myconf="${myconf} --disable-backend-inmemory" - - myconf="${myconf} --enable-backend-remote --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() { - 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= -} -- cgit v1.2.3