0f5ff949e1
Closes Homebrew/homebrew#15020.
56 lines
1.7 KiB
Ruby
56 lines
1.7 KiB
Ruby
require 'formula'
|
|
|
|
# Use a mirror because of:
|
|
# http://lists.cairographics.org/archives/cairo/2012-September/023454.html
|
|
|
|
class Cairo < Formula
|
|
homepage 'http://cairographics.org/'
|
|
url 'http://cairographics.org/releases/cairo-1.12.2.tar.xz'
|
|
mirror 'http://ftp-nyc.osuosl.org/pub/gentoo/distfiles/cairo-1.12.2.tar.xz'
|
|
sha256 'b786bc4a70542bcb09f2d9d13e5e6a0c86408cbf6d1edde5f0de807eecf93f96'
|
|
|
|
keg_only :provided_pre_mountain_lion
|
|
|
|
option :universal
|
|
option 'without-x', 'Build without X11 support'
|
|
|
|
depends_on :libpng
|
|
depends_on 'pixman'
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'xz'=> :build
|
|
depends_on 'glib' unless build.include? 'without-x'
|
|
depends_on :x11 unless build.include? 'without-x'
|
|
|
|
# Fixes a build error with clang & universal, where a function was implicit.
|
|
def patches; DATA; end
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
]
|
|
|
|
args << '--with-x' unless build.include? 'without-x'
|
|
args << '--enable-xcb=no' if MacOS.version == :leopard
|
|
|
|
system "./configure", *args
|
|
system "make install"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/configure b/configure
|
|
index b75757d..1230da2 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -17939,7 +17939,7 @@ CAIRO_NONPKGCONFIG_LIBS="$LIBS"
|
|
|
|
MAYBE_WARN="-Wall -Wextra \
|
|
-Wold-style-definition -Wdeclaration-after-statement \
|
|
--Wmissing-declarations -Werror-implicit-function-declaration \
|
|
+-Wmissing-declarations -Wimplicit-function-declaration \
|
|
-Wnested-externs -Wpointer-arith -Wwrite-strings \
|
|
-Wsign-compare -Wstrict-prototypes -Wmissing-prototypes \
|
|
-Wpacked -Wswitch-enum -Wmissing-format-attribute \
|