mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-10 00:10:19 +03:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
84 lines
2.2 KiB
Bash
84 lines
2.2 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools multilib multilib-minimal preserve-libs toolchain-funcs
|
|
|
|
DESCRIPTION="A library for manipulating integer points bounded by linear constraints"
|
|
HOMEPAGE="https://libisl.sourceforge.io/"
|
|
SRC_URI="https://libisl.sourceforge.io/${P}.tar.xz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0/23"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~ppc-macos ~x64-macos ~x64-solaris"
|
|
IUSE="static-libs"
|
|
|
|
RDEPEND=">=dev-libs/gmp-5.1.3-r1:=[${MULTILIB_USEDEP}]"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="app-arch/xz-utils
|
|
virtual/pkgconfig"
|
|
|
|
DOCS=( ChangeLog AUTHORS doc/manual.pdf )
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-0.24-gdb-autoload-dir.patch
|
|
"${FILESDIR}"/${PN}-0.24-respect-flags.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
eautoreconf
|
|
}
|
|
|
|
multilib_src_configure() {
|
|
# The tests for these bindings look at the system copy of isl (bug #940627),
|
|
# not the just-built one, but they don't seem to get installed anyway.
|
|
# If they were to be installed, we'd need proper eclass wiring.
|
|
export PYTHON=:
|
|
|
|
local econf_opts=(
|
|
$(use_enable static-libs static)
|
|
|
|
# AX_PROG_CC_FOR_BUILD deficiency:
|
|
# https://wiki.gentoo.org/wiki/Project:Toolchain/use_native_symlinks
|
|
CC_FOR_BUILD="$(tc-getBUILD_CC)"
|
|
)
|
|
|
|
if ! tc-is-cross-compiler; then
|
|
# Incorrect CFLAGS handling as CFLAGS_FOR_BUILD
|
|
# even for native builds. As a result -O3 is being used
|
|
# regardless of user's CFLAGS.
|
|
econf_opts+=(
|
|
CFLAGS_FOR_BUILD="${CFLAGS}"
|
|
)
|
|
fi
|
|
|
|
ECONF_SOURCE="${S}" econf "${econf_opts[@]}"
|
|
}
|
|
|
|
multilib_src_install_all() {
|
|
einstalldocs
|
|
|
|
find "${ED}" -type f -name '*.la' -delete || die
|
|
}
|
|
|
|
pkg_preinst() {
|
|
preserve_old_lib \
|
|
/usr/$(get_libdir)/libisl$(get_libname 14) \
|
|
/usr/$(get_libdir)/libisl$(get_libname 15) \
|
|
/usr/$(get_libdir)/libisl$(get_libname 19) \
|
|
/usr/$(get_libdir)/libisl$(get_libname 21) \
|
|
/usr/$(get_libdir)/libisl$(get_libname 22)
|
|
}
|
|
|
|
pkg_postinst() {
|
|
preserve_old_lib_notify \
|
|
/usr/$(get_libdir)/libisl$(get_libname 14) \
|
|
/usr/$(get_libdir)/libisl$(get_libname 15) \
|
|
/usr/$(get_libdir)/libisl$(get_libname 19) \
|
|
/usr/$(get_libdir)/libisl$(get_libname 21) \
|
|
/usr/$(get_libdir)/libisl$(get_libname 22)
|
|
}
|