homebrew-core/Formula/glib.rb

98 lines
3.1 KiB
Ruby
Raw Normal View History

require 'formula'
def build_tests?; ARGV.include? '--test'; end
2011-03-10 05:11:03 +00:00
class Glib < Formula
homepage 'http://developer.gnome.org/glib/2.28/'
url 'ftp://ftp.gnome.org/pub/gnome/sources/glib/2.28/glib-2.28.8.tar.bz2'
sha256 '222f3055d6c413417b50901008c654865e5a311c73f0ae918b0a9978d1f9466f'
depends_on 'gettext'
2009-08-11 00:31:47 +00:00
fails_with_llvm "Undefined symbol errors while linking" unless MacOS.lion?
# Lion and Snow Leopard don't have a 64 bit version of the iconv_open
# function. The fact that Lion still doesn't is ridiculous. But we're as
# much to blame. Nobody reported the bug FFS. And I'm still not going to
# because I'm in a hurry here.
depends_on 'libiconv'
def patches
mp = "https://svn.macports.org/repository/macports/!svn/bc/79276/trunk/dports/devel/glib2/files/"
{
:p0 => [
mp+"patch-configure.ac.diff",
mp+"patch-glib-2.0.pc.in.diff",
mp+"patch-glib_gunicollate.c.diff",
mp+"patch-gi18n.h.diff",
mp+"patch-gio_xdgmime_xdgmime.c.diff",
mp+"patch-gio_gdbusprivate.c.diff"
]
}
end
def options
2011-06-05 00:11:45 +00:00
[
['--universal', 'Build universal binaries.'],
['--test', 'Build a debug build and run tests. NOTE: Tests may hang on "unix-streams".']
]
end
def install
2011-06-05 00:11:45 +00:00
ENV.universal_binary if ARGV.build_universal?
# indeed, amazingly, -w causes gcc to emit spurious errors for this package!
ENV.enable_warnings
args = ["--disable-dependency-tracking", "--disable-rebuilds",
"--prefix=#{prefix}",
"--with-libiconv=gnu",
"--disable-dtrace"]
args << "--disable-debug" unless build_tests?
2011-06-05 00:11:45 +00:00
if ARGV.build_universal?
# autoconf 2.61 is fine don't worry about it
inreplace ["aclocal.m4", "configure.ac"] do |s|
s.gsub! "AC_PREREQ([2.62])", "AC_PREREQ([2.61])"
end
# Run autoconf so universal builds will work
system "autoconf"
end
# hack so that we don't have to depend on pkg-config
# http://permalink.gmane.org/gmane.comp.package-management.pkg-config/627
ENV['ZLIB_CFLAGS'] = ''
ENV['ZLIB_LIBZ'] = '-l'
system "./configure", *args
# Fix for 64-bit support, from MacPorts
2011-06-05 00:11:45 +00:00
curl "https://svn.macports.org/repository/macports/trunk/dports/devel/glib2/files/config.h.ed", "-O"
system "ed - config.h < config.h.ed"
system "make"
# Supress a folder already exists warning during install
# Also needed for running tests
ENV.j1
system "make test" if build_tests?
system "make install"
# This sucks; gettext is Keg only to prevent conflicts with the wider
# system, but pkg-config or glib is not smart enough to have determined
# that libintl.dylib isn't in the DYLIB_PATH so we have to add it
# manually.
gettext = Formula.factory('gettext')
inreplace lib+'pkgconfig/glib-2.0.pc' do |s|
s.gsub! 'Libs: -L${libdir} -lglib-2.0 -lintl',
"Libs: -L${libdir} -lglib-2.0 -L#{gettext.lib} -lintl"
s.gsub! 'Cflags: -I${includedir}/glib-2.0 -I${libdir}/glib-2.0/include',
"Cflags: -I${includedir}/glib-2.0 -I${libdir}/glib-2.0/include -I#{gettext.include}"
end
2010-08-08 17:20:15 +00:00
(share+'gtk-doc').rmtree
end
end