aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gettext.rb
diff options
context:
space:
mode:
authorMax Howell2009-06-06 23:54:52 +0100
committerMax Howell2009-06-06 23:54:52 +0100
commit1ee9ac42ddb6d3551c24d7ffaacba71f531e3f88 (patch)
tree5dc7ff5d45808f98dbea599a413be2cbf71f58b0 /Library/Formula/gettext.rb
parent02878497790a072df8b65647c2025155c9ea8660 (diff)
downloadhomebrew-1ee9ac42ddb6d3551c24d7ffaacba71f531e3f88.tar.bz2
Wireshark depends on glib depends on gettext
Diffstat (limited to 'Library/Formula/gettext.rb')
-rw-r--r--Library/Formula/gettext.rb29
1 files changed, 29 insertions, 0 deletions
diff --git a/Library/Formula/gettext.rb b/Library/Formula/gettext.rb
new file mode 100644
index 000000000..668dd0059
--- /dev/null
+++ b/Library/Formula/gettext.rb
@@ -0,0 +1,29 @@
+require 'brewkit'
+
+class Gettext <Formula
+ @url='http://ftp.gnu.org/pub/gnu/gettext/gettext-0.17.tar.gz'
+ @md5='58a2bc6d39c0ba57823034d55d65d606'
+ @homepage='http://www.gnu.org/software/gettext/'
+
+ def install
+ # TODO seems like this package needs more optmisation
+ # maybe someone can tell me how glib depends on gettext, but gettext
+ # depends on glib and thus includes its own?!
+
+ ENV['CFLAGS']+=' -I/usr/include/libxml2'
+ system "./configure --disable-debug --prefix='#{prefix}' --disable-dependency-tracking "+
+# '--disable-nls '+
+ '--without-emacs --without-included-gettext '+
+ '--without-included-glib --without-included-libcroco '+
+ '--without-included-libxml'
+ system "make"
+ ENV['MAKEFLAGS']='' # can't parallel the install
+ system "make install"
+
+ (doc+'examples').rmtree unless ARGV.include? '--with-examples'
+
+ def caveats
+ "GNU gettext is bloated and manky, please try not to depend on it"
+ end
+ end
+end