2010-11-10 18:16:28 +00:00
|
|
|
# some credit to https://github.com/maddox/magick-installer
|
2010-05-27 03:33:16 +00:00
|
|
|
require 'formula'
|
2009-08-30 15:12:46 +00:00
|
|
|
|
2009-12-11 13:14:47 +00:00
|
|
|
def ghostscript_srsly?
|
|
|
|
ARGV.include? '--with-ghostscript'
|
|
|
|
end
|
|
|
|
|
2010-05-07 18:42:24 +00:00
|
|
|
def ghostscript_fonts?
|
|
|
|
File.directory? "#{HOMEBREW_PREFIX}/share/ghostscript/fonts"
|
|
|
|
end
|
|
|
|
|
2010-05-30 20:02:15 +00:00
|
|
|
def use_wmf?
|
|
|
|
ARGV.include? '--use-wmf'
|
|
|
|
end
|
|
|
|
|
2012-03-07 19:11:42 +00:00
|
|
|
def use_rsvg?
|
|
|
|
ARGV.include? '--use-rsvg'
|
|
|
|
end
|
|
|
|
|
2010-12-31 18:13:35 +00:00
|
|
|
def use_lqr?
|
|
|
|
ARGV.include? '--use-lqr'
|
|
|
|
end
|
|
|
|
|
2010-08-30 11:33:48 +00:00
|
|
|
def disable_openmp?
|
|
|
|
ARGV.include? '--disable-openmp'
|
|
|
|
end
|
|
|
|
|
2011-07-28 23:39:05 +00:00
|
|
|
def enable_hdri?
|
2012-02-27 22:33:12 +00:00
|
|
|
ARGV.include? '--enable-hdri'
|
2011-07-28 23:39:05 +00:00
|
|
|
end
|
|
|
|
|
2010-12-20 17:11:43 +00:00
|
|
|
def magick_plus_plus?
|
2012-02-27 22:33:12 +00:00
|
|
|
ARGV.include? '--with-magick-plus-plus'
|
2010-12-20 17:11:43 +00:00
|
|
|
end
|
|
|
|
|
2011-07-28 23:39:05 +00:00
|
|
|
def use_exr?
|
|
|
|
ARGV.include? '--use-exr'
|
|
|
|
end
|
|
|
|
|
|
|
|
def quantum_depth_8?
|
2012-02-27 22:33:12 +00:00
|
|
|
ARGV.include? '--with-quantum-depth-8'
|
2011-07-28 23:39:05 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def quantum_depth_16?
|
2012-02-27 22:33:12 +00:00
|
|
|
ARGV.include? '--with-quantum-depth-16'
|
2011-07-28 23:39:05 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def quantum_depth_32?
|
2012-02-27 22:33:12 +00:00
|
|
|
ARGV.include? '--with-quantum-depth-32'
|
2011-07-28 23:39:05 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Imagemagick < Formula
|
2012-02-26 05:00:28 +00:00
|
|
|
homepage 'http://www.imagemagick.org'
|
|
|
|
|
2012-02-27 22:33:43 +00:00
|
|
|
# upstream's stable tarballs tend to disappear, so we provide our own mirror
|
|
|
|
url 'http://downloads.sf.net/project/machomebrew/mirror/ImageMagick-6.7.5-7.tar.bz2'
|
|
|
|
sha256 'fe88eb9f3ce832b0027b58a04c26871886a0721779b5c0044213018c6a6ba49f'
|
2012-02-26 05:00:28 +00:00
|
|
|
|
2012-02-27 22:41:40 +00:00
|
|
|
head 'https://www.imagemagick.org/subversion/ImageMagick/trunk',
|
|
|
|
:using => UnsafeSubversionDownloadStrategy
|
2010-09-22 04:25:33 +00:00
|
|
|
|
2012-01-23 04:32:15 +00:00
|
|
|
bottle do
|
2012-02-28 09:44:56 +00:00
|
|
|
url 'https://downloads.sf.net/project/machomebrew/Bottles/imagemagick-6.7.5-7-bottle.tar.gz'
|
|
|
|
sha1 'ad1647061a1d7bc4a0fee0d90c16005f40d97683'
|
2012-01-23 04:32:15 +00:00
|
|
|
end
|
2011-07-29 10:40:43 +00:00
|
|
|
|
2012-02-29 20:19:07 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2009-09-18 18:16:39 +00:00
|
|
|
depends_on 'jpeg'
|
2010-05-27 03:33:16 +00:00
|
|
|
|
2011-04-08 15:38:23 +00:00
|
|
|
depends_on 'ghostscript' => :recommended if ghostscript_srsly?
|
2010-05-27 03:33:16 +00:00
|
|
|
|
2009-09-18 18:16:39 +00:00
|
|
|
depends_on 'libtiff' => :optional
|
|
|
|
depends_on 'little-cms' => :optional
|
2009-10-19 22:21:36 +00:00
|
|
|
depends_on 'jasper' => :optional
|
2010-05-27 03:33:16 +00:00
|
|
|
|
2010-05-30 20:02:15 +00:00
|
|
|
depends_on 'libwmf' if use_wmf?
|
2012-03-07 19:11:42 +00:00
|
|
|
depends_on 'librsvg' if use_rsvg?
|
2010-12-31 18:13:35 +00:00
|
|
|
depends_on 'liblqr' if use_lqr?
|
2011-07-28 23:39:05 +00:00
|
|
|
depends_on 'openexr' if use_exr?
|
|
|
|
|
2009-06-28 15:56:15 +00:00
|
|
|
|
2009-10-06 11:16:43 +00:00
|
|
|
def skip_clean? path
|
|
|
|
path.extname == '.la'
|
|
|
|
end
|
2010-05-27 03:33:16 +00:00
|
|
|
|
2010-08-10 20:05:20 +00:00
|
|
|
def options
|
|
|
|
[
|
|
|
|
['--with-ghostscript', 'Compile against ghostscript (not recommended.)'],
|
2010-08-30 11:33:48 +00:00
|
|
|
['--use-wmf', 'Compile with libwmf support.'],
|
2012-03-07 19:11:42 +00:00
|
|
|
['--use-rsvg', 'Compile with librsvg support.'],
|
2010-12-31 18:13:35 +00:00
|
|
|
['--use-lqr', 'Compile with liblqr support.'],
|
2011-07-28 23:39:05 +00:00
|
|
|
['--use-exr', 'Compile with openexr support.'],
|
2010-12-20 17:11:43 +00:00
|
|
|
['--disable-openmp', 'Disable OpenMP.'],
|
2011-07-28 23:39:05 +00:00
|
|
|
['--enable-hdri', 'Compile with HDRI support enabled'],
|
|
|
|
['--with-magick-plus-plus', 'Compile with C++ interface.'],
|
|
|
|
['--with-quantum-depth-8', 'Compile with a quantum depth of 8 bit'],
|
|
|
|
['--with-quantum-depth-16', 'Compile with a quantum depth of 16 bit'],
|
|
|
|
['--with-quantum-depth-32', 'Compile with a quantum depth of 32 bit'],
|
2010-08-10 20:05:20 +00:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2010-05-27 03:33:16 +00:00
|
|
|
def install
|
2010-04-07 05:58:35 +00:00
|
|
|
ENV.x11 # Add to PATH for freetype-config on Snow Leopard
|
2010-05-27 03:33:16 +00:00
|
|
|
|
|
|
|
args = [ "--disable-osx-universal-binary",
|
|
|
|
"--without-perl", # I couldn't make this compile
|
|
|
|
"--prefix=#{prefix}",
|
2010-05-07 18:42:24 +00:00
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--enable-shared",
|
|
|
|
"--disable-static",
|
2010-12-20 17:11:43 +00:00
|
|
|
"--with-modules"]
|
2010-05-07 18:42:24 +00:00
|
|
|
|
2011-04-08 18:16:37 +00:00
|
|
|
args << "--disable-openmp" if MacOS.leopard? or disable_openmp?
|
2010-07-28 06:01:12 +00:00
|
|
|
args << "--without-gslib" unless ghostscript_srsly?
|
|
|
|
args << "--with-gs-font-dir=#{HOMEBREW_PREFIX}/share/ghostscript/fonts" \
|
2010-05-07 18:42:24 +00:00
|
|
|
unless ghostscript_srsly? or ghostscript_fonts?
|
2011-02-20 22:57:40 +00:00
|
|
|
args << "--without-magick-plus-plus" unless magick_plus_plus?
|
2011-07-28 23:39:05 +00:00
|
|
|
args << "--enable-hdri=yes" if enable_hdri?
|
|
|
|
|
|
|
|
if quantum_depth_32?
|
|
|
|
quantum_depth = 32
|
|
|
|
elsif quantum_depth_16?
|
|
|
|
quantum_depth = 16
|
|
|
|
elsif quantum_depth_8?
|
|
|
|
quantum_depth = 8
|
|
|
|
end
|
|
|
|
|
|
|
|
args << "--with-quantum-depth=#{quantum_depth}" if quantum_depth
|
2012-03-07 19:11:42 +00:00
|
|
|
args << "--with-rsvg" if use_rsvg?
|
2009-08-30 15:12:46 +00:00
|
|
|
|
2010-05-07 18:42:24 +00:00
|
|
|
# versioned stuff in main tree is pointless for us
|
|
|
|
inreplace 'configure', '${PACKAGE_NAME}-${PACKAGE_VERSION}', '${PACKAGE_NAME}'
|
2010-05-27 03:33:16 +00:00
|
|
|
system "./configure", *args
|
2009-06-28 15:56:15 +00:00
|
|
|
system "make install"
|
2009-08-08 13:08:13 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def caveats
|
2010-09-22 04:25:33 +00:00
|
|
|
unless ghostscript_fonts? or ghostscript_srsly?
|
2011-07-29 10:40:43 +00:00
|
|
|
<<-EOS.undent
|
|
|
|
Some tools will complain unless the ghostscript fonts are installed to:
|
2010-09-22 04:25:33 +00:00
|
|
|
#{HOMEBREW_PREFIX}/share/ghostscript/fonts
|
|
|
|
EOS
|
|
|
|
end
|
2010-01-16 17:01:12 +00:00
|
|
|
end
|
2010-06-30 18:27:08 +00:00
|
|
|
|
|
|
|
def test
|
2011-07-29 15:32:47 +00:00
|
|
|
system "#{bin}/identify", "/Library/Application Support/Apple/iChat Icons/Flags/Argentina.gif"
|
2010-06-30 18:27:08 +00:00
|
|
|
end
|
2009-09-26 23:09:50 +00:00
|
|
|
end
|