poppler: always build with glib support

This commit is contained in:
Jack Nagel 2014-05-18 22:39:01 -05:00
parent 1af1af3818
commit 8db247acf0
4 changed files with 7 additions and 13 deletions

View file

@ -18,7 +18,7 @@ class PdfTools < Formula
depends_on :libtool
depends_on "cairo"
depends_on "poppler" => "with-glib"
depends_on "poppler"
def install
ENV['zlib_CFLAGS'] = '-I/usr/include'

View file

@ -9,7 +9,7 @@ class Pdf2svg < Formula
depends_on :x11
depends_on "cairo"
depends_on "poppler" => "with-glib"
depends_on "poppler"
depends_on "gtk+"
def install

View file

@ -6,7 +6,6 @@ class Poppler < Formula
sha1 '1f5d08ee01683c309688f17116d18bf47b13f001'
option 'with-qt4', 'Build Qt backend'
option 'with-glib', 'Build Glib backend' # requires cairo
option 'with-lcms2', 'Use color management system'
depends_on 'pkg-config' => :build
@ -14,11 +13,11 @@ class Poppler < Formula
depends_on 'libpng'
depends_on 'fontconfig'
depends_on 'openjpeg'
depends_on 'glib'
depends_on 'cairo'
depends_on 'qt' if build.with? 'qt4'
depends_on 'glib' => :optional
depends_on 'little-cms2' if build.with? 'lcms2'
depends_on 'cairo' if build.with? 'glib'
conflicts_with 'pdftohtml', :because => 'both install `pdftohtml` binaries'
@ -36,16 +35,11 @@ class Poppler < Formula
ENV.append 'LDFLAGS', "-Wl,-F#{HOMEBREW_PREFIX}/lib"
end
args = ["--disable-dependency-tracking", "--prefix=#{prefix}", "--enable-xpdf-headers"]
args = ["--disable-dependency-tracking", "--prefix=#{prefix}", "--enable-xpdf-headers",
"--enable-poppler-glib"]
# Explicitly disable Qt if not requested because `POPPLER_QT4_CFLAGS` won't
# be set and the build will fail.
#
# 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.with?('qt4') ? '--enable-poppler-qt4' : '--disable-poppler-qt4' )
args << ( build.with?('glib') ? '--enable-poppler-glib' : '--disable-poppler-glib' )
args << ( build.with?('glib') ? '' : '--disable-cairo-output' )
args << ( build.with?('lcms2') ? '--enable-cms=lcms2' : '' )
system "./configure", *args

View file

@ -10,7 +10,7 @@ class Xournal < Formula
depends_on 'pkg-config' => :build
depends_on :x11
depends_on 'gtk+'
depends_on 'poppler' => 'with-glib'
depends_on 'poppler'
depends_on 'libgnomecanvas'
def install