sci-libs/hdf - 4.2.16 (stuff)

Search

Install

Install this version:

emerge -a =sci-libs/hdf-4.2.16

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =sci-libs/hdf-4.2.16

Or alternatively:

emerge --autounmask-write -a =sci-libs/hdf-4.2.16

Package Information

Description:
General purpose library and format for storing scientific data
Homepage:
https://www.hdfgroup.org/hdf4.html https://github.com/HDFGroup/hdf4
License:
NCSA-HDF

Ebuild Details

Version EAPI Keywords Slot
4.2.16 8 ~amd64 ~arm ~ppc ~riscv ~x86 0
View Raw Ebuild
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

FORTRAN_NEEDED=fortran

inherit fortran-2 toolchain-funcs autotools flag-o-matic

DESCRIPTION="General purpose library and format for storing scientific data"
HOMEPAGE="https://www.hdfgroup.org/hdf4.html https://github.com/HDFGroup/hdf4"
# Upstream tag is "hdf-${MM}_${mm}_${pp}-2" with the trailing -2 being the
# patchlevel; convert dotted PV into the underscore form on the fly.
SRC_URI="https://github.com/HDFGroup/hdf4/archive/refs/tags/hdf-$(ver_rs 1- _)-2.tar.gz -> ${P}.gh.tar.gz"
S="${WORKDIR}/hdf4-hdf-$(ver_rs 1- _)-2"

LICENSE="NCSA-HDF"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~riscv ~x86"
IUSE="examples fortran szip static-libs test"
RESTRICT="!test? ( test )"
REQUIRED_USE="test? ( szip )"

RDEPEND="net-libs/libtirpc:=
	virtual/zlib
	media-libs/libjpeg-turbo:=
	szip? ( virtual/szip )"
DEPEND="${RDEPEND}
	test? ( virtual/szip )"

PATCHES=(
	"${FILESDIR}"/${PN}-4.2.16-enable-fortran-shared.patch
)

src_prepare() {
	default

	sed -i -e 's/-R/-L/g' config/commence.am || die #rpath
	eautoreconf
}

src_configure() {
	# -Werror=strict-aliasing, -Werror=lto-type-mismatch
	# https://bugs.gentoo.org/862720
	append-flags -fno-strict-aliasing
	filter-lto

	[[ $(tc-getFC) = *gfortran ]] && append-fflags -fno-range-check
	# GCC 10 workaround, bug #723014
	append-fflags $(test-flags-FC -fallow-argument-mismatch)

	econf \
		--enable-shared \
		--enable-production=gentoo \
		--disable-netcdf \
		--disable-netcdf-tools \
		$(use_enable fortran) \
		$(use_enable static-libs static) \
		$(use_with szip szlib) \
		CC="$(tc-getCC)"
}

src_install() {
	default

	if ! use static-libs; then
		find "${ED}" -name '*.la' -delete || die
	fi

	dodoc release_notes/{RELEASE,HISTORY,bugs_fixed,misc_docs}.txt

	cd "${ED}/usr" || die
	if use examples; then
		mv  share/hdf4_examples share/doc/${PF}/examples || die
		docompress -x /usr/share/doc/${PF}/examples
	else
		rm -r share/hdf4_examples || die
	fi
}

USE Flags

Manage flags for this package: euse -i <flag> -p sci-libs/hdf | euse -E <flag> -p sci-libs/hdf | euse -D <flag> -p sci-libs/hdf

Global/Standard Flags

Inherited Eclasses

Dependencies

DEPEND

net-libs/libtirpc:=
	virtual/zlib
	media-libs/libjpeg-turbo:=
	szip? ( virtual/szip )
	test? ( virtual/szip )

RDEPEND

net-libs/libtirpc:=
	virtual/zlib
	media-libs/libjpeg-turbo:=
	szip? ( virtual/szip )