diff options
author | Jakov Smolic <jakov.smolic@sartura.hr> | 2021-01-24 14:48:20 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-01-24 14:48:20 +0100 |
commit | 7b071364b9b2537e541ee8c920e3c32431da14f6 (patch) | |
tree | 1159e18e7c3e65f6bba1c6bd9b49172ebe18be61 /sci-libs/libxc | |
parent | sci-libs/matio: Remove old (diff) | |
download | gentoo-7b071364b9b2537e541ee8c920e3c32431da14f6.tar.gz gentoo-7b071364b9b2537e541ee8c920e3c32431da14f6.tar.bz2 gentoo-7b071364b9b2537e541ee8c920e3c32431da14f6.zip |
sci-libs/libxc: Bump to 5.1.0
Closes: https://github.com/gentoo/gentoo/pull/19179
Suggested-by: Horea Christian <chr@chymera.eu>
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-libs/libxc')
-rw-r--r-- | sci-libs/libxc/Manifest | 1 | ||||
-rw-r--r-- | sci-libs/libxc/libxc-5.1.0.ebuild | 39 |
2 files changed, 40 insertions, 0 deletions
diff --git a/sci-libs/libxc/Manifest b/sci-libs/libxc/Manifest index f49c88cee398..33d8bf9d9f86 100644 --- a/sci-libs/libxc/Manifest +++ b/sci-libs/libxc/Manifest @@ -1,2 +1,3 @@ DIST libxc-2.2.3.tar.gz 734714 BLAKE2B c5c4c3aec3373b8b481de8ec1779366b6916899e0b77964cbde0e83904b351e009b14a3ff64e9f020640e6ebf68d78828615b8abf83a46fdf86ea16480083643 SHA512 bfcd88c1946e459227e9b1a32c513f0e68ae7a5497925ac6e692085542526ebad9fe2cd5722077c839c06dbaaceca601c7f615ee6936e638eb150a9d68278d5a DIST libxc-3.0.0.tar.gz 8388775 BLAKE2B e82a7310c583c39b6c2313668a5d3a3d5ae7bf71ad450e9ac6241d1601bf1bb429abf98787f7e0c3c252e881c381b895e277d18619b57c46f2f910d7e079941c SHA512 42173341f917c2aed6954f76885d2a9149d7212d2525becf77072b9878753c28d752b5cf6b2c79c90a88d8aa033f0aa94fa9753eb67108e9325cee6919cece52 +DIST libxc-5.1.0.tar.gz 42951890 BLAKE2B 32ce8d15547882455e01cbf9d4ee8780b97059d5b710f25b799779a5efe7326c376a53111102f3d5e0853bb89ba1f4dd9c2f219cfb4d3f91a2f6e1100f8fb47a SHA512 615b82290e87a48484f6dbe41cd8f1538ba6201b99fc97be2db64b66232fa4349fe6cebfb51566098db3cabd7aff662bb7ace43a811507bff2e93afd03d56ce4 diff --git a/sci-libs/libxc/libxc-5.1.0.ebuild b/sci-libs/libxc/libxc-5.1.0.ebuild new file mode 100644 index 000000000000..bade5f34f401 --- /dev/null +++ b/sci-libs/libxc/libxc-5.1.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools fortran-2 + +DESCRIPTION="A library of exchange-correlation functionals for use in DFT" +HOMEPAGE="https://octopus-code.org/wiki/Libxc" +SRC_URI="https://gitlab.com/libxc/libxc/-/archive/${PV}/${P}.tar.gz" + +LICENSE="MPL-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux" +IUSE="fortran test" +RESTRICT="!test? ( test )" + +pkg_setup() { + use fortran && fortran-2_pkg_setup +} + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + --enable-shared \ + --disable-static \ + $(use_enable fortran) +} + +src_install() { + default + + # no static archives + find "${ED}" -name '*.la' -type f -delete || die +} |