summaryrefslogtreecommitdiff
path: root/dev-ada/gprconfig_kb/gprconfig_kb-24.0.0.ebuild
blob: c7156f1bd51c9ed975bf219a07e6f38a85a0424d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

ADA_COMPAT=( gnat_2021 gcc_12 gcc_13 )

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 ~x86"

REQUIRED_USE="${ADA_REQUIRED_USE}"
PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )

src_prepare() {
	default

	sed -i \
		-e "s:@VER@:${GCC_PV}: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
}