blob: d9945642d260bf6347e5cf6ea66858c3cddec2dc [file] [log] [blame]
cristy0b55dd32010-06-13 19:04:44 +00001%global VERSION @PACKAGE_VERSION@
2%global Patchlevel @PACKAGE_RELEASE@
cristy3ed852e2009-09-05 21:47:34 +00003
4Name: @PACKAGE_NAME@
5Version: %{VERSION}
6Release: %{Patchlevel}
7Summary: ImageMagick is a software suite to create, edit, and compose bitmap images. It can read, convert and write images in a variety of formats (about 200) including GIF, JPEG, JPEG-2000, PNG, PDF, PhotoCD, TIFF, and DPX. Use ImageMagick to translate, flip, mirror, rotate, scale, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bezier curves.
8Group: Applications/Multimedia
9License: http://www.imagemagick.org/script/license.php
10Url: http://www.imagemagick.org/
11Source0: ftp://ftp.imagemagick.org/pub/%{name}/%{name}-%{VERSION}-%{Patchlevel}.tar.bz2
12
13BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
14BuildRequires: bzip2-devel, freetype-devel, libjpeg-devel, libpng-devel
cristy4a478472010-06-05 01:59:10 +000015BuildRequires: libtiff-devel, giflib-devel, zlib-devel, perl-devel >= 5.8.1
cristy3ed852e2009-09-05 21:47:34 +000016BuildRequires: ghostscript-devel, djvulibre-devel
17BuildRequires: libwmf-devel, jasper-devel, libtool-ltdl-devel
18BuildRequires: libX11-devel, libXext-devel, libXt-devel
19BuildRequires: lcms-devel, libxml2-devel, librsvg2-devel
20
21%description
22ImageMagick is a software suite to create, edit, and compose bitmap images. It can read, convert and write images in a variety of formats (about 100) including DPX, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript, SVG, and TIFF. Use ImageMagick to translate, flip, mirror, rotate, scale, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves.
23
24The functionality of ImageMagick is typically utilized from the command line or you can use the features from programs written in your favorite programming language. Choose from these interfaces: G2F (Ada), MagickCore (C), MagickWand (C), ChMagick (Ch), Magick++ (C++), JMagick (Java), L-Magick (Lisp), nMagick (Neko/haXe), PascalMagick (Pascal), PerlMagick (Perl), MagickWand for PHP (PHP), PythonMagick (Python), RMagick (Ruby), or TclMagick (Tcl/TK). With a language interface, use ImageMagick to modify or create images automagically and dynamically.
25
cristy4a478472010-06-05 01:59:10 +000026ImageMagick is free software delivered as a ready-to-run binary distribution or as source code that you may freely use, copy, modify, and distribute in both open and proprietary applications. It is distributed under an Apache 2.0-style license, approved by the OSI.
27
28The ImageMagick development process ensures a stable API and ABI. Before each ImageMagick release, we perform a comprehensive security assessment that includes memory and thread error detection to help prevent exploits.ImageMagick is free software delivered as a ready-to-run binary distribution or as source code that you may freely use, copy, modify, and distribute in both open and proprietary applications. It is distributed under an Apache 2.0-style license, approved by the OSI.
29
30The ImageMagick development process ensures a stable API and ABI. Before each ImageMagick release, we perform a comprehensive security assessment that includes memory and thread error detection to help prevent exploits.
cristy3ed852e2009-09-05 21:47:34 +000031
32%package devel
33Summary: Library links and header files for ImageMagick application development
34Group: Development/Libraries
35Requires: %{name} = %{version}-%{release}
36Requires: libX11-devel, libXext-devel, libXt-devel
37Requires: ghostscript-devel
38Requires: bzip2-devel
39Requires: freetype-devel
40Requires: libtiff-devel
41Requires: libjpeg-devel
42Requires: lcms-devel
43Requires: jasper-devel
44Requires: pkgconfig
45
46%description devel
47ImageMagick-devel contains the library links and header files you'll
48need to develop ImageMagick applications. ImageMagick is an image
49manipulation program.
50
51If you want to create applications that will use ImageMagick code or
52APIs, you need to install ImageMagick-devel as well as ImageMagick.
53You do not need to install it if you just want to use ImageMagick,
54however.
55
56%package doc
57Summary: ImageMagick HTML documentation
58Group: Documentation
59
60%description doc
61ImageMagick documentation, this package contains usage (for the
62commandline tools) and API (for the libraries) documentation in HTML format.
63Note this documentation can also be found on the ImageMagick website:
64http://www.imagemagick.org/
65
66
67%package perl
68Summary: ImageMagick perl bindings
69Group: System Environment/Libraries
70Requires: %{name} = %{version}-%{release}
71Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
72
73%description perl
74Perl bindings to ImageMagick.
75
76Install ImageMagick-perl if you want to use any perl scripts that use
77ImageMagick.
78
79%package c++
80Summary: ImageMagick Magick++ library (C++ bindings)
81Group: System Environment/Libraries
82Requires: %{name} = %{version}-%{release}
83
84%description c++
85This package contains the Magick++ library, a C++ binding to the ImageMagick
86graphics manipulation library.
87
88Install ImageMagick-c++ if you want to use any applications that use Magick++.
89
90
91%package c++-devel
92Summary: C++ bindings for the ImageMagick library
93Group: Development/Libraries
94Requires: %{name}-c++ = %{version}-%{release}
95Requires: %{name}-devel = %{version}-%{release}
96
97%description c++-devel
98ImageMagick-devel contains the static libraries and header files you'll
99need to develop ImageMagick applications using the Magick++ C++ bindings.
100ImageMagick is an image manipulation program.
101
102If you want to create applications that will use Magick++ code
103or APIs, you'll need to install ImageMagick-c++-devel, ImageMagick-devel and
104ImageMagick.
105
106You don't need to install it if you just want to use ImageMagick, or if you
107want to develop/compile applications using the ImageMagick C interface,
108however.
109
110
111%prep
112%setup -q -n %{name}-%{VERSION}-%{Patchlevel}
113sed -i 's/libltdl.la/libltdl.so/g' configure
cristye99fd5c2009-12-02 01:54:25 +0000114iconv -f ISO-8859-1 -t UTF-8 README.txt > README.txt.tmp
cristy3ed852e2009-09-05 21:47:34 +0000115touch -r README.txt README.txt.tmp
116mv README.txt.tmp README.txt
117# for %doc
118mkdir Magick++/examples
119cp -p Magick++/demo/*.cpp Magick++/demo/*.miff Magick++/examples
120
121%build
122%configure --enable-shared \
123 --disable-static \
124 --with-modules \
125 --with-perl \
126 --with-x \
127 --with-threads \
128 --with-magick_plus_plus \
129 --with-gslib \
130 --with-wmf \
131 --with-lcms \
132 --with-rsvg \
133 --with-xml \
134 --with-perl-options="INSTALLDIRS=vendor %{?perl_prefix} CC='%__cc -L$PWD/magick/.libs' LDDLFLAGS='-shared -L$PWD/magick/.libs'" \
135 --without-dps \
136 --without-included-ltdl --with-ltdl-include=%{_includedir} \
137 --with-ltdl-lib=%{_libdir}
138# Disable rpath
139sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
140sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
141make
142
143
144%install
145rm -rf $RPM_BUILD_ROOT
146
147make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
148cp -a www/source $RPM_BUILD_ROOT%{_datadir}/doc/%{name}-%{VERSION}
149rm $RPM_BUILD_ROOT%{_libdir}/*.la
150
151# fix weird perl Magick.so permissions
cristyb6c017e2010-01-13 19:11:39 +0000152chmod 755 $RPM_BUILD_ROOT%{perl_vendorarch}/auto/Image/Magick/Magick.so
cristy3ed852e2009-09-05 21:47:34 +0000153
154# perlmagick: fix perl path of demo files
155%{__perl} -MExtUtils::MakeMaker -e 'MY->fixin(@ARGV)' PerlMagick/demo/*.pl
156
157# perlmagick: cleanup various perl tempfiles from the build which get installed
158find $RPM_BUILD_ROOT -name "*.bs" |xargs rm -f
159find $RPM_BUILD_ROOT -name ".packlist" |xargs rm -f
160find $RPM_BUILD_ROOT -name "perllocal.pod" |xargs rm -f
161
162# perlmagick: build files list
163echo "%defattr(-,root,root,-)" > perl-pkg-files
164find $RPM_BUILD_ROOT/%{_libdir}/perl* -type f -print \
165 | sed "s@^$RPM_BUILD_ROOT@@g" > perl-pkg-files
166find $RPM_BUILD_ROOT%{perl_vendorarch} -type d -print \
167 | sed "s@^$RPM_BUILD_ROOT@%dir @g" \
168 | grep -v '^%dir %{perl_vendorarch}$' \
169 | grep -v '/auto$' >> perl-pkg-files
170if [ -z perl-pkg-files ] ; then
171 echo "ERROR: EMPTY FILE LIST"
172 exit -1
173fi
174
175# These don't belong here, we include them in %%doc
176rm $RPM_BUILD_ROOT%{_datadir}/%{name}-%{VERSION}/{ChangeLog,LICENSE,NEWS.txt}
177
178# fix multilib issues
179%ifarch x86_64 s390x ia64 ppc64 alpha sparc64
180%define wordsize 64
181%else
182%define wordsize 32
183%endif
184
185mv $RPM_BUILD_ROOT%{_includedir}/%{name}/magick/magick-config.h \
186 $RPM_BUILD_ROOT%{_includedir}/%{name}/magick/magick-config-%{wordsize}.h
187
188cat >$RPM_BUILD_ROOT%{_includedir}/%{name}/magick/magick-config.h <<EOF
189#ifndef IMAGEMAGICK_MULTILIB
190#define IMAGEMAGICK_MULTILIB
191
192#include <bits/wordsize.h>
193
194#if __WORDSIZE == 32
195# include "magick-config-32.h"
196#elif __WORDSIZE == 64
197# include "magick-config-64.h"
198#else
199# error "unexpected value for __WORDSIZE macro"
200#endif
201
202#endif
203EOF
204
205
206%clean
207rm -rf $RPM_BUILD_ROOT
208
209
210%post -p /sbin/ldconfig
211
212%post c++ -p /sbin/ldconfig
213
214%postun -p /sbin/ldconfig
215
216%postun c++ -p /sbin/ldconfig
217
218
219%files
220%defattr(-,root,root,-)
221%doc QuickStart.txt ChangeLog Platforms.txt
222%doc README.txt LICENSE NOTICE AUTHORS.txt NEWS.txt
223%{_libdir}/libMagickCore.so.*
224%{_libdir}/libMagickWand.so.*
225%{_bindir}/[a-z]*
226%{_libdir}/%{name}-%{VERSION}
227%{_datadir}/%{name}-%{VERSION}
228%{_mandir}/man[145]/[a-z]*
229%{_mandir}/man1/%{name}.*
230
231
232%files devel
233%defattr(-,root,root,-)
234%{_bindir}/MagickCore-config
235%{_bindir}/Magick-config
236%{_bindir}/MagickWand-config
237%{_bindir}/Wand-config
238%{_libdir}/libMagickCore.so
239%{_libdir}/libMagickWand.so
240%{_libdir}/pkgconfig/MagickCore.pc
241%{_libdir}/pkgconfig/ImageMagick.pc
242%{_libdir}/pkgconfig/MagickWand.pc
243%{_libdir}/pkgconfig/Wand.pc
244%dir %{_includedir}/%{name}
245%{_includedir}/%{name}/magick
246%{_includedir}/%{name}/wand
247%{_mandir}/man1/Magick-config.*
248%{_mandir}/man1/MagickCore-config.*
249%{_mandir}/man1/Wand-config.*
250%{_mandir}/man1/MagickWand-config.*
251
252%files doc
253%defattr(-,root,root,-)
254%doc %{_datadir}/doc/%{name}-%{VERSION}
255
256%files c++
257%defattr(-,root,root,-)
258%doc Magick++/AUTHORS Magick++/ChangeLog Magick++/NEWS Magick++/README
259%doc www/Magick++/COPYING
260%{_libdir}/libMagick++.so.*
261
262%files c++-devel
263%defattr(-,root,root,-)
264%doc Magick++/examples
265%{_bindir}/Magick++-config
266%{_includedir}/%{name}/Magick++
267%{_includedir}/%{name}/Magick++.h
268%{_libdir}/libMagick++.so
269%{_libdir}/pkgconfig/Magick++.pc
270%{_libdir}/pkgconfig/ImageMagick++.pc
271%{_mandir}/man1/Magick++-config.*
272
273%files perl -f perl-pkg-files
274%defattr(-,root,root,-)
275%{_mandir}/man3/*
276%doc PerlMagick/demo/ PerlMagick/Changelog PerlMagick/README.txt
277
278
279%changelog
280* Sun May 01 2005 Cristy <cristy@mystic.es.dupont.com> 1.0-0
281* Port of Redhat's RPM script to support ImageMagick.