mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 23:52:59 -04:00
dev-libs/fortran-stdlib: new package live ebuild
There is currently no any releases, maybe later the versions binded to certain dates will be added. Signed-off-by: Sergey Torokhov <torokhov-s-a@yandex.ru>
This commit is contained in:
59
dev-libs/fortran-stdlib/fortran-stdlib-9999.ebuild
Normal file
59
dev-libs/fortran-stdlib/fortran-stdlib-9999.ebuild
Normal file
@@ -0,0 +1,59 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
FORTRAN_STANDARD="2003"
|
||||
PYTHON_COMPAT=( python3_{8..9} )
|
||||
|
||||
inherit cmake fortran-2 git-r3 python-any-r1 toolchain-funcs
|
||||
|
||||
EGIT_REPO_URI="https://github.com/fortran-lang/stdlib.git"
|
||||
SRC_URI=""
|
||||
|
||||
DESCRIPTION="A community driven standard library for (modern) Fortran"
|
||||
HOMEPAGE="https://stdlib.fortran-lang.org/"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
IUSE="doc test"
|
||||
RESTRICT="mirror !test? ( test )"
|
||||
|
||||
DEPEND="
|
||||
${PYTHON_DEPS}
|
||||
$(python_gen_any_dep '
|
||||
dev-util/fypp[${PYTHON_USEDEP}]
|
||||
')
|
||||
doc? (
|
||||
$(python_gen_any_dep '
|
||||
app-doc/ford[${PYTHON_USEDEP}]
|
||||
')
|
||||
)
|
||||
"
|
||||
|
||||
pkg_setup() {
|
||||
fortran-2_pkg_setup
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs+=(
|
||||
-DBUILD_SHARED_LIBS=on
|
||||
)
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
cmake_src_compile
|
||||
|
||||
if use doc ; then
|
||||
einfo "Build API documentation:"
|
||||
${EPYTHON} ford API-doc-FORD-file.md || die
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake_src_install
|
||||
|
||||
use doc && HTML_DOCS=( "${WORKDIR}/${P}"/API-doc/. )
|
||||
einstalldocs
|
||||
}
|
||||
11
dev-libs/fortran-stdlib/metadata.xml
Normal file
11
dev-libs/fortran-stdlib/metadata.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>torokhov-s-a@yandex.ru</email>
|
||||
<name>Sergey Torokhov</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">fortran-lang/stdlib</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
Reference in New Issue
Block a user