gentoo-ebuilds/dev-ada/gprconfig_kb/gprconfig_kb-25.0.0-r3.ebuild
Alfredo Tupone f459627eb7
dev-ada/gprconfig_kb: support gcc_15
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
2025-05-01 23:18:40 +02:00

38 lines
701 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
ADA_COMPAT=( gcc_{12..15} )
inherit ada
DESCRIPTION="GPR configuration knowledge base"
HOMEPAGE="https://www.adacore.com/"
SRC_URI="https://github.com/AdaCore/${PN}/archive/refs/tags/v${PV}.tar.gz
-> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ~arm64 x86"
REQUIRED_USE="${ADA_REQUIRED_USE}"
PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
src_prepare() {
default
sed -i \
-e "s:@VER@:${GCCPV}:g" \
db/compilers.xml \
db/gnat.xml \
db/c.xml \
db/linker.xml \
|| die
}
src_install() {
insinto /usr/share/gprconfig
doins db/*.xml
doins db/*.ent
einstalldocs
}