diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-07-13 03:28:07 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-07-13 03:28:07 +0800 |
commit | 9046375b76d327be1d083a22947d563da6289a22 (patch) | |
tree | 03886e6b50d4d7088748404c7601744e6b75db22 /devel | |
parent | c21c208bf94bc291a0938e85996f119b45c1ec0e (diff) | |
download | marcuscom-ports-9046375b76d327be1d083a22947d563da6289a22.tar marcuscom-ports-9046375b76d327be1d083a22947d563da6289a22.tar.gz marcuscom-ports-9046375b76d327be1d083a22947d563da6289a22.tar.bz2 marcuscom-ports-9046375b76d327be1d083a22947d563da6289a22.tar.lz marcuscom-ports-9046375b76d327be1d083a22947d563da6289a22.tar.xz marcuscom-ports-9046375b76d327be1d083a22947d563da6289a22.tar.zst marcuscom-ports-9046375b76d327be1d083a22947d563da6289a22.zip |
Update to 0.9.2.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@14310 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel')
-rw-r--r-- | devel/gobject-introspection/Makefile | 6 | ||||
-rw-r--r-- | devel/gobject-introspection/distinfo | 6 | ||||
-rw-r--r-- | devel/gobject-introspection/files/patch-girepository_giconstantinfo.c | 46 | ||||
-rw-r--r-- | devel/gobject-introspection/pkg-plist | 47 |
4 files changed, 51 insertions, 54 deletions
diff --git a/devel/gobject-introspection/Makefile b/devel/gobject-introspection/Makefile index 780921553..d5a33c57c 100644 --- a/devel/gobject-introspection/Makefile +++ b/devel/gobject-introspection/Makefile @@ -2,12 +2,12 @@ # Date created: 19 July 2009 # Whom: Alexander Logvinov <avl@FreeBSD.org> # -# $FreeBSD: ports/devel/gobject-introspection/Makefile,v 1.10 2010/06/06 20:09:32 marcus Exp $ -# $MCom: ports/devel/gobject-introspection/Makefile,v 1.12 2010/06/24 09:53:19 kwm Exp $ +# $FreeBSD$ +# $MCom: ports/devel/gobject-introspection/Makefile,v 1.13 2010/06/29 20:12:54 kwm Exp $ # PORTNAME= gobject-introspection -PORTVERSION= 0.9.0 +PORTVERSION= 0.9.2 CATEGORIES= devel MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/devel/gobject-introspection/distinfo b/devel/gobject-introspection/distinfo index 30b940fbf..eb7c41807 100644 --- a/devel/gobject-introspection/distinfo +++ b/devel/gobject-introspection/distinfo @@ -1,3 +1,3 @@ -MD5 (gnome2/gobject-introspection-0.9.0.tar.bz2) = 11aac73dc37348bf3dd11a4f400500ad -SHA256 (gnome2/gobject-introspection-0.9.0.tar.bz2) = d86c6f6612c47f0ea25178eda88f91629992f6c191a8949c797dee9bfc9ef9d3 -SIZE (gnome2/gobject-introspection-0.9.0.tar.bz2) = 582141 +MD5 (gnome2/gobject-introspection-0.9.2.tar.bz2) = 921f03ddca49241a56ff12b81db0e92c +SHA256 (gnome2/gobject-introspection-0.9.2.tar.bz2) = 0793c24d30d1d2d42e23bf9c498ec336c0fc0f048d27cb95d72236ef90ca1fce +SIZE (gnome2/gobject-introspection-0.9.2.tar.bz2) = 806935 diff --git a/devel/gobject-introspection/files/patch-girepository_giconstantinfo.c b/devel/gobject-introspection/files/patch-girepository_giconstantinfo.c deleted file mode 100644 index 45f687ba8..000000000 --- a/devel/gobject-introspection/files/patch-girepository_giconstantinfo.c +++ /dev/null @@ -1,46 +0,0 @@ ---- girepository/giconstantinfo.c.orig 2010-06-29 22:02:31.000000000 +0200 -+++ girepository/giconstantinfo.c 2010-06-29 22:08:27.000000000 +0200 -@@ -64,6 +64,9 @@ g_constant_info_get_type (GIConstantInfo - return _g_type_info_new ((GIBaseInfo*)info, rinfo->typelib, rinfo->offset + 8); - } - -+#define DO_ALIGNED_COPY(dest_addr, src_addr, type) \ -+ memcpy((dest_addr), (src_addr), sizeof(type)) -+ - /** - * g_constant_info_get_value: - * @info: a #GIConstantInfo -@@ -118,16 +121,16 @@ g_constant_info_get_value (GIConstantInf - value->v_uint32 = *(guint32*)&rinfo->typelib->data[blob->offset]; - break; - case GI_TYPE_TAG_INT64: -- value->v_int64 = *(gint64*)&rinfo->typelib->data[blob->offset]; -+ DO_ALIGNED_COPY(&value->v_int64, &rinfo->typelib->data[blob->offset], gint64); - break; - case GI_TYPE_TAG_UINT64: -- value->v_uint64 = *(guint64*)&rinfo->typelib->data[blob->offset]; -+ DO_ALIGNED_COPY(&value->v_uint64, &rinfo->typelib->data[blob->offset], guint64); - break; - case GI_TYPE_TAG_FLOAT: -- value->v_float = *(gfloat*)&rinfo->typelib->data[blob->offset]; -+ DO_ALIGNED_COPY(&value->v_float, &rinfo->typelib->data[blob->offset], gfloat); - break; - case GI_TYPE_TAG_DOUBLE: -- value->v_double = *(gdouble*)&rinfo->typelib->data[blob->offset]; -+ DO_ALIGNED_COPY(&value->v_double, &rinfo->typelib->data[blob->offset], gdouble); - break; - case GI_TYPE_TAG_TIME_T: - value->v_long = *(long*)&rinfo->typelib->data[blob->offset]; -@@ -145,10 +148,10 @@ g_constant_info_get_value (GIConstantInf - value->v_uint = *(guint*)&rinfo->typelib->data[blob->offset]; - break; - case GI_TYPE_TAG_LONG: -- value->v_long = *(glong*)&rinfo->typelib->data[blob->offset]; -+ DO_ALIGNED_COPY(&value->v_long, &rinfo->typelib->data[blob->offset], glong); - break; - case GI_TYPE_TAG_ULONG: -- value->v_ulong = *(gulong*)&rinfo->typelib->data[blob->offset]; -+ DO_ALIGNED_COPY(&value->v_ulong, &rinfo->typelib->data[blob->offset], gulong); - break; - } - } diff --git a/devel/gobject-introspection/pkg-plist b/devel/gobject-introspection/pkg-plist index 5dd0d24e6..e2f7992a6 100644 --- a/devel/gobject-introspection/pkg-plist +++ b/devel/gobject-introspection/pkg-plist @@ -101,7 +101,7 @@ lib/gobject-introspection/giscanner/xmlwriter.pyo lib/libgirepository-1.0.a lib/libgirepository-1.0.la lib/libgirepository-1.0.so -lib/libgirepository-1.0.so.0 +lib/libgirepository-1.0.so.1 lib/libgirepository-everything-1.0.a lib/libgirepository-everything-1.0.la lib/libgirepository-everything-1.0.so @@ -130,7 +130,50 @@ share/gir-1.0/xft-2.0.gir share/gir-1.0/xlib-2.0.gir share/gir-1.0/xrandr-1.3.gir share/gobject-introspection-1.0/Makefile.introspection -@dirrm share/gobject-introspection-1.0 +share/gtk-doc/html/gi/annotation-glossary.html +share/gtk-doc/html/gi/gi-GIArgInfo.html +share/gtk-doc/html/gi/gi-GIBaseInfo.html +share/gtk-doc/html/gi/gi-GICallableInfo.html +share/gtk-doc/html/gi/gi-GIConstantInfo.html +share/gtk-doc/html/gi/gi-GIEnumInfo.html +share/gtk-doc/html/gi/gi-GIErrorDomainInfo.html +share/gtk-doc/html/gi/gi-GIFieldInfo.html +share/gtk-doc/html/gi/gi-GIFunctionInfo.html +share/gtk-doc/html/gi/gi-GIInterfaceInfo.html +share/gtk-doc/html/gi/gi-GIObjectInfo.html +share/gtk-doc/html/gi/gi-GIPropertyInfo.html +share/gtk-doc/html/gi/gi-GIRegisteredTypeInfo.html +share/gtk-doc/html/gi/gi-GISignalInfo.html +share/gtk-doc/html/gi/gi-GITypeInfo.html +share/gtk-doc/html/gi/gi-GIVFuncInfo.html +share/gtk-doc/html/gi/gi-ffi.html +share/gtk-doc/html/gi/gi-gir-reference.html +share/gtk-doc/html/gi/gi-gir.html +share/gtk-doc/html/gi/gi-girepository.html +share/gtk-doc/html/gi/gi-girffi.html +share/gtk-doc/html/gi/gi-gistructinfo.html +share/gtk-doc/html/gi/gi-giunioninfo.html +share/gtk-doc/html/gi/gi-gtypelib.html +share/gtk-doc/html/gi/gi-libgirepository.html +share/gtk-doc/html/gi/gi-overview.html +share/gtk-doc/html/gi/gi-repository-structs.html +share/gtk-doc/html/gi/gi-struct-hierarchy.html +share/gtk-doc/html/gi/gi-typelib.html +share/gtk-doc/html/gi/gi.devhelp +share/gtk-doc/html/gi/gi.devhelp2 +share/gtk-doc/html/gi/girepository.html +share/gtk-doc/html/gi/glib.html +share/gtk-doc/html/gi/home.png +share/gtk-doc/html/gi/index.html +share/gtk-doc/html/gi/index.sgml +share/gtk-doc/html/gi/left.png +share/gtk-doc/html/gi/overview.png +share/gtk-doc/html/gi/right.png +share/gtk-doc/html/gi/style.css +share/gtk-doc/html/gi/up.png +@dirrm share/gtk-doc/html/gi +@dirrmtry share/gtk-doc/html +@dirrmtry share/gtk-doc @dirrm include/gobject-introspection-1.0 @dirrmtry lib/girepository-1.0 @dirrm lib/gobject-introspection/giscanner |