mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-15 22:50:54 +00:00
Done via: ``` git grep -l 'virtual/zlib ' | xargs sed -i -e 's@virtual/zlib @virtual/zlib:= @g' ``` with some manual reverts. Signed-off-by: Michał Górny <mgorny@gentoo.org>
68 lines
1.8 KiB
Bash
68 lines
1.8 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="Library for reading TIFF files with embedded tags for geographic information"
|
|
HOMEPAGE="https://trac.osgeo.org/geotiff/ https://github.com/OSGeo/libgeotiff"
|
|
SRC_URI="https://download.osgeo.org/geotiff/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0/5"
|
|
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
|
|
# TODO: add tiff when resolved: https://github.com/OSGeo/libgeotiff/issues/125
|
|
IUSE="doc jpeg zlib"
|
|
|
|
DEPEND="
|
|
>=sci-libs/proj-6.0.0:=
|
|
>=media-libs/tiff-3.9.1:=
|
|
jpeg? ( media-libs/libjpeg-turbo:= )
|
|
zlib? ( virtual/zlib:= )
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND="
|
|
>=media-libs/tiff-3.9.1
|
|
doc? ( app-text/doxygen )
|
|
"
|
|
|
|
src_configure() {
|
|
# in >1.7.3 there is BUILD_{DOC,MAN}, it should be added
|
|
local mycmakeargs=(
|
|
-DWITH_JPEG=$(usex jpeg)
|
|
-DWITH_TIFF=ON # bug 837287
|
|
-DWITH_TOWGS84=OFF # default
|
|
-DWITH_ZLIB=$(usex zlib)
|
|
)
|
|
use doc && HTML_DOCS=( docs/api/. )
|
|
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_compile() {
|
|
cmake_src_compile
|
|
|
|
if use doc; then
|
|
mkdir -p docs/api || die
|
|
cp "${FILESDIR}"/Doxyfile Doxyfile || die
|
|
doxygen -u Doxyfile || die "updating doxygen config failed"
|
|
doxygen Doxyfile || die "docs generation failed"
|
|
fi
|
|
}
|
|
|
|
src_test() {
|
|
# https://github.com/OSGeo/libgeotiff?tab=readme-ov-file#testing
|
|
# Check if still needed: https://github.com/OSGeo/libgeotiff/issues/126
|
|
pushd "${BUILD_DIR}"/bin || die
|
|
|
|
# prepare file
|
|
./makegeo || die "makegeo failed"
|
|
[[ -f "newgeo.tif" ]] || die "makegeo did not produce a file"
|
|
|
|
# test
|
|
./listgeo newgeo.tif > metadata.txt || die "listgeo metadata extraction failed"
|
|
./geotifcp -g metadata.txt newgeo.tif newer.tif > /dev/null || die
|
|
cmp new{geo,er}.tif || die "geotifcp produces different files"
|
|
popd || die
|
|
}
|