clutter 1.22.2

version bump
audit --strict compliance
X11 support removed since it didnt work anymore after cairo and pango
transitioned to quartz

Closes Homebrew/homebrew#41008.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
This commit is contained in:
Tom Schoonjans 2015-06-23 18:05:20 +02:00 committed by Dominyk Tiller
parent a5f0818f26
commit 65b179124f

View file

@ -1,10 +1,8 @@
require "formula"
class Clutter < Formula class Clutter < Formula
desc "Generic high-level canvas library" desc "Generic high-level canvas library"
homepage "https://wiki.gnome.org/Projects/Clutter" homepage "https://wiki.gnome.org/Projects/Clutter"
url "http://ftp.gnome.org/pub/gnome/sources/clutter/1.20/clutter-1.20.0.tar.xz" url "https://download.gnome.org/sources/clutter/1.22/clutter-1.22.2.tar.xz"
sha256 "cc940809e6e1469ce349c4bddb0cbcc2c13c087d4fc15cda9278d855ee2d1293" sha256 "8e69d21d9f7e8e89eafc072e2615c289903260c470af39bcb578b081139c11ac"
bottle do bottle do
sha1 "f9ef97d254247e2e0ab98fbaf3723d577c115ab4" => :mavericks sha1 "f9ef97d254247e2e0ab98fbaf3723d577c115ab4" => :mavericks
@ -12,8 +10,6 @@ class Clutter < Formula
sha1 "7565ae43a559f988271cfdf8a745cc7919659efe" => :lion sha1 "7565ae43a559f988271cfdf8a745cc7919659efe" => :lion
end end
deprecated_option "without-x" => "without-x11"
depends_on "pkg-config" => :build depends_on "pkg-config" => :build
depends_on "glib" depends_on "glib"
depends_on "gdk-pixbuf" depends_on "gdk-pixbuf"
@ -22,7 +18,6 @@ class Clutter < Formula
depends_on "atk" depends_on "atk"
depends_on "pango" depends_on "pango"
depends_on "json-glib" depends_on "json-glib"
depends_on :x11 => ["2.5.1", :recommended]
depends_on "gobject-introspection" depends_on "gobject-introspection"
def install def install
@ -33,26 +28,78 @@ class Clutter < Formula
--enable-introspection=yes --enable-introspection=yes
--disable-silent-rules --disable-silent-rules
--disable-Bsymbolic --disable-Bsymbolic
--disable-tests
--disable-examples --disable-examples
--disable-gtk-doc-html --disable-gtk-doc-html
--enable-gdk-pixbuf=yes
--without-x --enable-x11-backend=no
--enable-quartz-backend=yes
] ]
if build.with? "x11" system "./configure", *args
args.concat %w{ system "make", "install"
--with-x --enable-x11-backend=yes
--enable-gdk-pixbuf=yes
--enable-quartz-backend=no
}
else
args.concat %w{
--without-x --enable-x11-backend=no
--enable-gdk-pixbuf=no
--enable-quartz-backend=yes
}
end end
system "./configure", *args test do
system "make install" (testpath/"test.c").write <<-EOS.undent
#include <clutter/clutter.h>
int main(int argc, char *argv[]) {
GOptionGroup *group = clutter_get_option_group_without_init();
return 0;
}
EOS
atk = Formula["atk"]
cairo = Formula["cairo"]
cogl = Formula["cogl"]
fontconfig = Formula["fontconfig"]
freetype = Formula["freetype"]
gettext = Formula["gettext"]
glib = Formula["glib"]
json_glib = Formula["json-glib"]
libpng = Formula["libpng"]
pango = Formula["pango"]
pixman = Formula["pixman"]
flags = (ENV.cflags || "").split + (ENV.cppflags || "").split + (ENV.ldflags || "").split
flags += %W[
-I#{atk.opt_include}/atk-1.0
-I#{cairo.opt_include}/cairo
-I#{cogl.opt_include}/cogl
-I#{fontconfig.opt_include}
-I#{freetype.opt_include}/freetype2
-I#{gettext.opt_include}
-I#{glib.opt_include}/glib-2.0
-I#{glib.opt_lib}/glib-2.0/include
-I#{include}/clutter-1.0
-I#{json_glib.opt_include}/json-glib-1.0
-I#{libpng.opt_include}/libpng16
-I#{pango.opt_include}/pango-1.0
-I#{pixman.opt_include}/pixman-1
-D_REENTRANT
-L#{atk.opt_lib}
-L#{cairo.opt_lib}
-L#{cogl.opt_lib}
-L#{gettext.opt_lib}
-L#{glib.opt_lib}
-L#{json_glib.opt_lib}
-L#{lib}
-L#{pango.opt_lib}
-latk-1.0
-lcairo
-lcairo-gobject
-lclutter-1.0
-lcogl
-lcogl-pango
-lcogl-path
-lgio-2.0
-lglib-2.0
-lgmodule-2.0
-lgobject-2.0
-lintl
-ljson-glib-1.0
-lpango-1.0
-lpangocairo-1.0
]
system ENV.cc, "test.c", "-o", "test", *flags
system "./test"
end end
end end