2009-10-22 06:27:47 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2010-05-27 03:47:03 +00:00
|
|
|
def ghostscript_srsly?
|
2012-09-02 22:22:56 +00:00
|
|
|
build.include? 'with-ghostscript'
|
2010-05-27 03:47:03 +00:00
|
|
|
end
|
|
|
|
|
2012-09-18 16:47:48 +00:00
|
|
|
def ghostscript_fonts?
|
|
|
|
File.directory? "#{HOMEBREW_PREFIX}/share/ghostscript/fonts"
|
2012-02-02 06:20:39 +00:00
|
|
|
end
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Graphicsmagick < Formula
|
2009-10-22 06:27:47 +00:00
|
|
|
homepage 'http://www.graphicsmagick.org/'
|
2012-10-16 03:47:59 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/graphicsmagick/graphicsmagick/1.3.17/GraphicsMagick-1.3.17.tar.bz2'
|
|
|
|
sha256 'cb4e29543b2912657207016ad4c7a081a96b0e4a4d84520bd74d242b3d9a6a7e'
|
2012-06-07 21:55:58 +00:00
|
|
|
|
|
|
|
head 'hg://http://graphicsmagick.hg.sourceforge.net:8000/hgroot/graphicsmagick/graphicsmagick'
|
2009-10-22 06:27:47 +00:00
|
|
|
|
2012-09-18 16:47:48 +00:00
|
|
|
option 'with-ghostscript', 'Compile against ghostscript (not recommended.)'
|
|
|
|
option 'use-tiff', 'Compile with libtiff support.'
|
|
|
|
option 'use-cms', 'Compile with little-cms support.'
|
|
|
|
option 'use-jpeg2000', 'Compile with jasper support.'
|
|
|
|
option 'use-wmf', 'Compile with libwmf support.'
|
|
|
|
option 'use-xz', 'Compile with xz support.'
|
|
|
|
option 'with-quantum-depth-8', 'Compile with a quantum depth of 8 bit'
|
|
|
|
option 'with-quantum-depth-16', 'Compile with a quantum depth of 16 bit'
|
|
|
|
option 'with-quantum-depth-32', 'Compile with a quantum depth of 32 bit'
|
|
|
|
option 'with-x', 'Compile with X11 support.'
|
|
|
|
option 'without-magick-plus-plus', "Don't build C++ library."
|
|
|
|
|
|
|
|
depends_on 'jpeg' => :recommended
|
|
|
|
depends_on :libpng
|
|
|
|
depends_on :x11 if build.include? 'with-x'
|
|
|
|
|
|
|
|
depends_on 'ghostscript' => :optional if ghostscript_srsly?
|
|
|
|
|
|
|
|
depends_on 'libtiff' => :optional if build.include? 'use-tiff'
|
|
|
|
depends_on 'little-cms2' => :optional if build.include? 'use-cms'
|
|
|
|
depends_on 'jasper' => :optional if build.include? 'use-jpeg2000'
|
|
|
|
depends_on 'libwmf' => :optional if build.include? 'use-wmf'
|
|
|
|
depends_on 'xz' => :optional if build.include? 'use-xz'
|
2010-05-27 03:47:03 +00:00
|
|
|
|
2012-09-02 22:22:56 +00:00
|
|
|
fails_with :llvm do
|
|
|
|
build 2335
|
|
|
|
end
|
2011-03-21 21:24:22 +00:00
|
|
|
|
2012-09-09 17:40:18 +00:00
|
|
|
skip_clean :la
|
2009-10-22 06:27:47 +00:00
|
|
|
|
|
|
|
def install
|
2010-05-27 03:47:03 +00:00
|
|
|
# versioned stuff in main tree is pointless for us
|
|
|
|
inreplace 'configure', '${PACKAGE_NAME}-${PACKAGE_VERSION}', '${PACKAGE_NAME}'
|
2009-10-22 06:27:47 +00:00
|
|
|
|
2010-10-30 22:17:34 +00:00
|
|
|
args = ["--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--enable-shared", "--disable-static"]
|
2012-09-02 22:22:56 +00:00
|
|
|
args << "--without-magick-plus-plus" if build.include? 'without-magick-plus-plus'
|
2012-09-05 04:04:01 +00:00
|
|
|
args << "--disable-openmp" if MacOS.version == :leopard or ENV.compiler == :clang # libgomp unavailable
|
2010-10-30 22:17:34 +00:00
|
|
|
args << "--with-gslib" if ghostscript_srsly?
|
|
|
|
args << "--with-gs-font-dir=#{HOMEBREW_PREFIX}/share/ghostscript/fonts" \
|
2010-05-27 03:47:03 +00:00
|
|
|
unless ghostscript_fonts?
|
2012-09-18 16:47:48 +00:00
|
|
|
|
|
|
|
if build.include? 'with-quantum-depth-32'
|
|
|
|
quantum_depth = 32
|
|
|
|
elsif build.include? 'with-quantum-depth-16'
|
|
|
|
quantum_depth = 16
|
|
|
|
elsif build.include? 'with-quantum-depth-8'
|
|
|
|
quantum_depth = 8
|
|
|
|
end
|
|
|
|
|
2012-02-02 06:20:39 +00:00
|
|
|
args << "--with-quantum-depth=#{quantum_depth}" if quantum_depth
|
2012-09-18 16:47:48 +00:00
|
|
|
args << "--without-x" unless build.include? 'with-x'
|
2010-05-27 03:47:03 +00:00
|
|
|
|
|
|
|
system "./configure", *args
|
2009-10-22 06:27:47 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2012-09-18 16:47:48 +00:00
|
|
|
|
|
|
|
def test
|
|
|
|
system "#{bin}/gm", "identify", \
|
|
|
|
"/System/Library/Frameworks/SecurityInterface.framework/Versions/A/Resources/Key_Large.png"
|
|
|
|
end
|
2009-10-22 06:27:47 +00:00
|
|
|
end
|