blob: fa685b54dc5d4055cf7d281693b15b68b6227378 (
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
# 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.4.2.ebuild,v 1.2 2005/11/28 12:54:00 mcummings Exp $
inherit libtool flag-o-matic eutils perl-app
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="mirror://sourceforge/imagemagick/${MY_P2}.tar.bz2"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="X cups jpeg lcms mpeg png truetype tiff xml2 wmf jbig perl graphviz fpx doc"
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 )
!dev-perl/perlmagick
graphviz? ( media-gfx/graphviz )
fpx? ( media-libs/libfpx )"
RDEPEND="${DEPEND}
>=sys-devel/libtool-1.5.2-r6"
pkg_setup() {
ewarn "Please, remember that dev-perl/perlmagick is now"
ewarn "part of media-gfx/imagemagick"
}
src_unpack() {
unpack ${A}
cd ${S}
chmod +x config.sub
epatch ${FILESDIR}/imagemagick-perlmagick.patch
}
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 \
--without-perl \
$(use_with X x) \
$(use_with wmf) \
$(use_with fpx) \
$(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
if use perl ; then
cd ${S}/PerlMagick
perl-app_src_prep
perl-app_src_compile
perl-module_src_install
cd ${S}
fi
if use doc; then
dohtml -r www/*
dodoc LICENSE NEWS ChangeLog AUTHORS README.txt QuickStart.txt Install-unix.txt
fi
#bug 69705
rm -f ${D}/usr/$(get_libdir)/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
}
|