mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-10 00:10:19 +03:00
Not a perfect fix but allows palo to compile with GCC15 until a better solution is found by patching ipl to use -std=gnu17 Agreed with Dilfridge that this is best method for now for if we switch HPPA stage3s to testing by default. Closes: https://bugs.gentoo.org/961813 Signed-off-by: Ian Jordan <immoloism@gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/43514 Closes: https://github.com/gentoo/gentoo/pull/43514 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
51 lines
1.1 KiB
Bash
51 lines
1.1 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="PALO: PArisc Linux Loader"
|
|
HOMEPAGE="https://parisc.wiki.kernel.org/ https://git.kernel.org/pub/scm/linux/kernel/git/deller/palo.git/"
|
|
if [[ ${PV} == 9999 ]] ; then
|
|
EGIT_REPO_URI="https://git.kernel.org/pub/scm/linux/kernel/git/deller/palo.git"
|
|
inherit git-r3
|
|
else
|
|
SRC_URI="https://git.kernel.org/pub/scm/linux/kernel/git/deller/${PN}.git/snapshot/${P}.tar.gz"
|
|
KEYWORDS="-* ~hppa"
|
|
fi
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-2.00-toolchain.patch
|
|
"${FILESDIR}"/${PN}-2.27-ipl-c17.patch # bug 961813
|
|
)
|
|
|
|
src_compile() {
|
|
local target
|
|
for target in '-C palo' '-C ipl' 'iplboot'; do
|
|
emake AR="$(tc-getAR)" CC="$(tc-getCC)" LD="$(tc-getLD)" ${target}
|
|
done
|
|
}
|
|
|
|
src_install() {
|
|
into /
|
|
dosbin palo/palo
|
|
|
|
insinto /usr/share/palo
|
|
doins iplboot
|
|
|
|
insinto /etc
|
|
doins "${FILESDIR}"/palo.conf
|
|
|
|
insinto /etc/kernel/postinst.d
|
|
insopts -m 0744
|
|
doins "${FILESDIR}"/99palo
|
|
|
|
doman palo.8
|
|
|
|
dodoc TODO debian/changelog README.html
|
|
}
|