From 2fba8f1ac719a1484a87f533ebe18327aa83c9b5 Mon Sep 17 00:00:00 2001 From: Karan Lyons Date: Fri, 23 Aug 2013 01:40:11 -0700 Subject: xmto: fix missing DTD/entities errors `xmlto` forces the `--nonet` flag on `xsltproc`, which means it throws up an I/O error whenever it needs to hit the network to pull down any files. So we patch out the forced flag, and additionally add `docbook-xsl` as a dependency, which'll reduce the odds of having to hit the network in the first place. Fixes #21040. Signed-off-by: Adam Vandenberg --- Library/Formula/xmlto.rb | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'Library') diff --git a/Library/Formula/xmlto.rb b/Library/Formula/xmlto.rb index 2ac432379..1f8f863bd 100644 --- a/Library/Formula/xmlto.rb +++ b/Library/Formula/xmlto.rb @@ -6,8 +6,15 @@ class Xmlto < Formula sha1 '5d1aecd59d519066f94b4591722767c4e41bdc0f' depends_on 'docbook' + depends_on 'docbook-xsl' depends_on 'gnu-getopt' + def patches + # xmlto forces --no-net on xsltproc, which causes it to fail when + # DTDs/entities aren't available locally. + DATA + end + def install # GNU getopt is keg-only, so point configure to it ENV['GETOPT'] = Formula.factory('gnu-getopt').bin+"getopt" @@ -19,3 +26,17 @@ class Xmlto < Formula system "make install" end end + + +__END__ +--- xmlto-0.0.25/xmlto.in.orig ++++ xmlto-0.0.25/xmlto.in +@@ -209,7 +209,7 @@ + export VERBOSE + + # Disable network entities +-XSLTOPTS="$XSLTOPTS --nonet" ++#XSLTOPTS="$XSLTOPTS --nonet" + + # The names parameter for the XSLT stylesheet + XSLTPARAMS="" -- cgit v1.2.3