ImageMagick underwent many changes in its libraries between versions 6 and 7. Most packages in BLFS which use ImageMagick can use version 7, but for the others this page will install only the libraries, headers and general documentation (not programs, manpages, perl modules), and it will rename the unversioned pkgconfig files so that they do not overwrite the same-named files from version 7.
This package is known to build and work properly using an LFS-8.1 platform.
Download (HTTP): https://www.imagemagick.org/download/releases/ImageMagick-6.9.9-9.tar.xz
Download (FTP): ftp://ftp.imagemagick.org/pub/ImageMagick/releases/ImageMagick-6.9.9-9.tar.xz
Download MD5 sum: 182239bb642ca23f86206bf027caf536
Download size: 8.4 MB
Estimated disk space required: 180 MB, with typical dependencies (add 32 MB for the tests)
Estimated build time: 2.2 SBU - typical build (add 1.7 SBU for the tests)
The ImageMagick source releases
are updated frequently and the version shown above may no longer
be available from the download locations. You can download a more
recent version and use the existing BLFS instructions to install
it. Chances are that it will work just fine, but this has not
been tested by the BLFS team. If the package version shown above
is not available from the locations shown above, or from the
legacy/
directory at ftp.ImageMagick.org/pub/ImageMagick
you can
download it from the BLFS package server at Oregon State
University: ftp://ftp.osuosl.org/pub/blfs/conglomeration/ImageMagick/.
The optional dependencies listed below should be installed if you
need support for the specific format or the conversion tool the
dependency provides. Many of the dependencies' capabilities and
uses are described in the “MAGICK
DELEGATES” section of the README.txt
file located in the source tree.
Additional information about the dependencies can be found in the
Install-unix.txt
file located in the
source tree as well as issuing the ./configure --help command. A
summary of this information, as well as some additional notes can
be viewed on-line at http://www.imagemagick.org/script/advanced-unix-installation.php.
Cups-2.2.4, cURL-7.55.1, FFmpeg-3.3.3, fftw-3.3.6-pl2 p7zip-16.02 (LZMA), SANE-1.0.27, Wget-1.19.1, xdg-utils-1.1.2, xterm-330, Dmalloc, Electric Fence, PGP or GnuPG-2.1.23 (you'll have to do some hacking to use GnuPG), Profiles, and ufraw (for raw formats listed in http://www.imagemagick.org/www/formats.html)
JasPer-2.0.12, Little CMS-1.19 or Little CMS-2.8, libexif-0.6.21, libjpeg-turbo-1.5.2, libpng-1.6.31, librsvg-2.40.18, LibTIFF-4.0.8, libwebp-0.6.0, OpenJPEG-2.2.0, Pango-1.40.10, DjVuLibre, FlashPIX (libfpx), FLIF, JBIG-KIT, libgxps, libraqm, Liquid Rescale, OpenEXR, and RALCGM (or ralcgm)
Dejavu fonts, ghostscript-9.21, Gimp-2.8.22, Graphviz-2.40.1, Inkscape-0.92.2, Blender, corefonts, GhostPCL, Gnuplot, POV-Ray, and Radiance
Enscript-1.6.6, texlive-20170524 (or install-tl-unx) AutoTrace, GeoExpress Command Line Utilities, AKA MrSID Utilities (binary package), hp2xx, html2ps, libwmf, UniConvertor, and Utah Raster Toolkit (or URT-3.1b)
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/imagemagick
Install ImageMagick by running the following commands:
patch -Np1 -i ../ImageMagick-6.9.9-9-libs_only-1.patch && ./configure --prefix=/usr \ --sysconfdir=/etc \ --enable-hdri \ --with-modules \ --disable-static && make
Now, as the root
user:
make DOCUMENTATION_PATH=/usr/share/doc/imagemagick-6.9.9 install-libs-only
To test the installation, issue: make check. Note that the EPS, PS, and PDF tests require a working Ghostscript. One test in 'make check' needs “Helvetica” from “Ghostscript Standard Fonts”, which are optionally installed in ghostscript-9.21 - that test, and one other, might fail, but all the validation can still pass.
patch -Np1 -i ../ImageMagick-6.9.9-imagemagick6_libs_only-1.patch: Move unversioned pkgconfig files to versioned names and provide an option to only install libraries and associated files.
--enable-hdri
: Enables
building of a high dynamic range version of ImageMagick.
--with-modules
: Enables
support for dynamically loadable modules.
--disable-static
: This
switch prevents installation of static versions of the libraries.
--with-gslib
: Enables support to use
the Ghostscript shared library.
--with-rsvg
: Enables support to use the
librsvg library.
--with-autotrace
: Enables support to
use the Autotrace library.
--with-wmf
: Enables support to use the
libwmf library.
--with-gvc
: Enables support to use
GraphViz.
--with-windows-font-dir=
: This
option specifies the directory where the Windows CoreFonts are
installed.
<Some/Directory>
--with-dejavu-font-dir=
: This
option specifies the directory where the DejaVu fonts are
installed.
<Some/Directory>
The options and parameters listed above are the only ones you should have to pass to the configure script to activate all the delegate dependencies. All other dependencies will be automatically detected and utilized in the build if they are installed.
Last updated on 2017-08-24 19:07:28 -0700