mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-26 00:45:46 +02:00
Closes: https://bugs.gentoo.org/725286 Closes: https://bugs.gentoo.org/725290 Closes: https://bugs.gentoo.org/731748 Closes: https://bugs.gentoo.org/879749 Signed-off-by: Sam James <sam@gentoo.org>
29 lines
525 B
Bash
29 lines
525 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="Software package for astronomical image processing"
|
|
HOMEPAGE="https://fitsh.net/"
|
|
SRC_URI="https://fitsh.net/download/fitsh/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-0.9.4-makefile.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
local file
|
|
for file in man/*.gz ; do
|
|
gzip -d "${file}" || die
|
|
done
|
|
|
|
eautoreconf
|
|
}
|