You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.8 KiB
76 lines
1.8 KiB
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="7"
|
|
|
|
inherit 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 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos ~x64-solaris"
|
|
IUSE="doc static-libs cpu_flags_x86_sse cpu_flags_x86_sse2 +inmemory +remote"
|
|
|
|
DEPEND="sys-apps/util-linux[${MULTILIB_USEDEP}]
|
|
sys-libs/zlib[${MULTILIB_USEDEP}]"
|
|
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 inmemory || myconf="${myconf} --disable-backend-inmemory"
|
|
use remote || myconf="${myconf} --disable-backend-remote"
|
|
|
|
myconf="${myconf} --enable-backend-glass --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_test() {
|
|
emake check VALGRIND=
|
|
}
|
|
|
|
multilib_src_install() {
|
|
emake DESTDIR="${D}" install
|
|
}
|
|
|
|
multilib_src_install_all() {
|
|
if use doc; then
|
|
rm -rf "${ED}/usr/share/doc/xapian-core-${PV}" || die
|
|
fi
|
|
|
|
dodoc AUTHORS HACKING PLATFORMS README NEWS
|
|
|
|
find "${ED}" -name "*.la" -type f -delete || die
|
|
}
|