diff options
author | orbea <orbea@riseup.net> | 2022-05-08 09:58:20 -0700 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-05-09 19:24:18 +0000 |
commit | e80a8b26f86d40e20fe0b662271ee369cf9e9df2 (patch) | |
tree | cb793c8790239b50f9ccf5b11fc5d0002c95a9b3 /sci-geosciences/congen/congen-1.7.ebuild | |
parent | dev-util/maxcso: fix IncorrectCopyright (diff) | |
download | gentoo-e80a8b26f86d40e20fe0b662271ee369cf9e9df2.tar.gz gentoo-e80a8b26f86d40e20fe0b662271ee369cf9e9df2.tar.bz2 gentoo-e80a8b26f86d40e20fe0b662271ee369cf9e9df2.zip |
sci-geosciences/congen: Updated for version 1.7
Bug: https://bugs.gentoo.org/789615
Signed-off-by: orbea <orbea@riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/25389
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sci-geosciences/congen/congen-1.7.ebuild')
-rw-r--r-- | sci-geosciences/congen/congen-1.7.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/sci-geosciences/congen/congen-1.7.ebuild b/sci-geosciences/congen/congen-1.7.ebuild new file mode 100644 index 000000000000..2059b79c6641 --- /dev/null +++ b/sci-geosciences/congen/congen-1.7.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Calculate speeds, equilibrium arguments, node factors of tidal constituents" +HOMEPAGE="http://www.flaterco.com/xtide/files.html" +SRC_URI="https://flaterco.com/files/xtide/${P}-r2.tar.xz -> ${P}.tar.xz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static-libs" + +DEPEND=">=sci-geosciences/libtcd-2.2.3" +RDEPEND="${DEPEND}" + +src_configure() { + econf \ + $(use_enable static-libs static) +} + +src_install() { + default + + if ! use static-libs; then + find "${ED}" -name '*.la' -delete || die + fi +} |