summaryrefslogtreecommitdiff
path: root/sci-astronomy/pal/pal-0.9.7.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'sci-astronomy/pal/pal-0.9.7.ebuild')
-rw-r--r--sci-astronomy/pal/pal-0.9.7.ebuild34
1 files changed, 0 insertions, 34 deletions
diff --git a/sci-astronomy/pal/pal-0.9.7.ebuild b/sci-astronomy/pal/pal-0.9.7.ebuild
deleted file mode 100644
index 3ab899f976be..000000000000
--- a/sci-astronomy/pal/pal-0.9.7.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Positional Astronomy Library"
-HOMEPAGE="https://github.com/Starlink/pal"
-SRC_URI="https://github.com/Starlink/${PN}/releases/download/v${PV}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc static-libs"
-RDEPEND="sci-astronomy/erfa:="
-DEPEND="${RDEPEND}"
-
-src_configure() {
- econf --without-starlink \
- --without-stardocs \
- --with-erfa \
- $(use_enable static-libs static)
-}
-
-src_install() {
- default
-
- # remove cruft from non-fhs compliant
- rm -r "${ED}"usr/share/pal || die
- rm -r "${ED}"usr/{docs,manifests,news} || die
-
- if ! use static-libs; then
- find "${ED}" -name '*.la' -delete || die
- fi
-}