blob: 6ca535b3e1a2095547fbf6e526a96eb39223c533 (
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 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
FORTRAN_STANDARD="2003"
inherit cmake fortran-2
DESCRIPTION="Jonquil: Bringing TOML blooms to JSON land"
HOMEPAGE="https://toml-f.readthedocs.io/en/latest/how-to/jonquil.html"
SRC_URI="https://github.com/toml-f/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0 MIT"
SLOT="0/2"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-libs/toml-f:0/4
"
DEPEND="
${RDEPEND}
test? ( dev-util/fortran-test-drive )
"
src_configure() {
local mycmakeargs=(
-DENABLE_TESTING=$(usex test)
)
cmake_src_configure
}
|