pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/graphics/glitz update to 0.5.6



details:   https://anonhg.NetBSD.org/pkgsrc/rev/fbcffb027182
branches:  trunk
changeset: 515586:fbcffb027182
user:      drochner <drochner%pkgsrc.org@localhost>
date:      Tue Jul 04 15:12:58 2006 +0000

description:
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:

 graphics/glitz/Makefile         |   5 ++---
 graphics/glitz/distinfo         |  10 ++++------
 graphics/glitz/patches/patch-ab |  17 -----------------
 graphics/glitz/patches/patch-ac |  23 -----------------------
 4 files changed, 6 insertions(+), 49 deletions(-)

diffs (77 lines):

diff -r e3aa244ae0df -r fbcffb027182 graphics/glitz/Makefile
--- a/graphics/glitz/Makefile   Tue Jul 04 14:32:17 2006 +0000
+++ b/graphics/glitz/Makefile   Tue Jul 04 15:12:58 2006 +0000
@@ -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 -r e3aa244ae0df -r fbcffb027182 graphics/glitz/distinfo
--- a/graphics/glitz/distinfo   Tue Jul 04 14:32:17 2006 +0000
+++ b/graphics/glitz/distinfo   Tue Jul 04 15:12:58 2006 +0000
@@ -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 -r e3aa244ae0df -r fbcffb027182 graphics/glitz/patches/patch-ab
--- a/graphics/glitz/patches/patch-ab   Tue Jul 04 14:32:17 2006 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -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 -r e3aa244ae0df -r fbcffb027182 graphics/glitz/patches/patch-ac
--- a/graphics/glitz/patches/patch-ac   Tue Jul 04 14:32:17 2006 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -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



Home | Main Index | Thread Index | Old Index