gentoo/dev-libs/xapian/xapian-1.4.26.ebuild
Michał Górny bd0ee727e0
dev-*/*: update for virtual/zlib
Update done using:

```
git grep -l sys-libs/zlib dev-* | xargs sed -i -e s@sys-libs/zlib@virtual/zlib@g
git diff --name-only | xargs copybump
git diff --name-only | xargs grep -l PYTHON_COMPAT | xargs gpy-impl -@dead
pkgcheck scan --commits -c SourcingCheck,VisibilityCheck --exit error
```

Followed by manual revert in dev-python/zlib-ng where it accidentally
caught sys-libs/zlib-ng dependencies.

Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-11-04 09:07:26 +01:00

68 lines
1.5 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
MY_P="${PN}-core-${PV}"
DESCRIPTION="Xapian Probabilistic Information Retrieval library"
HOMEPAGE="https://xapian.org/"
SRC_URI="https://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.xz"
S="${WORKDIR}/${MY_P}"
LICENSE="GPL-2"
SLOT="0/30" # ABI version of libxapian.so
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos ~x64-solaris"
IUSE="cpu_flags_x86_sse cpu_flags_x86_sse2 debug static-libs"
DEPEND="
virtual/zlib:=
!elibc_Darwin? ( !elibc_SunOS? ( sys-apps/util-linux ) )
elibc_SunOS? ( sys-libs/libuuid )
"
RDEPEND="${DEPEND}"
DOCS=( AUTHORS HACKING PLATFORMS README NEWS )
src_configure() {
tc-export_build_env BUILD_CC
local -x CC_FOR_BUILD="${BUILD_CC}"
# skip certain autoconf checks
local -x VALGRIND=
local -x EATMYDATA=
local -a myconf=(
--docdir="${EPREFIX}"/usr/share/doc/${PF}/html
--disable-werror
--enable-backend-chert
--enable-backend-glass
--enable-backend-inmemory
--enable-backend-remote
--program-suffix=
$(use_enable debug assertions)
$(use_enable debug log)
$(use_enable static-libs static)
)
if use cpu_flags_x86_sse2; then
myconf+=( --enable-sse=sse2 )
elif use cpu_flags_x86_sse; then
myconf+=( --enable-sse=sse )
else
myconf+=( --disable-sse )
fi
econf "${myconf[@]}"
}
src_test() {
emake -Onone check
}
src_install() {
default
find "${ED}" -name "*.la" -type f -delete || die
}