diff options
author | drochner <drochner@pkgsrc.org> | 2006-07-04 15:12:58 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2006-07-04 15:12:58 +0000 |
commit | 099cfd5568bb80d511f2d4252ffc0bb14b6b2b8c (patch) | |
tree | b604c900336847c1c9f5cb093c402e84f1aaee7d /graphics/glitz | |
parent | dea60513759991a56bced59b9df118d72618cebb (diff) | |
download | pkgsrc-099cfd5568bb80d511f2d4252ffc0bb14b6b2b8c.tar.gz |
update to 0.5.6
changes:
New GL_EXT_framebuffer_object interface.
Add WGL backend.
New radial gradient.
YV12 surface support.
misc fixes
additional GL support
optimization: avoid context switches
Diffstat (limited to 'graphics/glitz')
-rw-r--r-- | graphics/glitz/Makefile | 5 | ||||
-rw-r--r-- | graphics/glitz/distinfo | 10 | ||||
-rw-r--r-- | graphics/glitz/patches/patch-ab | 17 | ||||
-rw-r--r-- | graphics/glitz/patches/patch-ac | 23 |
4 files changed, 6 insertions, 49 deletions
diff --git a/graphics/glitz/Makefile b/graphics/glitz/Makefile index 65e2fe6427a..2c210e2f900 100644 --- a/graphics/glitz/Makefile +++ b/graphics/glitz/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.17 2006/06/18 13:17:12 minskim Exp $ +# $NetBSD: Makefile,v 1.18 2006/07/04 15:12:58 drochner Exp $ -DISTNAME= glitz-0.4.4 -PKGREVISION= 4 +DISTNAME= glitz-0.5.6 CATEGORIES= graphics MASTER_SITES= http://cairographics.org/snapshots/ diff --git a/graphics/glitz/distinfo b/graphics/glitz/distinfo index a22b0ba794b..3d217007f15 100644 --- a/graphics/glitz/distinfo +++ b/graphics/glitz/distinfo @@ -1,8 +1,6 @@ -$NetBSD: distinfo,v 1.11 2005/11/04 17:10:04 tv Exp $ +$NetBSD: distinfo,v 1.12 2006/07/04 15:12:58 drochner Exp $ -SHA1 (glitz-0.4.4.tar.gz) = 53d5df02aaf7c156ad62787a1ad9b3072f8dbd25 -RMD160 (glitz-0.4.4.tar.gz) = ffbdc0467c8ac727747eb430bcdde226f8fcce42 -Size (glitz-0.4.4.tar.gz) = 425742 bytes +SHA1 (glitz-0.5.6.tar.gz) = 81604bf02ceda85ea32b52423f78a883aaec6dc6 +RMD160 (glitz-0.5.6.tar.gz) = 547ef1be273856942e0fa36c097c4acb367336b2 +Size (glitz-0.5.6.tar.gz) = 459224 bytes SHA1 (patch-aa) = d725f03f96082b6d9b31c608a0e4c1beb71e87f1 -SHA1 (patch-ab) = 6394ccfb9b0096ce33111cb7ca6b7afff1075be0 -SHA1 (patch-ac) = b28f7ed4458ffcf1192eb2db9733b7d00d05a5e2 diff --git a/graphics/glitz/patches/patch-ab b/graphics/glitz/patches/patch-ab deleted file mode 100644 index 3d98afb0575..00000000000 --- a/graphics/glitz/patches/patch-ab +++ /dev/null @@ -1,17 +0,0 @@ -$NetBSD: patch-ab,v 1.1 2005/11/03 01:47:08 rillig Exp $ - -Don't use the *f() math functions on Solaris. The Solaris preprocessor -does not define the symbol "__sun__", so we have to check for "__sun", -too. The latter is mentioned in the cpp(1) man page. - ---- src/glitzint.h.orig 2005-07-04 12:33:01.000000000 +0200 -+++ src/glitzint.h 2005-11-03 02:12:47.808896500 +0100 -@@ -33,7 +33,7 @@ - - #include "glitz.h" - --#if defined(__APPLE__) || defined(__sun__) -+#if defined(__APPLE__) || defined(__sun__) || defined(__sun) - # define floorf(a) floor (a) - # define ceilf(a) ceil (a) - # define sinf(a) sin (a) diff --git a/graphics/glitz/patches/patch-ac b/graphics/glitz/patches/patch-ac deleted file mode 100644 index c59324ec808..00000000000 --- a/graphics/glitz/patches/patch-ac +++ /dev/null @@ -1,23 +0,0 @@ -$NetBSD: patch-ac,v 1.1 2005/11/04 17:10:04 tv Exp $ - ---- src/glitz.h.orig 2005-07-04 06:33:01.000000000 -0400 -+++ src/glitz.h -@@ -28,12 +28,13 @@ - - #if defined(__SVR4) && defined(__sun) - # include <sys/int_types.h> -+#elif defined(__OpenBSD__) -+# include <inttypes.h> -+#elif defined(__INTERIX) -+# include <sys/types.h> -+# define uint64_t u_int64_t - #else --# if defined(__OpenBSD__) --# include <inttypes.h> --# else --# include <stdint.h> --# endif -+# include <stdint.h> - #endif - - #define GLITZ_MAJOR 0 |