mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-22 23:19:14 +02:00
x11 backend with x11-libs/motif is removed
dev-libs/libltdl is no longer required since 1.4.0
bugfix for x23
restore lto (bug 854531 closed since 1.4.0)
remove the blocker against games-sports/ski, treecleaned
(17ed872
)
masked for musl: it requires termio.h from glibc
Bug: https://bugs.gentoo.org/944241
Signed-off-by: Nicolas PARLANT <nicolas.parlant@parhuet.fr>
Part-of: https://github.com/gentoo/gentoo/pull/42929
Closes: https://github.com/gentoo/gentoo/pull/42929
Signed-off-by: Sam James <sam@gentoo.org>
39 lines
762 B
Bash
39 lines
762 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit eapi9-ver
|
|
|
|
DESCRIPTION="ia64 instruction set simulator"
|
|
HOMEPAGE="https://github.com/trofi/ski"
|
|
SRC_URI="https://github.com/trofi/ski/releases/download/v${PV}/${P}.tar.xz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="debug"
|
|
|
|
RDEPEND="
|
|
sys-libs/ncurses:=
|
|
virtual/libelf:=
|
|
debug? ( sys-libs/binutils-libs:= )
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
dev-util/gperf
|
|
"
|
|
|
|
src_configure() {
|
|
local myeconfargs=(
|
|
$(use_with debug bfd)
|
|
)
|
|
|
|
econf "${myeconfargs[@]}"
|
|
}
|
|
|
|
pkg_postinst() {
|
|
if ver_replacing -le 1.4.0; then
|
|
ewarn "Since version 1.5.0 ${PN} no longer installs xski binary because x11-backend with x11-libs/motif has been removed."
|
|
fi
|
|
}
|