blob: 81af58cb64c9b7d06f2506eeea9dfece5917202c (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/imagemagick/imagemagick-6.1.0.1.ebuild,v 1.7 2004/11/02 01:38:06 spyderous 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.bz2"
LICENSE="as-is"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ~ppc64 sparc x86"
IUSE="X cups jpeg lcms mpeg png truetype tiff xml2 wmf jbig perl graphviz"
DEPEND="app-arch/bzip2
sys-libs/zlib
X? ( virtual/x11 )
cups? ( virtual/ghostscript )
lcms? ( >=media-libs/lcms-1.06 )
mpeg? ( media-video/mpeg2vidcodec )
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 )
jbig? ( media-libs/jbigkit )
jpeg? ( >=media-libs/jpeg-6b )
perl? ( dev-lang/perl )
graphviz? ( media-gfx/graphviz )"
src_compile() {
local myconf=""
use X || myconf="${myconf} --with-x=no"
use cups || myconf="${myconf} --with-gslib"
use jpeg || myconf="${myconf} --without-jpeg --without-jp2"
use lcms || myconf="${myconf} --without-lcms"
use mpeg || myconf="${myconf} --without-mpeg2"
use tiff || myconf="${myconf} --without-tiff"
use xml2 || myconf="${myconf} --without-xml"
use truetype || myconf="${myconf} --without-ttf"
use wmf || myconf="${myconf} --without-wmf"
use jbig || myconf="${myconf} --without-jbig"
use perl || myconf="${myconf} --without-perl"
use graphviz || myconf="${myconf} --without-dot"
# Netscape is still used ? More people should have Mozilla
sed -i 's:netscape:mozilla:g' configure
econf \
--enable-shared \
--enable-lzw \
--with-fpx \
--without-hdf \
--with-threads \
--with-bzlib \
--without-dot \
--with-modules \
--with-zlib \
${myconf} || die
emake || die "compile problem"
}
src_install() {
make DESTDIR=${D} install
mydoc="*.txt www/*"
rm -f ${D}/usr/share/ImageMagick/*.txt
dosed "s:-I/usr/include ::" /usr/bin/Magick-config
dosed "s:-I/usr/include ::" /usr/bin/Magick++-config
}
|