summaryrefslogtreecommitdiffstats
path: root/ImageMagick7.spec
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2017-03-16 10:49:37 +0100
committerRemi Collet <fedora@famillecollet.com>2017-03-16 10:49:37 +0100
commit3f90569682f3b404930f307303ac4217f9194064 (patch)
treed2dbaac520b8f95578583b5443f47bb50c724ae2 /ImageMagick7.spec
parentf3aa0fe0c0e727479c23177cf5287f76381b36fe (diff)
ImageMagick7: improve build options
Diffstat (limited to 'ImageMagick7.spec')
-rw-r--r--ImageMagick7.spec43
1 files changed, 41 insertions, 2 deletions
diff --git a/ImageMagick7.spec b/ImageMagick7.spec
index 1cd2713..4f3a649 100644
--- a/ImageMagick7.spec
+++ b/ImageMagick7.spec
@@ -44,6 +44,18 @@
%global with_gslib 1
%endif
+%if 0%{?fedora} < 22 && 0%{?rhel} < 7
+%global with_raqm 0
+%else
+%global with_raqm 1
+%endif
+
+%if 0%{?fedora}
+%global with_lqr 1
+%else
+%global with_lqr 0
+%endif
+
%global with_gvc 1
%ifarch x86_64
@@ -62,7 +74,7 @@ Name: %{libname}
Name: %{libname}7
%endif
Version: %{VER}.%{Patchlevel}
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: An X application for displaying and manipulating images
Group: Applications/Multimedia
License: ImageMagick
@@ -99,6 +111,12 @@ BuildRequires: openjpeg2-devel >= 2.1.0
%if %{with_gvc}
BuildRequires: graphviz-devel >= 2.9.0
%endif
+%if %{with_raqm}
+BuildRequires: libraqm-devel
+%endif
+%if %{with_lqr}
+BuildRequires: liblqr-1-devel
+%endif
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
@@ -295,10 +313,15 @@ cp -p Magick++/demo/*.cpp Magick++/demo/*.miff Magick++/examples
--with-x \
--with-threads \
--with-magick_plus_plus \
+%if %{with_raqm}
+ --with-raqm \
+%else
+ --without-raqm \
+%endif
%if %{with_gslib}
--with-gslib \
%else
- --with-gslib=no \
+ --without-gslib \
%endif
--with-wmf \
--with-lcms \
@@ -307,12 +330,23 @@ cp -p Magick++/demo/*.cpp Magick++/demo/*.miff Magick++/examples
--with-xml \
%if %{with_webp}
--with-webp \
+%else
+ --without-webp \
%endif
%if %{with_jbig}
--with-jbig \
+%else
+ --without-jbig \
%endif
%if %{with_jp2}
--with-openjp2 \
+%else
+ --without-openjp2 \
+%endif
+%if %{with_lqr}
+ --with-lqr \
+%else
+ --without-lqr \
%endif
%if %{with_gvc}
--with-gvc \
@@ -494,6 +528,11 @@ rm -rf %{buildroot}
%changelog
+* Thu Mar 16 2017 Remi Collet <remi@remirepo.net> - 7.0.5.2-2
+- cleanup build options
+- build --with-raqm when available
+- build --with-lqr when available
+
* Sun Mar 12 2017 Remi Collet <remi@remirepo.net> - 7.0.5.2-1
- update to version 7.0.5 patch level 2