Index: json-glib/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/json-glib/Makefile,v retrieving revision 1.4 diff -a -u -r1.4 Makefile --- json-glib/Makefile 2 Aug 2009 19:33:13 -0000 1.4 +++ json-glib/Makefile 11 Nov 2009 23:51:56 -0000 @@ -2,21 +2,20 @@ # Date created: 25 December 2008 # Whom: Joe Marcus Clarke # -# $FreeBSD: ports/devel/json-glib/Makefile,v 1.4 2009/08/02 19:33:13 mezz Exp $ +# $FreeBSD$ +# $MCom: ports/devel/json-glib/Makefile,v 1.5 2009/10/30 11:35:48 kwm Exp $ # PORTNAME= json-glib -PORTVERSION= 0.6.2 -PORTREVISION= 1 +PORTVERSION= 0.8.2 CATEGORIES= devel -MASTER_SITES= http://folks.o-hand.com/~ebassi/sources/ \ - ${MASTER_SITE_LOCAL:S/$/:local/} -MASTER_SITE_SUBDIR= marcus:local +MASTER_SITES= GNOME MAINTAINER= gnome@FreeBSD.org COMMENT= JSON (RFC 4627) interface for Glib USE_GMAKE= yes +USE_BZIP2= yes USE_GNOME= glib20 gnomehack gnomeprefix ltverhack USE_AUTOTOOLS= libtool:22 USE_LDCONFIG= yes Index: json-glib/distinfo =================================================================== RCS file: /home/pcvs/ports/devel/json-glib/distinfo,v retrieving revision 1.1 diff -a -u -r1.1 distinfo --- json-glib/distinfo 26 Dec 2008 01:47:45 -0000 1.1 +++ json-glib/distinfo 11 Nov 2009 23:51:56 -0000 @@ -1,3 +1,3 @@ -MD5 (json-glib-0.6.2.tar.gz) = d98f5580035ad0b37fa11896053a57af -SHA256 (json-glib-0.6.2.tar.gz) = 7befca7f7d7d65cbb260eacd86eff2c1dcae8d859ae2c3e3002e2536d02b2c49 -SIZE (json-glib-0.6.2.tar.gz) = 453865 +MD5 (json-glib-0.8.2.tar.bz2) = 5fcd08da526a60d28d0ced4524799231 +SHA256 (json-glib-0.8.2.tar.bz2) = 51d64ee2f70e7d8d67eca4c1b35575dd7aa2a08dad7662e53d6c6c60af7a3dde +SIZE (json-glib-0.8.2.tar.bz2) = 392020 Index: json-glib/pkg-plist =================================================================== RCS file: /home/pcvs/ports/devel/json-glib/pkg-plist,v retrieving revision 1.1 diff -a -u -r1.1 pkg-plist --- json-glib/pkg-plist 26 Dec 2008 01:47:45 -0000 1.1 +++ json-glib/pkg-plist 11 Nov 2009 23:51:56 -0000 @@ -12,20 +12,25 @@ libdata/pkgconfig/json-glib-1.0.pc %%DOCSDIR%%/JsonGenerator.html %%DOCSDIR%%/JsonParser.html +%%DOCSDIR%%/annotation-glossary.html %%DOCSDIR%%/ch01.html %%DOCSDIR%%/ch02.html %%DOCSDIR%%/ch03.html +%%DOCSDIR%%/ch04.html %%DOCSDIR%%/home.png %%DOCSDIR%%/index.html %%DOCSDIR%%/index.sgml %%DOCSDIR%%/ix01.html %%DOCSDIR%%/ix02.html +%%DOCSDIR%%/ix03.html +%%DOCSDIR%%/ix04.html +%%DOCSDIR%%/ix05.html %%DOCSDIR%%/json-advanced.html %%DOCSDIR%%/json-base.html %%DOCSDIR%%/json-glib-GObject-integration.html -%%DOCSDIR%%/json-glib-JsonArray.html -%%DOCSDIR%%/json-glib-JsonNode.html -%%DOCSDIR%%/json-glib-JsonObject.html +%%DOCSDIR%%/json-glib-JSON-Array.html +%%DOCSDIR%%/json-glib-JSON-Node.html +%%DOCSDIR%%/json-glib-JSON-Object.html %%DOCSDIR%%/json-glib-Versioning-information.html %%DOCSDIR%%/json-glib.devhelp %%DOCSDIR%%/json-glib.devhelp2 Index: json-glib/files/patch-json-glib_json-object.c =================================================================== RCS file: json-glib/files/patch-json-glib_json-object.c diff -N json-glib/files/patch-json-glib_json-object.c --- json-glib/files/patch-json-glib_json-object.c 26 Dec 2008 18:38:37 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,21 +0,0 @@ -diff --git a/json-glib/json-gobject.c b/json-glib/json-gobject.c -index 15e9ed5..eeb571c 100644 ---- json-glib/json-gobject.c -+++ json-glib/json-gobject.c -@@ -189,7 +189,7 @@ json_deserialize_pspec (GValue *value, - { - JsonArray *array = json_node_get_array (node); - guint i, array_len = json_array_get_length (array); -- GPtrArray *str_array = g_ptr_array_sized_new (array_len); -+ GPtrArray *str_array = g_ptr_array_sized_new (array_len + 1); - - for (i = 0; i < array_len; i++) - { -@@ -201,6 +201,7 @@ json_deserialize_pspec (GValue *value, - if (json_node_get_string (val) != NULL); - g_ptr_array_add (str_array, (gpointer) json_node_get_string (val)); - } -+ g_ptr_array_add (str_array, NULL); - - g_value_set_boxed (value, str_array->pdata); -