blob: c8196923cc9dc8b8be130b26236e93862264834b (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/imagemagick/imagemagick-6.2.0.4.ebuild,v 1.11 2005/04/01 05:02:51 agriffis Exp $
inherit libtool flag-o-matic eutils
MY_PN=ImageMagick
MY_P=${MY_PN}-${PV%.*}
MY_P2=${MY_PN}-${PV%.*}-${PV#*.*.*.}
S=${WORKDIR}/${MY_P}
DESCRIPTION="A collection of tools and libraries for many image formats"
HOMEPAGE="http://www.imagemagick.org/"
SRC_URI="ftp://ftp.imagemagick.org/pub/${MY_PN}/${MY_P2}.tar.gz"
LICENSE="as-is"
SLOT="0"
# PLEASE BUMP AND UPDATE KEYWORDS OF dev-perl/perlmagick TO MATCH THIS. THANK YOU.
KEYWORDS="alpha amd64 hppa ia64 mips ppc ppc64 sparc x86"
IUSE="X cups jpeg lcms mpeg png truetype tiff xml2 wmf jbig perl graphviz fpx"
DEPEND=">=sys-apps/sed-4
app-arch/bzip2
sys-libs/zlib
X? ( virtual/x11 )
cups? ( virtual/ghostscript )
lcms? ( >=media-libs/lcms-1.06 )
mpeg? ( >=media-video/mpeg2vidcodec-12 )
png? ( media-libs/libpng )
tiff? ( >=media-libs/tiff-3.5.5 )
xml2? ( >=dev-libs/libxml2-2.4.10 )
truetype? ( =media-libs/freetype-2* )
wmf? ( >=media-libs/libwmf-0.2.8 )
jbig? ( media-libs/jbigkit )
jpeg? ( >=media-libs/jpeg-6b )
perl? ( dev-lang/perl )
graphviz? ( media-gfx/graphviz )
fpx? ( media-libs/libfpx )"
RDEPEND="${DEPEND}
>=sys-devel/libtool-1.5.2-r6"
src_unpack() {
unpack ${A}
cd ${S}
chmod +x config.sub
}
src_compile() {
econf \
--with-gs-font-dir=/usr/share/fonts/default/ghostscript \
--enable-shared \
--enable-lzw \
--without-hdf \
--with-threads \
--with-bzlib \
--with-modules \
--with-zlib \
$(use_with X x) \
$(use_with wmf) \
$(use_with fpx) \
$(use_with perl) \
$(use_with jbig) \
$(use_with tiff) \
$(use_with lcms) \
$(use_with xml2 xml) \
$(use_with jpeg jp2) \
$(use_with jpeg jpeg) \
$(use_with mpeg mpeg2) \
$(use_with cups gslib) \
$(use_with graphviz dot) \
$(use_with truetype ttf) || die "econf failed"
emake || die "compile problem"
}
src_install() {
make DESTDIR=${D} install
#bug 69705
rm -f ${D}/usr/lib/libltdl*
#bug 73464 and 78740
rm -f ${D}/usr/lib/perl5/*/*/perllocal.pod
dosed "s:-I/usr/include ::" /usr/bin/Magick-config
dosed "s:-I/usr/include ::" /usr/bin/Magick++-config
}
|