mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-08 22:25:42 +02:00
47 lines
1.3 KiB
Bash
47 lines
1.3 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit meson-multilib
|
|
|
|
DESCRIPTION="A lightweight, speed optimized color management engine"
|
|
HOMEPAGE="https://www.littlecms.com/"
|
|
SRC_URI="https://github.com/mm2/Little-CMS/releases/download/lcms${PV/_}/${PN}2-${PV/_}.tar.gz"
|
|
S="${WORKDIR}/lcms2-${PV/_}"
|
|
|
|
# GPL-3 for the threaded & fastfloat plugins, see meson_options.txt
|
|
LICENSE="GPL-3 MIT"
|
|
SLOT="2"
|
|
if [[ ${PV} != *_rc* ]] ; then
|
|
KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
|
|
fi
|
|
IUSE="doc jpeg static-libs tiff"
|
|
|
|
RDEPEND="
|
|
jpeg? ( media-libs/libjpeg-turbo:=[${MULTILIB_USEDEP}] )
|
|
tiff? ( >=media-libs/tiff-4.0.3-r6:=[${MULTILIB_USEDEP}] )
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
multilib_src_configure() {
|
|
local emesonargs=(
|
|
-Ddefault_library=$(multilib_native_usex static-libs both shared)
|
|
-Dthreaded=true
|
|
-Dfastfloat=true
|
|
$(meson_feature jpeg)
|
|
$(meson_feature tiff)
|
|
$(meson_native_true utils)
|
|
)
|
|
|
|
meson_src_configure
|
|
}
|
|
|
|
multilib_src_test() {
|
|
# fast_float_testbed on hppa -> 1458s from default timeout of 600, #913067
|
|
meson_src_test --timeout-multiplier=3
|
|
}
|
|
|
|
multilib_src_install_all() {
|
|
use doc && dodoc doc/*.pdf
|
|
}
|