From 9e002ea38ad24394fdde6d9ad80a4f7362ab3989 Mon Sep 17 00:00:00 2001 From: Adam Malcontenti-Wilson Date: Sun, 6 Oct 2013 20:56:54 -0500 Subject: cogl 1.14.0 Signed-off-by: Jack Nagel --- Library/Formula/cogl.rb | 41 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 39 insertions(+), 2 deletions(-) (limited to 'Library') diff --git a/Library/Formula/cogl.rb b/Library/Formula/cogl.rb index e684138f6..2e592d9cc 100644 --- a/Library/Formula/cogl.rb +++ b/Library/Formula/cogl.rb @@ -2,8 +2,8 @@ require 'formula' class Cogl < Formula homepage 'http://developer.gnome.org/cogl/' - url 'http://ftp.gnome.org/pub/gnome/sources/cogl/1.12/cogl-1.12.2.tar.xz' - sha256 '31971d4c6543c589f6fc49ab1724dfbdc7062c58a7da842cb1935e32ca6e1d7e' + url 'http://ftp.gnome.org/pub/gnome/sources/cogl/1.14/cogl-1.14.0.tar.xz' + sha256 '276e8c9f5ff0fcd57c1eaf74cc245f41ad469a95a18ac831fac2d5960baa5ae8' head 'git://git.gnome.org/cogl' @@ -16,6 +16,12 @@ class Cogl < Formula depends_on 'pango' depends_on :x11 unless build.without? 'x' + def patches + # Patch from MacPorts, reported upstream at https://bugzilla.gnome.org/show_bug.cgi?id=708825 + # https://trac.macports.org/browser/trunk/dports/graphics/cogl/files/patch-clock_gettime.diff + DATA + end + def install system "./autogen.sh" if build.head? args = %W[ @@ -28,3 +34,34 @@ class Cogl < Formula system "make install" end end +__END__ +diff --git a/cogl/winsys/cogl-winsys-glx.c b/cogl/winsys/cogl-winsys-glx.c +--- a/cogl/winsys/cogl-winsys-glx.c ++++ b/cogl/winsys/cogl-winsys-glx.c +@@ -56,7 +56,26 @@ + #include + #include + #include ++ ++#ifdef __MACH__ ++#include ++#define CLOCK_REALTIME 0 ++#define CLOCK_MONOTONIC 0 ++static int ++clock_gettime(int clk_id, struct timespec *t){ ++ mach_timebase_info_data_t timebase; ++ mach_timebase_info(&timebase); ++ uint64_t time; ++ time = mach_absolute_time(); ++ double nseconds = ((double)time * (double)timebase.numer)/((double)timebase.denom); ++ double seconds = ((double)time * (double)timebase.numer)/((double)timebase.denom * 1e9); ++ t->tv_sec = seconds; ++ t->tv_nsec = nseconds; ++ return 0; ++} ++#else + #include ++#endif + + #include + -- cgit v1.2.3