aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2013-01-26 11:57:12 -0600
committerJack Nagel2013-01-26 12:28:48 -0600
commitc69d7ffc1447ac1bf79bba22204fa7160298ce29 (patch)
tree31487e1c4ed16f6ab8486917daa37c53d9f4fc2c /Library/Formula
parent9076baa3e9d6970703049bf1422a4fadfc3f8d32 (diff)
downloadhomebrew-c69d7ffc1447ac1bf79bba22204fa7160298ce29.tar.bz2
gnome-doc-utils: depend on libxml2 'with-python'
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/gnome-doc-utils.rb14
1 files changed, 1 insertions, 13 deletions
diff --git a/Library/Formula/gnome-doc-utils.rb b/Library/Formula/gnome-doc-utils.rb
index f4e9f8199..c00ec8996 100644
--- a/Library/Formula/gnome-doc-utils.rb
+++ b/Library/Formula/gnome-doc-utils.rb
@@ -10,11 +10,7 @@ class GnomeDocUtils < Formula
depends_on 'intltool'
depends_on 'docbook'
depends_on 'gettext'
-
- # libxml2 must be installed --with-python, and since it is keg-only, the
- # Python module must also be symlinked into site-packages or put on the
- # PYTHONPATH.
- depends_on 'libxml2'
+ depends_on 'libxml2' => 'with-python'
fails_with :llvm do
build 2326
@@ -38,12 +34,4 @@ class GnomeDocUtils < Formula
system "make"
system "make install"
end
-
- def caveats; <<-EOS.undent
- Gnome-doc-utils requires libxml2 to be compiled
- with the python modules enabled, to do so:
- $ brew install libxml2 --with-python
- EOS
- end
end
-