blob: ab3ed9e8723a7f3ef9cbe2e3c8c72304a9841981 (
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
|
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
ADA_COMPAT=( gnat_2021 gcc_12_2_0 )
inherit ada multiprocessing
DESCRIPTION="A template engine"
HOMEPAGE="https://github.com/AdaCore/templates-parser"
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"
RESTRICT="test"
RDEPEND="${ADA_DEPS}"
DEPEND="${RDEPEND}
dev-ada/gprbuild[${ADA_USEDEP}]"
IUSE="+shared static-libs"
src_configure() {
emake PROCESSORS=$(makeopts_jobs) \
DEFAULT_LIBRARY_TYPE=$(usex shared relocatable static) \
ENABLE_STATIC=$(usex static-libs true false) \
ENABLE_SHARED=$(usex shared true false) \
prefix=/usr \
setup
}
src_compile() {
emake GPROPTS=-v
}
|