2009-06-06 22:54:52 +00:00
|
|
|
require 'brewkit'
|
|
|
|
|
2009-09-17 19:10:15 +00:00
|
|
|
class Libiconv <Formula
|
|
|
|
@url='http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.13.1.tar.gz'
|
|
|
|
@homepage='http://www.gnu.org/software/libiconv/'
|
|
|
|
@md5='7ab33ebd26687c744a37264a330bbe9a'
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2009-06-06 22:54:52 +00:00
|
|
|
class Glib <Formula
|
2009-08-31 18:07:15 +00:00
|
|
|
@url='http://ftp.acc.umu.se/pub/gnome/sources/glib/2.20/glib-2.20.5.tar.bz2'
|
|
|
|
@md5='4c178b91d82ef80a2da3c26b772569c0'
|
2009-06-06 22:54:52 +00:00
|
|
|
@homepage='http://www.gtk.org'
|
|
|
|
|
2009-08-11 00:31:47 +00:00
|
|
|
def deps
|
|
|
|
BinaryDep.new 'pkg-config'
|
|
|
|
LibraryDep.new 'gettext'
|
|
|
|
end
|
|
|
|
|
2009-06-06 22:54:52 +00:00
|
|
|
def install
|
2009-09-17 20:10:39 +00:00
|
|
|
ENV.gnu_gettext
|
|
|
|
|
2009-09-17 19:10:15 +00:00
|
|
|
# Snow Leopard libiconv doesn't have a 64bit version of the libiconv_open
|
|
|
|
# function, which breaks things for us, so we build our own
|
|
|
|
# http://www.mail-archive.com/gtk-list@gnome.org/msg28747.html
|
|
|
|
|
|
|
|
iconvd = Pathname.getwd+'iconv'
|
|
|
|
iconvd.mkpath
|
|
|
|
|
|
|
|
Libiconv.new.brew do
|
|
|
|
system "./configure", "--prefix=#{iconvd}", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--enable-static", "--disable-shared"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
2009-08-07 14:41:43 +00:00
|
|
|
# indeed, amazingly, -w causes gcc to emit spurious errors for this package!
|
|
|
|
ENV.enable_warnings
|
2009-06-06 22:54:52 +00:00
|
|
|
|
2009-09-17 19:10:15 +00:00
|
|
|
# basically we are going to statically link to the symbols that glib doesn't
|
|
|
|
# find in the bugged GNU libiconv that ships with 10.6
|
|
|
|
ENV['LDFLAGS'] += " #{iconvd}/lib/libiconv.a"
|
|
|
|
|
2009-08-11 00:31:47 +00:00
|
|
|
system "./configure", "--disable-debug",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--disable-dependency-tracking",
|
2009-09-17 19:10:15 +00:00
|
|
|
"--disable-rebuilds",
|
|
|
|
"--with-libiconv=gnu"
|
2009-06-06 22:54:52 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
2009-08-11 00:31:47 +00:00
|
|
|
|
|
|
|
(prefix+'share'+'gtk-doc').rmtree
|
2009-06-06 22:54:52 +00:00
|
|
|
end
|
|
|
|
end
|