blob: fbda689ce15c401830f83b61b430b94e64222653 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/lcms/lcms-1.14-r1.ebuild,v 1.19 2008/01/29 21:53:26 grobian Exp $
inherit libtool eutils autotools
DESCRIPTION="A lightweight, speed optimized color management engine"
HOMEPAGE="http://www.littlecms.com/"
SRC_URI="http://www.littlecms.com/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE="tiff jpeg zlib python"
DEPEND="tiff? ( media-libs/tiff )
jpeg? ( media-libs/jpeg )
zlib? ( sys-libs/zlib )
python? ( >=dev-lang/python-1.5.2 )"
RDEPEND="jpeg? ( media-libs/jpeg )
python? ( >=dev-lang/python-1.5.2 )"
src_unpack() {
unpack ${A}
cd "${S}"
# fixes bug #98547
epatch "${FILESDIR}"/lcms.i.diff
# fix build on amd64
eautoreconf || die "autoreconf failed"
elibtoolize
}
src_compile() {
econf \
--disable-dependency-tracking \
$(use_with jpeg) \
$(use_with tiff) \
$(use_with zlib) \
$(use_with python) \
|| die
emake || die "emake failed"
}
src_install() {
make \
DESTDIR="${D}" \
BINDIR="${D}"/usr/bin \
install || die "make install failed"
insinto /usr/share/lcms/profiles
doins testbed/*.icm
dodoc AUTHORS README* INSTALL NEWS doc/*
}
|