class Poppler < Formula desc "PDF rendering library (based on the xpdf-3.0 code base)" homepage "https://poppler.freedesktop.org/" url "https://poppler.freedesktop.org/poppler-0.46.0.tar.xz" sha256 "967d35d13d61dee2fee656b80efef9e388a9e752bc79b7123f15b49c7769e487" bottle do sha256 "b646131621704dc93d7a7af4d79fd939a1858dd00457eb5a4cacb92af022ed93" => :el_capitan sha256 "f4623c192f6ee5b02841408cd29db8beff7f5dd6ea28f43f52845d68266693ca" => :yosemite sha256 "57fc82fc1129fda38278c282d835b4509821f6f72fb5e1d81aebf001c4a2c923" => :mavericks end option "with-qt", "Build Qt backend" option "with-qt5", "Build Qt5 backend" option "with-little-cms2", "Use color management system" deprecated_option "with-qt4" => "with-qt" deprecated_option "with-lcms2" => "with-little-cms2" depends_on "pkg-config" => :build depends_on "cairo" depends_on "fontconfig" depends_on "freetype" depends_on "gettext" depends_on "glib" depends_on "gobject-introspection" depends_on "jpeg" depends_on "libpng" depends_on "libtiff" depends_on "openjpeg" depends_on "qt" => :optional depends_on "qt5" => :optional depends_on "little-cms2" => :optional conflicts_with "pdftohtml", :because => "both install `pdftohtml` binaries" resource "font-data" do url "https://poppler.freedesktop.org/poppler-data-0.4.7.tar.gz" sha256 "e752b0d88a7aba54574152143e7bf76436a7ef51977c55d6bd9a48dccde3a7de" end def install ENV.cxx11 if MacOS.version < :mavericks ENV["LIBOPENJPEG_CFLAGS"] = "-I#{Formula["openjpeg"].opt_include}/openjpeg-1.5" args = %W[ --disable-dependency-tracking --prefix=#{prefix} --enable-xpdf-headers --enable-poppler-glib --disable-gtk-test --enable-introspection=yes ] if build.with?("qt") && build.with?("qt5") raise "poppler: --with-qt and --with-qt5 cannot be used at the same time" elsif build.with? "qt" args << "--enable-poppler-qt4" elsif build.with? "qt5" args << "--enable-poppler-qt5" else args << "--disable-poppler-qt4" << "--disable-poppler-qt5" end args << "--enable-cms=lcms2" if build.with? "little-cms2" system "./configure", *args system "make", "install" resource("font-data").stage do system "make", "install", "prefix=#{prefix}" end end test do system "#{bin}/pdfinfo", test_fixtures("test.pdf") end end