diff options
author | obache <obache@pkgsrc.org> | 2010-07-16 14:31:46 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2010-07-16 14:31:46 +0000 |
commit | 8983e459d27f0741f260b9821b0828dadec703f8 (patch) | |
tree | 2dc782beaf5251f8af1ad985eed8bed9514b3b4a /graphics/clutter | |
parent | 810782380199e47bd16f9fdc074a68e684a63469 (diff) | |
download | pkgsrc-8983e459d27f0741f260b9821b0828dadec703f8.tar.gz |
Update clutter to 1.2.12.
Clutter 1.2.12 (14/07/2010)
===============================================================================
* List of changes since Clutter 1.2.10
> Provide a fallback for MESA_copy_sub_buffer by using the
EXT_blit_framebuffer extension. (BCP#2128)
> Never promote clipped redraws to fullscreen redraws. (BCP#2136)
> Fix rounding error in ClutterText. (BCP#2170)
> Fix drawing of transparent stages on X11. (BCP#2050)
> ClutterAnimator bug fixes.
> ClutterAnimation fixes for vector-based API. (BCP#2149)
> Fixes for the Windows backend event handling. (BCP#2135)
> Fixes for the setup of the GL context on OSX. (BCP#1394)
> Documentation improvements. (BCP#2081, BCP#2133)
> Build fixes for the conformance test suite. (BCP#1930)
Diffstat (limited to 'graphics/clutter')
-rw-r--r-- | graphics/clutter/Makefile | 8 | ||||
-rw-r--r-- | graphics/clutter/distinfo | 9 | ||||
-rw-r--r-- | graphics/clutter/patches/patch-ab | 14 |
3 files changed, 23 insertions, 8 deletions
diff --git a/graphics/clutter/Makefile b/graphics/clutter/Makefile index b41c727ef4f..6a66513d862 100644 --- a/graphics/clutter/Makefile +++ b/graphics/clutter/Makefile @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.16 2010/07/09 06:25:26 obache Exp $ +# $NetBSD: Makefile,v 1.17 2010/07/16 14:31:46 obache Exp $ # -DISTNAME= clutter-1.2.10 +DISTNAME= clutter-1.2.12 CATEGORIES= graphics -MASTER_SITES= http://www.clutter-project.org/sources/clutter/1.2/ -# ${MASTER_SITE_GNOME:=sources/clutter/1.2/} +MASTER_SITES= http://source.clutter-project.org/sources/clutter/1.2/ +# ${MASTER_SITE_GNOME:=sources/clutter/1.2/} MAINTAINER= obache@NetBSD.org HOMEPAGE= http://clutter-project.org/ diff --git a/graphics/clutter/distinfo b/graphics/clutter/distinfo index 698f709dbd8..79eea002dd7 100644 --- a/graphics/clutter/distinfo +++ b/graphics/clutter/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.9 2010/07/09 06:25:26 obache Exp $ +$NetBSD: distinfo,v 1.10 2010/07/16 14:31:46 obache Exp $ -SHA1 (clutter-1.2.10.tar.gz) = bc16098c897142590c3ca19a86803c9d8c74835b -RMD160 (clutter-1.2.10.tar.gz) = 004749cd8485c426ad21b6b62b0367679412a070 -Size (clutter-1.2.10.tar.gz) = 3193923 bytes +SHA1 (clutter-1.2.12.tar.gz) = b4ee053f61306526ef13e4b15ad2a63fc3e9f70f +RMD160 (clutter-1.2.12.tar.gz) = 6f590f9c20dd030820aa6bbb88fba7cb93b6140d +Size (clutter-1.2.12.tar.gz) = 3200650 bytes +SHA1 (patch-ab) = 213eef8fd664d0ba082dab59f990dc21f4f53e83 diff --git a/graphics/clutter/patches/patch-ab b/graphics/clutter/patches/patch-ab new file mode 100644 index 00000000000..2c8ab51b4b6 --- /dev/null +++ b/graphics/clutter/patches/patch-ab @@ -0,0 +1,14 @@ +$NetBSD: patch-ab,v 1.1 2010/07/16 14:31:46 obache Exp $ + +--- clutter/glx/clutter-stage-glx.c.orig 2010-07-14 10:32:57.000000000 +0000 ++++ clutter/glx/clutter-stage-glx.c +@@ -487,8 +487,8 @@ wait_for_vblank (ClutterBackendGLX *back + (retraceCount + 1) % 2, + &retraceCount); + } +- else + #ifdef __linux__ ++ else + { + drm_wait_vblank_t blank; + |