2009-10-22 06:27:47 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2010-05-27 03:47:03 +00:00
|
|
|
def ghostscript_fonts?
|
|
|
|
File.directory? "#{HOMEBREW_PREFIX}/share/ghostscript/fonts"
|
|
|
|
end
|
|
|
|
|
|
|
|
def ghostscript_srsly?
|
2012-09-02 22:22:56 +00:00
|
|
|
build.include? 'with-ghostscript'
|
2010-05-27 03:47:03 +00:00
|
|
|
end
|
|
|
|
|
2011-02-22 04:26:31 +00:00
|
|
|
def use_wmf?
|
2012-09-02 22:22:56 +00:00
|
|
|
build.include? 'use-wmf'
|
2011-02-22 04:26:31 +00:00
|
|
|
end
|
|
|
|
|
2012-02-02 06:20:39 +00:00
|
|
|
def quantum_depth
|
2012-09-02 22:22:56 +00:00
|
|
|
if build.include? 'with-quantum-depth-32'
|
2012-02-02 06:20:39 +00:00
|
|
|
32
|
2012-09-02 22:22:56 +00:00
|
|
|
elsif build.include? 'with-quantum-depth-16'
|
2012-02-02 06:20:39 +00:00
|
|
|
16
|
|
|
|
end
|
|
|
|
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-06-07 21:55:58 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/graphicsmagick/graphicsmagick/1.3.15/GraphicsMagick-1.3.15.tar.bz2'
|
|
|
|
sha256 'fd79168feaca5a2d230ce294541bb3655fd0fb6f21aec7c29dd7f00db14109ed'
|
|
|
|
|
|
|
|
head 'hg://http://graphicsmagick.hg.sourceforge.net:8000/hgroot/graphicsmagick/graphicsmagick'
|
2009-10-22 06:27:47 +00:00
|
|
|
|
2012-09-16 16:35:55 +00:00
|
|
|
depends_on :x11 unless build.include? 'without-x'
|
2010-05-27 03:47:03 +00:00
|
|
|
depends_on 'jpeg'
|
2011-02-22 04:26:31 +00:00
|
|
|
depends_on 'libwmf' if use_wmf?
|
2010-05-27 03:47:03 +00:00
|
|
|
depends_on 'libtiff' => :optional
|
2012-09-04 16:55:31 +00:00
|
|
|
depends_on 'little-cms2' => :optional
|
2010-05-27 03:47:03 +00:00
|
|
|
depends_on 'jasper' => :optional
|
2011-04-08 17:22:02 +00:00
|
|
|
depends_on 'ghostscript' => :recommended if ghostscript_srsly?
|
2011-11-19 03:57:10 +00:00
|
|
|
depends_on 'xz' => :optional
|
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
|
|
|
|
2012-09-02 22:22:56 +00:00
|
|
|
option 'with-ghostscript', 'Compile against ghostscript (not recommended.)'
|
|
|
|
option 'without-magick-plus-plus', "Don't build C++ library."
|
|
|
|
option 'use-wmf', 'Compile with libwmf support.'
|
|
|
|
option 'with-quantum-depth-16', 'Use an 16 bit pixel quantum depth (default is 8)'
|
|
|
|
option 'with-quantum-depth-32', 'Use a 32 bit pixel quantum depth (default is 8)'
|
2012-09-16 16:35:55 +00:00
|
|
|
option 'without-x', 'Compile without X11'
|
2010-08-10 20:05:20 +00:00
|
|
|
|
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-02-02 06:20:39 +00:00
|
|
|
args << "--with-quantum-depth=#{quantum_depth}" if quantum_depth
|
2012-09-16 16:35:55 +00:00
|
|
|
args << "--without-x" if build.include? 'without-x'
|
2010-05-27 03:47:03 +00:00
|
|
|
|
|
|
|
system "./configure", *args
|
2009-10-22 06:27:47 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|