You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
2.4 KiB
107 lines
2.4 KiB
# Copyright 1999-2017 Gentoo Foundation
|
|
# Copyright 2020 The Trinity Desktop Project
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="6"
|
|
PYTHON_COMPAT=( python2_{6,7} )
|
|
|
|
inherit autotools eutils python-r1
|
|
|
|
# Don't use Gentoo mirrors
|
|
RESTRICT="mirror"
|
|
|
|
DESCRIPTION="A lightweight, speed optimized color management engine"
|
|
HOMEPAGE="http://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 ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
|
|
IUSE="jpeg python static-libs tiff zlib"
|
|
|
|
RDEPEND="tiff? ( media-libs/tiff:0 )
|
|
jpeg? ( virtual/jpeg:0 )
|
|
zlib? ( sys-libs/zlib )
|
|
python? ( ${PYTHON_DEPS} )"
|
|
DEPEND="${RDEPEND}
|
|
python? ( >=dev-lang/swig-1.3.31 )"
|
|
|
|
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-disable_static_modules.patch"
|
|
"${FILESDIR}/${P}-implicit.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
# Python bindings are built/installed manually.
|
|
sed -e "/SUBDIRS =/s/ python//" -i Makefile.am
|
|
|
|
default
|
|
|
|
eautoreconf
|
|
|
|
# run swig to regenerate lcms_wrap.cxx and lcms.py (bug #148728)
|
|
if use python; then
|
|
cd python
|
|
./swig_lcms || die "swig failed to regenerate files"
|
|
fi
|
|
}
|
|
|
|
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 python) \
|
|
$(use_with tiff) \
|
|
$(use_with zlib)
|
|
}
|
|
|
|
src_compile() {
|
|
default
|
|
|
|
if use python; then
|
|
local BUILD_DIR
|
|
BUILD_DIR=python
|
|
|
|
python_copy_sources
|
|
|
|
building() {
|
|
emake \
|
|
LCMS_PYEXECDIR="${EPREFIX}$(python_get_sitedir)" \
|
|
LCMS_PYINCLUDE="${EPREFIX}$(python_get_includedir)"
|
|
# No corresponding functions in python-r1
|
|
# LCMS_PYLIB="${EPREFIX}$(python_get_libdir)" \
|
|
# PYTHON_VERSION="$(python_get_version)"
|
|
}
|
|
python_foreach_impl run_in_build_dir building
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
DOCS=(AUTHORS README* INSTALL NEWS doc/*)
|
|
|
|
default
|
|
|
|
if use python; then
|
|
local BUILD_DIR
|
|
BUILD_DIR=python
|
|
|
|
installation() {
|
|
emake \
|
|
DESTDIR="${D}" \
|
|
LCMS_PYEXECDIR="${EPREFIX}$(python_get_sitedir)" \
|
|
install
|
|
}
|
|
python_foreach_impl run_in_build_dir installation
|
|
fi
|
|
|
|
insinto /usr/share/lcms/profiles
|
|
doins testbed/*.icm
|
|
|
|
find "${D}" -name '*.la' -exec rm -f '{}' +
|
|
}
|