2009-12-01 19:32:23 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class PopplerData < Formula
|
2012-10-30 21:57:29 +00:00
|
|
|
url 'http://poppler.freedesktop.org/poppler-data-0.4.6.tar.gz'
|
|
|
|
sha1 'f030563eed9f93912b1a546e6d87936d07d7f27d'
|
2010-05-09 18:36:26 +00:00
|
|
|
end
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Poppler < Formula
|
2011-09-30 01:57:51 +00:00
|
|
|
homepage 'http://poppler.freedesktop.org'
|
2013-04-19 21:30:24 +00:00
|
|
|
url 'http://poppler.freedesktop.org/poppler-0.22.3.tar.gz'
|
|
|
|
sha1 '92fd3d2f56cf74bb76e4856a8ac606330343ba8d'
|
2010-03-18 19:07:33 +00:00
|
|
|
|
2012-10-30 21:43:14 +00:00
|
|
|
option 'with-qt4', 'Build Qt backend'
|
|
|
|
option 'with-glib', 'Build Glib backend'
|
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2012-10-30 21:43:14 +00:00
|
|
|
|
|
|
|
depends_on :fontconfig
|
|
|
|
depends_on 'openjpeg'
|
|
|
|
|
2012-08-13 15:23:14 +00:00
|
|
|
depends_on 'qt' if build.include? 'with-qt4'
|
|
|
|
depends_on 'glib' if build.include? 'with-glib'
|
|
|
|
depends_on 'cairo' if build.include? 'with-glib' # Needs a newer Cairo build than OS X 10.6.7 provides
|
2010-08-10 20:05:20 +00:00
|
|
|
|
2009-12-01 19:32:23 +00:00
|
|
|
def install
|
2012-08-13 15:23:14 +00:00
|
|
|
if build.include? 'with-qt4'
|
2011-09-17 05:06:22 +00:00
|
|
|
ENV['POPPLER_QT4_CFLAGS'] = `#{HOMEBREW_PREFIX}/bin/pkg-config QtCore QtGui --libs`.chomp
|
2011-05-18 16:38:12 +00:00
|
|
|
ENV.append 'LDFLAGS', "-Wl,-F#{HOMEBREW_PREFIX}/lib"
|
2010-05-09 18:36:26 +00:00
|
|
|
end
|
|
|
|
|
2011-09-27 07:52:51 +00:00
|
|
|
args = ["--disable-dependency-tracking", "--prefix=#{prefix}", "--enable-xpdf-headers"]
|
2011-09-17 05:06:22 +00:00
|
|
|
# Explicitly disable Qt if not requested because `POPPLER_QT4_CFLAGS` won't
|
|
|
|
# be set and the build will fail.
|
2012-10-30 21:25:37 +00:00
|
|
|
#
|
|
|
|
# Also, explicitly disable Glib as Poppler will find it and set up to
|
|
|
|
# build, but Superenv will have stripped the Glib utilities out of the
|
|
|
|
# PATH.
|
|
|
|
args << ( build.include?('with-qt4') ? '--enable-poppler-qt4' : '--disable-poppler-qt4' )
|
|
|
|
args << ( build.include?('with-glib') ? '--enable-poppler-glib' : '--disable-poppler-glib' )
|
2010-05-09 18:36:26 +00:00
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
system "./configure", *args
|
2009-12-01 19:32:23 +00:00
|
|
|
system "make install"
|
2010-05-09 18:36:26 +00:00
|
|
|
|
|
|
|
# Install poppler font data.
|
|
|
|
PopplerData.new.brew do
|
2012-05-15 18:31:21 +00:00
|
|
|
system "make", "install", "prefix=#{prefix}"
|
2010-05-09 18:36:26 +00:00
|
|
|
end
|
2009-12-01 19:32:23 +00:00
|
|
|
end
|
|
|
|
end
|