blob: 4e78f48499d5b7a8f2dcee31e189609010ee6d89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Copyright 1999-2021 Gentoo Authors
# Copyright 2021 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
inherit autotools
DESCRIPTION="Lightweight, speed optimized color management engine"
HOMEPAGE="https://www.littlecms.com/"
SRC_URI="mirror://sourceforge/lcms/${PV}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 m68k ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="jpeg static-libs tiff zlib"
# Don't use Gentoo mirrors
RESTRICT="mirror"
RDEPEND="
jpeg? ( virtual/jpeg:0 )
tiff? ( media-libs/tiff:0 )
zlib? ( sys-libs/zlib )"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}/${P}-disable_static_modules.patch"
"${FILESDIR}/${P}-implicit.patch"
)
src_prepare() {
default
eautoreconf
}
src_configure() {
econf \
--libdir="${EPREFIX}"/usr/$(get_libdir) \
--bindir="${EPREFIX}"/usr/bin \
--disable-dependency-tracking \
$(use_enable static-libs static) \
$(use_with jpeg) \
$(use_with tiff) \
$(use_with zlib)
}
src_install() {
DOCS=(AUTHORS README* INSTALL NEWS doc/*)
default
insinto /usr/share/lcms/profiles
doins testbed/*.icm
find "${ED}" -name '*.la' -delete || die
}
|