blob: 1adc62d8f11ffbda3f6124947f7198fe35a638c7 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/vips/vips-7.18.2.ebuild,v 1.4 2010/03/06 13:26:56 ssuominen Exp $
EAPI=2
inherit versionator
# TODO: Add video4linux support.
# matio? ( sci-libs/matio ) - in sunrise
# cimg support?
DESCRIPTION="VIPS Image Processing Library"
SRC_URI="http://www.vips.ecs.soton.ac.uk/supported/$(get_version_component_range 1-2)/${P}.tar.gz"
HOMEPAGE="http://vips.sourceforge.net"
LICENSE="LGPL-2.1"
SLOT="1"
KEYWORDS="~amd64 ~ppc x86"
IUSE="exif fftw imagemagick jpeg lcms openexr png python threads tiff"
RDEPEND="
>=dev-libs/glib-2.6:2
>=dev-libs/liboil-0.3
dev-libs/libxml2
sys-libs/zlib
>=x11-libs/pango-1.8
fftw? ( sci-libs/fftw:3.0 )
imagemagick? ( >=media-gfx/imagemagick-5.0.0 )
lcms? ( >=media-libs/lcms-1.0.8 )
openexr? ( >=media-libs/openexr-1.2.2 )
python? ( >=dev-lang/python-2.2 )
exif? ( >=media-libs/libexif-0.6 )
tiff? ( media-libs/tiff )
jpeg? ( media-libs/jpeg )
png? ( media-libs/libpng )"
DEPEND="${RDEPEND}"
src_configure() {
econf \
$(use_with fftw fftw3) \
$(use_with lcms) \
$(use_with openexr OpenEXR) \
$(use_with exif libexif) \
$(use_enable threads) \
$(use_with imagemagick magick) \
$(use_with png) \
$(use_with tiff) \
$(use_with jpeg) \
$(use_with python)
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog NEWS README THANKS TODO || die
}
|