diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/xmlto.rb | 21 |
1 files changed, 21 insertions, 0 deletions
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="" |
