aboutsummaryrefslogtreecommitdiff
path: root/graphics/librsvg2
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2009-04-10 05:56:28 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2009-04-10 05:56:28 +0000
commitae52bc80895a23ddbe33b86e75a9cf331ae32ba9 (patch)
tree5538a7d3541f6d56e4bbab9c6329f5b9db64dafb /graphics/librsvg2
parent7934df773e0cc2a9924de75dd7cad9cc3d79d4ee (diff)
downloadports-ae52bc80895a23ddbe33b86e75a9cf331ae32ba9.tar.gz
ports-ae52bc80895a23ddbe33b86e75a9cf331ae32ba9.zip
Notes
Diffstat (limited to 'graphics/librsvg2')
-rw-r--r--graphics/librsvg2/Makefile5
-rw-r--r--graphics/librsvg2/distinfo6
-rw-r--r--graphics/librsvg2/files/patch-cmdline-bugfixes29
3 files changed, 5 insertions, 35 deletions
diff --git a/graphics/librsvg2/Makefile b/graphics/librsvg2/Makefile
index 258b607da179..a9e5e0549aee 100644
--- a/graphics/librsvg2/Makefile
+++ b/graphics/librsvg2/Makefile
@@ -3,12 +3,11 @@
# Whom: Ade Lovett <ade@FreeBSD.org>
#
# $FreeBSD$
-# $MCom: ports-stable/graphics/librsvg2/Makefile,v 1.3 2008/09/23 20:34:45 mezz Exp $
+# $MCom: ports/graphics/librsvg2/Makefile,v 1.123 2009/03/17 14:48:53 kwm Exp $
#
PORTNAME= librsvg2
-PORTVERSION= 2.22.3
-PORTREVISION= 2
+PORTVERSION= 2.26.0
CATEGORIES= graphics gnome
MASTER_SITES= GNOME
MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
diff --git a/graphics/librsvg2/distinfo b/graphics/librsvg2/distinfo
index c57c3f32d69e..0807c3d1b7b5 100644
--- a/graphics/librsvg2/distinfo
+++ b/graphics/librsvg2/distinfo
@@ -1,3 +1,3 @@
-MD5 (gnome2/librsvg-2.22.3.tar.bz2) = c4ec4fdb2b1842e221ca39127e85682d
-SHA256 (gnome2/librsvg-2.22.3.tar.bz2) = 63f7cc948b60447c76e6797a2d521cba308ed42c673bd4b2212e1f0b4cd60f0a
-SIZE (gnome2/librsvg-2.22.3.tar.bz2) = 491576
+MD5 (gnome2/librsvg-2.26.0.tar.bz2) = 65dbd726a514fe8b797d26254b8efc1e
+SHA256 (gnome2/librsvg-2.26.0.tar.bz2) = fdcab5f0d86198d8cbd4ffe5b333076f75e707f6d7e4af5e87a8644ff7533bea
+SIZE (gnome2/librsvg-2.26.0.tar.bz2) = 477499
diff --git a/graphics/librsvg2/files/patch-cmdline-bugfixes b/graphics/librsvg2/files/patch-cmdline-bugfixes
deleted file mode 100644
index b70108aa3eb5..000000000000
--- a/graphics/librsvg2/files/patch-cmdline-bugfixes
+++ /dev/null
@@ -1,29 +0,0 @@
---- librsvg-2.22.2~/rsvg-convert.c 2007-07-01 23:43:44.000000000 +1000
-+++ rsvg-convert.c 2008-10-20 16:52:27.000000000 +1100
-@@ -31,6 +31,7 @@
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
-+#include <locale.h>
-
- #include "rsvg.h"
- #include "rsvg-cairo.h"
-@@ -52,7 +53,7 @@
- display_error (GError * err)
- {
- if (err) {
-- g_print ("%s", err->message);
-+ g_print ("%s\n", err->message);
- g_error_free (err);
- }
- }
-@@ -165,6 +166,9 @@
- {NULL}
- };
-
-+ /* Set the locale so that UTF-8 filenames work */
-+ setlocale(LC_ALL, "");
-+
- g_thread_init(NULL);
-
- g_option_context = g_option_context_new (_("- SVG Converter"));