homebrew-core/Formula/pdf2htmlex.rb
Dominyk Tiller 781abee841 formulae: migrate patches (part 2)
madplay: migrate patch
makeicns: migrate patch
mp3info: migrate patch
mpack: migrate patch
newt: migrate patch
nvi: migrate patches
ogmtools: migrate patch
orbit: migrate patches
pdf2htmlex: reference secure link
pdksh: migrate patch
povray: migrate patches
proctools: migrate patches
pulseaudio: migrate patch
sbcl: migrate patches
swftools: migrate patch
tinyproxy: migrate patch
tinysvm: migrate patch
trafshow: migrate patches
uudeview: migrate patch
webfs: migrate patch
wordplay: migrate patch
xsane: migrate patch
2015-10-07 20:36:35 +01:00

101 lines
3.3 KiB
Ruby

class Pdf2htmlex < Formula
desc "PDF to HTML converter"
homepage "https://coolwanglu.github.io/pdf2htmlEX/"
url "https://github.com/coolwanglu/pdf2htmlEX/archive/v0.13.6.tar.gz"
sha256 "fc133a5791bfd76a4425af16c6a6a2460f672501b490cbda558213cb2b03d5d7"
revision 3
head "https://github.com/coolwanglu/pdf2htmlEX.git"
bottle do
sha256 "11a4583c47f559b362693610991d292b68413898d635be42a1fd157b4e537b2f" => :el_capitan
sha256 "ad75b68dd45816aeee6730953f9d3aa9df6a2ebdec450ce33cd902f727c2d673" => :yosemite
sha256 "da5c6edc1d82b834bcb6f01f2bb0dc8bfd47cbc051b12ecedc9b5b026381e4ec" => :mavericks
end
# Pdf2htmlex use an outdated, customised Fontforge installation.
# See https://github.com/coolwanglu/pdf2htmlEX/wiki/Building
resource "fontforge" do
url "https://github.com/coolwanglu/fontforge.git", :branch => "pdf2htmlEX"
end
depends_on :macos => :lion
depends_on "cmake" => :build
depends_on "pkg-config" => :build
depends_on "poppler"
depends_on "gnu-getopt"
depends_on "ttfautohint" => :recommended if MacOS.version > :snow_leopard
# Fontforge dependencies
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :run
depends_on "glib"
depends_on "pango"
depends_on "gettext"
depends_on "libpng" => :recommended
depends_on "jpeg" => :recommended
depends_on "libtiff" => :recommended
# And failures
fails_with :llvm do
build 2336
cause "Compiling cvexportdlg.c fails with error: initializer element is not constant"
end
# Fix a compilation failure with poppler 0.31.0+
# Upstream is aware of the issue and suggested this patch:
# https://github.com/coolwanglu/pdf2htmlEX/commit/d4fc82b#commitcomment-12239022
patch :DATA
def install
resource("fontforge").stage do
args = %W[
--prefix=#{prefix}/fontforge
--without-libzmq
--without-x
--without-iconv
--disable-python-scripting
--disable-python-extension
]
# Fix linker error; see: https://trac.macports.org/ticket/25012
ENV.append "LDFLAGS", "-lintl"
# Reset ARCHFLAGS to match how we build
ENV["ARCHFLAGS"] = "-arch #{MacOS.preferred_arch}"
system "./autogen.sh"
system "./configure", *args
system "make"
system "make", "install"
end
# Prepend the paths to always find this dep fontforge instead of another.
ENV.prepend_path "PKG_CONFIG_PATH", "#{prefix}/fontforge/lib/pkgconfig"
ENV.prepend_path "PATH", "#{prefix}/fontforge/bin"
system "cmake", ".", *std_cmake_args
system "make"
system "make", "install"
end
test do
system "#{bin}/pdf2htmlEX", test_fixtures("test.pdf")
end
end
__END__
diff --git a/3rdparty/poppler/git/CairoFontEngine.cc b/3rdparty/poppler/git/CairoFontEngine.cc
index 229a86c..7cc448b 100644
--- a/3rdparty/poppler/git/CairoFontEngine.cc
+++ b/3rdparty/poppler/git/CairoFontEngine.cc
@@ -421,7 +421,7 @@ CairoFreeTypeFont *CairoFreeTypeFont::create(GfxFont *gfxFont, XRef *xref,
ref = *gfxFont->getID();
fontType = gfxFont->getType();
- if (!(fontLoc = gfxFont->locateFont(xref, gFalse))) {
+ if (!(fontLoc = gfxFont->locateFont(xref, nullptr))) {
error(errSyntaxError, -1, "Couldn't find a font for '{0:s}'",
gfxFont->getName() ? gfxFont->getName()->getCString()
: "(unnamed)");