pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/graphics/librsvg update to 2.22.3



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c3e95e8ff95d
branches:  trunk
changeset: 548482:c3e95e8ff95d
user:      drochner <drochner%pkgsrc.org@localhost>
date:      Thu Oct 16 13:55:53 2008 +0000

description:
update to 2.22.3
changes:
-build fixes
-rendering improvements
-bugfixes

diffstat:

 graphics/librsvg/Makefile         |   4 ++--
 graphics/librsvg/distinfo         |  10 ++++------
 graphics/librsvg/patches/patch-aa |  38 --------------------------------------
 graphics/librsvg/patches/patch-ac |  35 -----------------------------------
 4 files changed, 6 insertions(+), 81 deletions(-)

diffs (109 lines):

diff -r cb35e0f2285b -r c3e95e8ff95d graphics/librsvg/Makefile
--- a/graphics/librsvg/Makefile Thu Oct 16 13:52:29 2008 +0000
+++ b/graphics/librsvg/Makefile Thu Oct 16 13:55:53 2008 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.34 2008/08/21 18:52:26 epg Exp $
+# $NetBSD: Makefile,v 1.35 2008/10/16 13:55:53 drochner Exp $
 
-DISTNAME=      librsvg-2.22.2
+DISTNAME=      librsvg-2.22.3
 CATEGORIES=    graphics gnome
 MASTER_SITES=  ${MASTER_SITE_GNOME:=sources/librsvg/2.22/}
 EXTRACT_SUFX=  .tar.bz2
diff -r cb35e0f2285b -r c3e95e8ff95d graphics/librsvg/distinfo
--- a/graphics/librsvg/distinfo Thu Oct 16 13:52:29 2008 +0000
+++ b/graphics/librsvg/distinfo Thu Oct 16 13:55:53 2008 +0000
@@ -1,8 +1,6 @@
-$NetBSD: distinfo,v 1.10 2008/04/15 17:41:13 drochner Exp $
+$NetBSD: distinfo,v 1.11 2008/10/16 13:55:53 drochner Exp $
 
-SHA1 (librsvg-2.22.2.tar.bz2) = a42ad2dd0a1b3b7195fe7d4e89c7e1f0352a51cf
-RMD160 (librsvg-2.22.2.tar.bz2) = ead6af5c0b1c251f640d7eec06b354e33739a489
-Size (librsvg-2.22.2.tar.bz2) = 464857 bytes
-SHA1 (patch-aa) = c0c1ed7bb4efe2099a5a1b85bcd59a03ba48854a
+SHA1 (librsvg-2.22.3.tar.bz2) = 032f8142b1e41e07740cd91030b1873a0b9c42d2
+RMD160 (librsvg-2.22.3.tar.bz2) = 54c834fbfb028b98f699bfeec94cd411b2d3f7bb
+Size (librsvg-2.22.3.tar.bz2) = 491576 bytes
 SHA1 (patch-ab) = ddc98a217624bd493092ed2718152c5552be4db6
-SHA1 (patch-ac) = 3f6863d3cc36d0ff69d493c914e69d7632fb03b4
diff -r cb35e0f2285b -r c3e95e8ff95d graphics/librsvg/patches/patch-aa
--- a/graphics/librsvg/patches/patch-aa Thu Oct 16 13:52:29 2008 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,38 +0,0 @@
-$NetBSD: patch-aa,v 1.5 2007/10/03 20:42:49 dmcmahill Exp $
-
---- tests/pdiff/pdiff.c.orig   2007-04-23 18:45:34.000000000 -0400
-+++ tests/pdiff/pdiff.c
-@@ -16,11 +16,32 @@
- 
- #define _GNU_SOURCE
- 
-+#include "config.h"
-+
- #include "lpyramid.h"
- #include <math.h>
- #include <stdio.h>
- #include <stdlib.h>
--#include <stdint.h>
-+
-+#ifdef HAVE_STDINT_H
-+#  include <stdint.h>
-+#elif defined(HAVE_INTTYPES_H)
-+#  include <inttypes.h>
-+#elif defined(HAVE_SYS_INT_TYPES_H)
-+#  include <sys/int_types.h>
-+#elif defined(_MSC_VER)
-+   typedef __int8 int8_t;
-+   typedef unsigned __int8 uint8_t;
-+   typedef __int16 int16_t;
-+   typedef unsigned __int16 uint16_t;
-+   typedef __int32 int32_t;
-+   typedef unsigned __int32 uint32_t;
-+   typedef __int64 int64_t;
-+   typedef unsigned __int64 uint64_t;
-+#else
-+#  error Cannot find definitions for fixed-width integral types (uint8_t, uint32_t, etc.)
-+#endif
-+
- #include "pdiff.h"
- 
- #ifndef M_PI
diff -r cb35e0f2285b -r c3e95e8ff95d graphics/librsvg/patches/patch-ac
--- a/graphics/librsvg/patches/patch-ac Thu Oct 16 13:52:29 2008 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,35 +0,0 @@
-$NetBSD: patch-ac,v 1.4 2007/10/03 20:42:50 dmcmahill Exp $
-
---- tests/pdiff/perceptualdiff.c.orig  2007-04-23 18:45:34.000000000 -0400
-+++ tests/pdiff/perceptualdiff.c
-@@ -16,8 +16,29 @@
-   if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
- 
-+#include "config.h"
-+
- #include <stdio.h>
--#include <stdint.h>
-+
-+#ifdef HAVE_STDINT_H
-+#  include <stdint.h>
-+#elif defined(HAVE_INTTYPES_H)
-+#  include <inttypes.h>
-+#elif defined(HAVE_SYS_INT_TYPES_H)
-+#  include <sys/int_types.h>
-+#elif defined(_MSC_VER)
-+   typedef __int8 int8_t;
-+   typedef unsigned __int8 uint8_t;
-+   typedef __int16 int16_t;
-+   typedef unsigned __int16 uint16_t;
-+   typedef __int32 int32_t;
-+   typedef unsigned __int32 uint32_t;
-+   typedef __int64 int64_t;
-+   typedef unsigned __int64 uint64_t;
-+#else
-+#  error Cannot find definitions for fixed-width integral types (uint8_t, uint32_t, etc.)
-+#endif
-+
- #include <string.h>
- #include <math.h>
- #include "lpyramid.h"



Home | Main Index | Thread Index | Old Index