diff options
author | Alessandro Barbieri <lssndrbarbieri@gmail.com> | 2022-06-30 04:28:05 +0200 |
---|---|---|
committer | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2022-07-03 11:01:46 +0200 |
commit | f230930432261e86b1379a475260922fbce3eec9 (patch) | |
tree | fb5722302bc9ff9fa4986cddb2738f990e08165f /sci-libs | |
parent | sci-libs/cfitsio: conflict with dev-util/smem (diff) | |
download | gentoo-f230930432261e86b1379a475260922fbce3eec9.tar.gz gentoo-f230930432261e86b1379a475260922fbce3eec9.tar.bz2 gentoo-f230930432261e86b1379a475260922fbce3eec9.zip |
sci-libs/cfitsio: remove smem binary
Closes: https://bugs.gentoo.org/855191
Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/26159
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/cfitsio/cfitsio-4.1.0-r1.ebuild | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/sci-libs/cfitsio/cfitsio-4.1.0-r1.ebuild b/sci-libs/cfitsio/cfitsio-4.1.0-r1.ebuild new file mode 100644 index 000000000000..e3858e96e7cc --- /dev/null +++ b/sci-libs/cfitsio/cfitsio-4.1.0-r1.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit fortran-2 multilib-minimal + +DESCRIPTION="C and Fortran library for manipulating FITS files" +HOMEPAGE="https://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html" +SRC_URI="https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0/9" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris" +IUSE="bzip2 curl threads tools cpu_flags_x86_sse2 cpu_flags_x86_ssse3" + +BDEPEND=" + sys-devel/bison + sys-devel/flex +" +RDEPEND=" + sys-libs/zlib[${MULTILIB_USEDEP}] + bzip2? ( app-arch/bzip2[${MULTILIB_USEDEP}] ) + curl? ( net-misc/curl[${MULTILIB_USEDEP}] ) +" +# Bug #803350 +DEPEND="${RDEPEND} + <dev-lang/cfortran-20110621 +" + +PATCHES=( + "${FILESDIR}/${PN}-3.490-ldflags.patch" + "${FILESDIR}/${P}-system-zlib.patch" + "${FILESDIR}/${P}-pkgconfig.patch" +) + +pkg_setup() { + fortran-2_pkg_setup +} + +src_prepare() { + default + + # Avoid internal cfortran + mv cfortran.h cfortran.h.disabled || die + ln -s "${EPREFIX}"/usr/include/cfortran.h . || die + + multilib_copy_sources +} + +multilib_src_configure() { + local myeconfargs=( + $(use_with bzip2) + $(use_enable curl) + $(use_enable threads reentrant) + $(use_enable cpu_flags_x86_sse2 sse2) + $(use_enable cpu_flags_x86_ssse3 ssse3) + ) + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" +} + +multilib_src_compile() { + default + + if use tools ; then + emake utils + fi +} + +multilib_src_install_all() { + dodoc README docs/changes.txt + + dodoc docs/{quick,cfitsio,fpackguide}.pdf + dodoc docs/fitsio.pdf + + docinto examples + dodoc cookbook.c testprog.c speed.c smem.c + dodoc cookbook.f testf77.f + + # https://bugs.gentoo.org/855191 + if use tools; then + rm "${ED}/usr/bin/smem" || die + fi + + # Remove static libs + find "${ED}" -name '*.a' -delete || die +} |