blob: 5ee9fe8fc980b0b1f06a9c0a15f5109b8dc45a0d (
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-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/imagemagick/imagemagick-5.5.3.2.ebuild,v 1.18 2004/04/27 21:45:09 agriffis Exp $
inherit libtool eutils
inherit perl-module
inherit flag-o-matic
replace-flags k6-3 i586
replace-flags k6-2 i586
replace-flags k6 i586
IUSE="X cups jpeg lcms mpeg perl png truetype tiff xml2"
MY_PN=ImageMagick
MY_P=${MY_PN}-${PV%.*}-${PV#*.*.*.}
MY_P2=${MY_PN}-${PV%.*}
S=${WORKDIR}/${MY_P2}
DESCRIPTION="A collection of tools and libraries for many image formats"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
HOMEPAGE="http://www.imagemagick.org/"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 ~ppc ~sparc alpha ~mips hppa"
DEPEND=">=sys-apps/sed-4
media-libs/jbigkit
>=app-arch/bzip2-1
sys-libs/zlib
X? ( virtual/x11
>=app-text/dgs-0.5.9.1 )
cups? ( virtual/ghostscript )
jpeg? ( >=media-libs/jpeg-6b )
lcms? ( >=media-libs/lcms-1.06 )
mpeg? ( media-video/mpeg2vidcodec )
perl? ( >=dev-lang/perl-5 )
png? ( media-libs/libpng )
tiff? ( >=media-libs/tiff-3.5.5 )
xml2? ( >=dev-libs/libxml2-2.4.10 )
truetype? ( =media-libs/freetype-2* )"
src_compile() {
elibtoolize
local myconf=""
use X || myconf="${myconf} --with-x=no"
use cups || myconf="${myconf} --without-gslib"
use jpeg || myconf="${myconf} --without-jpeg --without-jp2"
use lcms || myconf="${myconf} --without-lcms"
use mpeg || myconf="${myconf} --without-mpeg2"
use perl || myconf="${myconf} --without-perl"
use tiff || myconf="${myconf} --without-tiff"
use xml2 || myconf="${myconf} --without-xml"
use truetype || myconf="${myconf} --without-ttf"
# Netscape is still used ? More people should have Mozilla
sed -i 's:netscape:mozilla:g' configure
#patch to allow building by perl
epatch ${FILESDIR}/perlpatch.diff
econf \
--enable-shared \
--enable-static \
--enable-lzw \
--with-fpx \
--with-jbig \
--without-hdf \
--with-wmf \
--with-threads \
--with-bzlib \
${myconf} || die
emake || die "compile problem"
# More perl stuff
cd PerlMagick
make clean
perl-module_src_prep
}
src_install() {
# myinst="prefix=${D}/usr PREFIX=${D}/usr"
# myinst="${myinst} MagickSharePath=${D}/usr/share/ImageMagick/"
# myinst="${myinst} pkgdocdir=${D}/usr/share/doc/${PF}/html/"
# myinst="${myinst} mandir=${D}/usr/share/man"
# myinst="${myinst} datadir=${D}/usr/share"
# myinst="${myinst} libdir=${D}/usr/lib"
# myinst="${myinst} MagickLibPath=${D}/usr/lib/${MY_P2}"
# myinst="${myinst} MagickModulesPath=${D}/usr/lib/${MY_P2}/modules/coders"
# myinst="${myinst} MagickSharePath=${D}/usr/share/${MY_PN}"
myinst="DESTDIR=${D}"
# sandbox violation hack
# cp coders/Makefile coders/Makefile.bak
# sed \
# -e "s:^pkglibdir = :pkglibdir = ${D}:" \
# -e "s:^MagickLibPath = :MagickLibPath = ${D}:" \
# -e "s:^MagickModulesPath = :MagickModulesPath = ${D}:" \
# -e "s:^MagickSharePath = :MagickSharePath = ${D}:" \
# coders/Makefile.bak coders/Makefile
mydoc="*.txt"
perl-module_src_install
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
}
|