diff options
author | 2017-10-05 07:36:19 -0400 | |
---|---|---|
committer | 2017-10-05 07:36:35 -0400 | |
commit | 06cd06c958440f71e8a3c8bacebbf5886e7f2dab (patch) | |
tree | df60dd38b84cc42d9e23a5e2f5f7074056195239 /dev-libs/xapian/xapian-1.2.25.ebuild | |
parent | sci-libs/gdal: stabilise 2.0.3 for amd64/x86 (diff) | |
download | gentoo-06cd06c958440f71e8a3c8bacebbf5886e7f2dab.tar.gz gentoo-06cd06c958440f71e8a3c8bacebbf5886e7f2dab.tar.bz2 gentoo-06cd06c958440f71e8a3c8bacebbf5886e7f2dab.zip |
dev-libs/xapian: version bump 1.2 branch to 1.2.25
Package-Manager: Portage-2.3.8, Repoman-2.3.1
Diffstat (limited to 'dev-libs/xapian/xapian-1.2.25.ebuild')
-rw-r--r-- | dev-libs/xapian/xapian-1.2.25.ebuild | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/dev-libs/xapian/xapian-1.2.25.ebuild b/dev-libs/xapian/xapian-1.2.25.ebuild new file mode 100644 index 000000000000..47ee6696b56d --- /dev/null +++ b/dev-libs/xapian/xapian-1.2.25.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2017 Gentoo Foundation +# 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="http://www.xapian.org/" +SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0/1.2.22" # ABI version of libxapian.so, prefixed with 1.2. +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x64-solaris" +IUSE="doc static-libs -cpu_flags_x86_sse +cpu_flags_x86_sse2 +brass +chert +inmemory" + +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 brass || myconf="${myconf} --disable-backend-brass" + use chert || myconf="${myconf} --disable-backend-chert" + use inmemory || myconf="${myconf} --disable-backend-inmemory" + + myconf="${myconf} --enable-backend-flint --enable-backend-remote" + + 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 "${ED}usr/share/doc/xapian-core-${PV}" + + dodoc AUTHORS HACKING PLATFORMS README NEWS + + prune_libtool_files --all +} + +multilib_src_test() { + emake check VALGRIND= +} |