diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-08-29 00:28:35 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-08-29 20:39:10 +0200 |
commit | f077d8b5ed4d49aa559ab695729ff0291afd834c (patch) | |
tree | f4fa76c7a69274eaf1443751a8294e277ffd32a2 /sci-astronomy/gnuastro | |
parent | sci-astronomy/fitspng: drop 0.3.5, EAPI-6-- (diff) | |
download | gentoo-f077d8b5ed4d49aa559ab695729ff0291afd834c.tar.gz gentoo-f077d8b5ed4d49aa559ab695729ff0291afd834c.tar.bz2 gentoo-f077d8b5ed4d49aa559ab695729ff0291afd834c.zip |
sci-astronomy/gnuastro: drop 0.3, EAPI-6--
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-astronomy/gnuastro')
-rw-r--r-- | sci-astronomy/gnuastro/Manifest | 1 | ||||
-rw-r--r-- | sci-astronomy/gnuastro/gnuastro-0.3.ebuild | 52 |
2 files changed, 0 insertions, 53 deletions
diff --git a/sci-astronomy/gnuastro/Manifest b/sci-astronomy/gnuastro/Manifest index bcdb52172119..77e427454a58 100644 --- a/sci-astronomy/gnuastro/Manifest +++ b/sci-astronomy/gnuastro/Manifest @@ -1,2 +1 @@ DIST gnuastro-0.16.tar.gz 6089988 BLAKE2B be85152e6638a3462cf00555748a6be8d8c9d30b7c43332f1a16140bd22af2d7e948e1e089045b51b22db1541645dc82668cf2cb8c73abf3b07418343f1c02d9 SHA512 8848528b1a117aaebed854db2e8e4586d3b3f860f25f07a1362b7cd1ffd4f0f7ef214fc0b91b3bfc4aaf1ba9c8bbeaf9dec82979665db1c6fe3703f39354a867 -DIST gnuastro-0.3.tar.gz 4525361 BLAKE2B 432078bf330fc8e6886246e4aec767c86b9c19c0c438a3c37b1912e3433e82c68db1090351b0e2e8e4fbb8a7906aa3ac031db8abd5e8c15380e1e8c349b9ebe5 SHA512 08556fd0de196c331cfd68e4b385fbef5c130fa9c914889367f4e3637b8dc6270a2424ef92c6641ec803c355d0577cebf3ace5ad76a7024f0414bb516338beac diff --git a/sci-astronomy/gnuastro/gnuastro-0.3.ebuild b/sci-astronomy/gnuastro/gnuastro-0.3.ebuild deleted file mode 100644 index fe896068c87c..000000000000 --- a/sci-astronomy/gnuastro/gnuastro-0.3.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools - -DESCRIPTION="GNU Astronomy Utilities" -HOMEPAGE="https://www.gnu.org/software/gnuastro" -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0/1" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" - -IUSE="static-libs threads" - -# jpeg, pdf, and libgit2 are forced deps -# because they are automagically detected. - -RDEPEND=" - app-text/ghostscript-gpl - dev-libs/libgit2:= - sci-astronomy/wcslib:0= - sci-libs/cfitsio:0= - sci-libs/gsl:0= - virtual/jpeg:0= -" -DEPEND="${RDEPEND}" - -src_prepare() { - default - sed -i -e 's/-O3//' configure.ac || die - eautoreconf -} - -src_configure() { - local myeconfargs=( - --enable-bin-op-alltypes - $(use_enable static-libs static) - $(use_enable threads) - ) - econf ${myeconfargs[@]} -} - -src_install() { - default - - if ! use static-libs; then - find "${ED}" -name '*.la' -delete || die - fi -} |