hi,

here are four diffs to update atk, glib2, gtk+2 and pango.
so far, the diffs have been tested on amd64, i386, sgi (only atk/glib2)
and sparc64.

there have been some major changes to glib2 (i.e. addition of the GIO
library, and G_GNUC_PRETTY_FUNCTION has been deprecated). the latter
causes some known breakage in x11/gnome, but as most ports in there will
soon be updated i'm not worrying too much about that.

please test these diffs and report any success/failures/breakage.

diffs are attached, and can be found here:
http://humppa.nl/~jasper/tmp/gtk2/

cheers,
jasper

ps: and yes, you have to remove glib2 before building the new version,
or your build will fail. (undefined reference to ...)

-- 
"The good life is one inspired by love and guided by knowledge."
         -- Bertrand Russel
*Fixes #508846.
*Fixes #502840, #500978, #477763.

Index: Makefile
===================================================================
RCS file: /cvs/ports/devel/atk/Makefile,v
retrieving revision 1.24
diff -u -r1.24 Makefile
--- Makefile    31 Oct 2007 21:54:11 -0000      1.24
+++ Makefile    12 Mar 2008 22:31:10 -0000
@@ -2,9 +2,8 @@
 
 COMMENT=               accessibility toolkit used by gtk+
 
-DISTNAME=              atk-1.20.0
-PKGNAME=               ${DISTNAME}p0
-SHARED_LIBS += atk-1.0             2009.1   # .2009.1
+DISTNAME=              atk-1.22.0
+SHARED_LIBS += atk-1.0             2200.0   # .2209.1
 
 CATEGORIES=            devel
 
@@ -16,12 +15,12 @@
 PERMIT_DISTFILES_CDROM=        Yes
 PERMIT_DISTFILES_FTP=  Yes
 
-MASTER_SITES=          ${MASTER_SITE_GNOME:=sources/atk/1.20/}
+MASTER_SITES=          ${MASTER_SITE_GNOME:=sources/atk/1.22/}
 EXTRACT_SUFX=           .tar.bz2
 
 MODULES=               devel/gettext
 WANTLIB=               pcre
-LIB_DEPENDS=           
glib-2.0.>=1200.0,gmodule-2.0.>=1200.0,gobject-2.0.>=1200.0::devel/glib2
+LIB_DEPENDS=           glib-2.0,gmodule-2.0,gobject-2.0::devel/glib2
 
 USE_GMAKE=             Yes
 USE_LIBTOOL=           Yes
Index: distinfo
===================================================================
RCS file: /cvs/ports/devel/atk/distinfo,v
retrieving revision 1.14
diff -u -r1.14 distinfo
--- distinfo    24 Oct 2007 22:30:06 -0000      1.14
+++ distinfo    12 Mar 2008 22:31:10 -0000
@@ -1,5 +1,5 @@
-MD5 (atk-1.20.0.tar.bz2) = sanijZ9U6jBr2FpMhLJfuA==
-RMD160 (atk-1.20.0.tar.bz2) = Mw4lNOF9HnUlQibJdsL352yIjt8=
-SHA1 (atk-1.20.0.tar.bz2) = 4wn+1BVIGRlN2/m+TKMlLMMUNM8=
-SHA256 (atk-1.20.0.tar.bz2) = HzsvLLtbDY2gkklwxmw+y/4TxOQ2Cwrx23VFQBo3R8k=
-SIZE (atk-1.20.0.tar.bz2) = 705435
+MD5 (atk-1.22.0.tar.bz2) = BqKzmiLVyjXEdDXaa5ZDrA==
+RMD160 (atk-1.22.0.tar.bz2) = PnwsX6KzxzHF/TdsitdmRst7kwY=
+SHA1 (atk-1.22.0.tar.bz2) = 0HpCr/JB9Y473n/iW+lPmJNhxgU=
+SHA256 (atk-1.22.0.tar.bz2) = Z31m6aD8kZBCwo1Av5NW9FlT0hj+YTqEE36fPYwiXek=
+SIZE (atk-1.22.0.tar.bz2) = 709221
* Loads and loads and loads of bugs fixed.

* Fix a crash in g_themed_icon_new

* Fix the definition of G_INLINE_FUNC to work with gcc 4.3.0

* GIO:
 * GIO: a VFS API, designed to replace GnomeVFS. The GIO implementation 
   in GLib has support for local filesystems. The new, separate gvfs 
   module contains various backend implementations (cifs, ftp, sftp,
   http, ...)
 - Add missing GMountMountFlags argument to g_unix_volume_mount
 - Fix the adopt_orphan_mount vfunc to take a volume monitor 
   reference
 - Add properties to GThemedIcon for bindings sake
 - New file attributes: trash::item-count, filesystem::use-preview
 - Rename g_file_contains_file to g_file_has_prefix
 - g_file_query_filesystem_info grew async variants
 - g_themed_icon_append_name: new convenience function
 - g_content_type_get_icon is implemented now
 - Only show mounts in /media and ~
 - g_file_contains_file has been renamed to g_file_has_prefix
 - g_volume_should_automount: new function to determine if a volume
   should be mounted automatically
 - g_file_query_default_handler: new convenience function to get
   the default handler for a file
 - g_app_info_launch_default_for_uri new convenience function to
   launch the default handler for a URI
 - Use mimeapps.list and defaults.list as discussed on xdg list
   recently
 - g_app_info_get_default_for_uri_scheme has a real implementation
   now (gvfs provides a GConf-based implementation)
 - There is the beginning of a test suite
 - standard::description:  new file attribute
 - GMountMountFlags flags argument added to mount calls
 - g_file_copy has an async variant now
 - Drives and volumes now have API to get identifiers
   like Hal UDIs or UUIDs.
 - There is now a registration API to let modules register
   extensions they provide, such as volume monitor implementations
 - Don't include a copy of the inotify headers, rely on system headers
 - g_file_find_enclosing_mount has an async variant now
 - Reduntant seek API on file streams has been removed
 - Mount operation API change: unhandled methods get reported via 
   the reply, rather than by the signal emission return value
 - File monitor API change: Add a GError argument to g_file_monitor_file
 - g_unix_mount_guess_should_display(): new function
 - Clarified the semantics of g_app_info_get_all()
 - API for memory input and output streams has been changed a bit
 - GDirectoryMonitor has been removed; GFileMonitor can monitor
    files and directories now

* Other:
 - g_uri_get_scheme has been renamed go g_uri_parse_scheme

* GObject:
 - class initialization is now threadsafe

* G_GNUC_PRETTY_FUNCTION has been deprecated

* GChecksum:
 * GChecksum: provides various hash algorithms, such as MD5, SHA-1
   and SHA-256
 - g_checksum_update can accept nul-terminated strings
 - The MD5 implementation works correctly on buffers 
   that are longer than 64 bytes

 * Portability fixes:
 - Assertion functions are marked as noreturn again
 - Handling of inline functions has been fixed to work with gcc 4.3
 - C99 comments have been removed from headers
 - The nonportable sed -i option is no longer used

 * GTest: a test framework 
 
 * GHash:
 - GHash has iterators, as an alternative to g_hash_table_foreach

 * GMarkup: 
 - g_markup_parse_context_get_element_stack: New function to
   get the stack of open elements
 - G_MARKUP_PREFIX_ERROR_POSITION: New flag to improve error
   reporting
 - g_markup_collect_attributes: Convenience function for handling
   attributes

* GKeyFile: 
 - Functions that take a GError now return a boolean to indicate 
   success, instead of void
 - Various performance improvements

* GAsyncQueue:
 - g_async_queue_new_full: new function that allows to specify
   a free function for leftover elements
 
* GError:
 - g_prefix_error and g_propagate_prefixed_error: New functions
   to ease error propagation

* Internationalization:
 - C_: A new 2-argument variant of the Q_() macro 
 - Use native character set conversion API on Windows

* GLib builds with automake 1.10

Index: Makefile
===================================================================
RCS file: /cvs/ports/devel/glib2/Makefile,v
retrieving revision 1.45
diff -u -r1.45 Makefile
--- Makefile    13 Feb 2008 12:01:53 -0000      1.45
+++ Makefile    23 Mar 2008 11:34:58 -0000
@@ -3,7 +3,7 @@
 COMMENT-main=          general-purpose utility library
 COMMENT-docs=          glib2 documentation
 
-VERSION=               2.14.5
+VERSION=               2.16.1
 DISTNAME=              glib-${VERSION}
 PKGNAME-main=          glib2-${VERSION}
 PKGNAME-docs=          glib2-docs-${VERSION}
@@ -11,10 +11,11 @@
 
 HOMEPAGE=              http://www.gtk.org/
 
-SHARED_LIBS += glib-2.0             1400.3   # .1400.5
-SHARED_LIBS += gobject-2.0          1400.3   # .1400.5
-SHARED_LIBS += gmodule-2.0          1400.3   # .1400.5
-SHARED_LIBS += gthread-2.0          1400.3   # .1400.5
+SHARED_LIBS += glib-2.0             1600.0   # .1600.1
+SHARED_LIBS += gobject-2.0          1600.0   # .1600.1
+SHARED_LIBS += gmodule-2.0          1600.0   # .1600.1
+SHARED_LIBS += gthread-2.0          1600.0   # .1600.1
+SHARED_LIBS +=  gio-2.0              1600.0   # .0.0
 
 # LGPL
 PERMIT_PACKAGE_CDROM=  Yes
@@ -22,12 +23,13 @@
 PERMIT_DISTFILES_CDROM=        Yes
 PERMIT_DISTFILES_FTP=  Yes
 
-MASTER_SITES=          ${MASTER_SITE_GNOME:=sources/glib/2.14/}
+MASTER_SITES=          ${MASTER_SITE_GNOME:=sources/glib/2.16/}
 EXTRACT_SUFX=          .tar.bz2
 
 MULTI_PACKAGES=                -main -docs
 
 MODULES=               devel/gettext
+
 WANTLIB-main=          c
 
 LIB_DEPENDS-main=      ${LIB_DEPENDS} \
@@ -49,7 +51,8 @@
 CONFIGURE_STYLE=       gnu
 CONFIGURE_ARGS+=       ${CONFIGURE_SHARED} \
                        --enable-static \
-                       --with-pcre=system
+                       --with-pcre=system \
+                       --disable-fam
 CONFIGURE_ENV=         CPPFLAGS="-I${LOCALBASE}/include" \
                        LDFLAGS="-L${LOCALBASE}/lib"
 
Index: distinfo
===================================================================
RCS file: /cvs/ports/devel/glib2/distinfo,v
retrieving revision 1.25
diff -u -r1.25 distinfo
--- distinfo    9 Feb 2008 17:47:34 -0000       1.25
+++ distinfo    23 Mar 2008 11:34:58 -0000
@@ -1,5 +1,5 @@
-MD5 (glib-2.14.5.tar.bz2) = x+7arNOdNgbDB9pep/xwGA==
-RMD160 (glib-2.14.5.tar.bz2) = 2kW8CZmHdRWYfPbm4TlkLyM7cUU=
-SHA1 (glib-2.14.5.tar.bz2) = 2K6dy3ROv8sjgJw8VS9NckyyRYw=
-SHA256 (glib-2.14.5.tar.bz2) = UgdHEZQQbk5PdgaBTSRVLoqPFKtkjDAFjc8/eze7BdA=
-SIZE (glib-2.14.5.tar.bz2) = 3384904
+MD5 (glib-2.16.1.tar.bz2) = mFLa8GBfgnv9cZn/5PWyLQ==
+RMD160 (glib-2.16.1.tar.bz2) = nQrNiUze8PiwxyDs8gv6I4FpwZU=
+SHA1 (glib-2.16.1.tar.bz2) = c2KyvqARhR93cLQiSgzagBQlaTs=
+SHA256 (glib-2.16.1.tar.bz2) = 8wWoKLUxlKmcNd+4jvpNg9OZipW52IQ8o/hMKVnlZpU=
+SIZE (glib-2.16.1.tar.bz2) = 4529604
Index: patches/PPC-patch-glib_Makefile_in
===================================================================
RCS file: /cvs/ports/devel/glib2/patches/PPC-patch-glib_Makefile_in,v
retrieving revision 1.1
diff -u -r1.1 PPC-patch-glib_Makefile_in
--- patches/PPC-patch-glib_Makefile_in  25 Jun 2007 15:28:44 -0000      1.1
+++ patches/PPC-patch-glib_Makefile_in  23 Mar 2008 11:34:58 -0000
@@ -1,7 +1,6 @@
-$OpenBSD: PPC-patch-glib_Makefile_in,v 1.1 2007/06/25 15:28:44 ajacoutot Exp $
---- glib/Makefile.in.orig      Mon Jun 25 12:11:11 2007
-+++ glib/Makefile.in   Mon Jun 25 12:11:32 2007
-@@ -51,7 +51,7 @@ CATALOGS = @CATALOGS@
+--- Makefile.in.orig   Mon Feb 25 17:41:41 2008
++++ Makefile.in        Thu Mar  6 23:22:51 2008
+@@ -186,7 +186,7 @@
  CATOBJEXT = @CATOBJEXT@
  CC = @CC@
  CCDEPMODE = @CCDEPMODE@
@@ -9,4 +8,13 @@
 +CFLAGS = @CFLAGS@ -O0
  CPP = @CPP@
  CPPFLAGS = @CPPFLAGS@
- CROSS_COMPILING_FALSE = @CROSS_COMPILING_FALSE@
+ CXX = @CXX@
+@@ -592,7 +592,7 @@
+ @[EMAIL PROTECTED] = libglib-2.0.la
+ @[EMAIL PROTECTED] = gtester.c
+ @[EMAIL PROTECTED] = libglib-2.0.la
[EMAIL PROTECTED]@auto_config_binscripts = gtester-report
[EMAIL PROTECTED]@auto_config_binscripts =
+ @[EMAIL PROTECTED] = ${auto_config_binscripts}
+ @[EMAIL PROTECTED] = \
+ @OS_UNIX_TRUE@        "bindir"        : "${bindir}",          \
Index: patches/patch-configure
===================================================================
RCS file: patches/patch-configure
diff -N patches/patch-configure
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ patches/patch-configure     23 Mar 2008 11:34:58 -0000
@@ -0,0 +1,12 @@
+$OpenBSD$
+--- configure.orig     Tue Mar 11 01:41:11 2008
++++ configure  Tue Mar 11 21:22:36 2008
+@@ -32747,6 +32747,8 @@ _ACEOF
+ cat confdefs.h >>conftest.$ac_ext
+ cat >>conftest.$ac_ext <<_ACEOF
+ /* end confdefs.h.  */
++#include <sys/param.h>
++#include <sys/mount.h>
+ $ac_includes_default
+ int
+ main ()
Index: patches/patch-configure_in
===================================================================
RCS file: patches/patch-configure_in
diff -N patches/patch-configure_in
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ patches/patch-configure_in  23 Mar 2008 11:34:58 -0000
@@ -0,0 +1,25 @@
+$OpenBSD$
+--- configure.in.orig  Tue Mar 11 21:31:22 2008
++++ configure.in       Tue Mar 11 21:31:28 2008
+@@ -837,9 +837,20 @@ AC_CHECK_HEADERS([sys/select.h sys/types.h stdint.h sc
+ AC_CHECK_HEADERS([sys/vfs.h sys/mount.h sys/vmount.h sys/statfs.h 
sys/statvfs.h])
+ AC_CHECK_HEADERS([mntent.h sys/mnttab.h sys/vfstab.h sys/mntctl.h 
sys/sysctl.h fstab.h])
+ 
++$f_fstypename_includes="\
++$ac_includes_default
++#ifdef HAVE_PARAM_H
++#include <sys/param.h>
++#endif
++#ifdef HAVE_MOUNT_H
++#include <sys/mount.h>
++#endif
++"
++
+ # check for structure fields
+ AC_CHECK_MEMBERS([struct stat.st_mtimensec, struct stat.st_mtim.tv_nsec, 
struct stat.st_atimensec, struct stat.st_atim.tv_nsec, struct 
stat.st_ctimensec, struct stat.st_ctim.tv_nsec])
+-AC_CHECK_MEMBERS([struct stat.st_blksize, struct stat.st_blocks, struct 
statfs.f_fstypename])
++AC_CHECK_MEMBERS([struct stat.st_blksize, struct stat.st_blocks])
++AC_CHECK_MEMBERS([struct statfs.f_fstypename],,,[$f_fstypename_includes])
+ 
+ # Checks for libcharset
+ jm_LANGINFO_CODESET
Index: patches/patch-gio_glocalfile_c
===================================================================
RCS file: patches/patch-gio_glocalfile_c
diff -N patches/patch-gio_glocalfile_c
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ patches/patch-gio_glocalfile_c      23 Mar 2008 11:34:58 -0000
@@ -0,0 +1,12 @@
+$OpenBSD$
+--- gio/glocalfile.c.orig      Tue Mar 11 21:39:05 2008
++++ gio/glocalfile.c   Tue Mar 11 21:40:09 2008
+@@ -1001,7 +1001,7 @@ g_local_file_query_filesystem_info (GFile         *fil
+ #endif
+     }
+ #ifdef USE_STATFS
+-#if defined(HAVE_STRUCT_STATFS_FS_TYPENAME)
++#if defined(HAVE_STRUCT_STATFS_F_FSTYPENAME)
+   fstype = g_strdup(statfs_buffer.f_fstypename);
+ #else
+   fstype = get_fs_type (statfs_buffer.f_type);
Index: patches/patch-glib_Makefile_in
===================================================================
RCS file: patches/patch-glib_Makefile_in
diff -N patches/patch-glib_Makefile_in
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ patches/patch-glib_Makefile_in      23 Mar 2008 11:34:58 -0000
@@ -0,0 +1,12 @@
+$OpenBSD$
+--- glib/Makefile.in.orig      Mon Feb 25 17:41:41 2008
++++ glib/Makefile.in   Thu Mar  6 22:27:34 2008
+@@ -592,7 +592,7 @@ INSTALL_PROGS = $(am__append_1) $(am__append_2)
+ @[EMAIL PROTECTED] = libglib-2.0.la
+ @[EMAIL PROTECTED] = gtester.c
+ @[EMAIL PROTECTED] = libglib-2.0.la
[EMAIL PROTECTED]@auto_config_binscripts = gtester-report
[EMAIL PROTECTED]@auto_config_binscripts =
+ @[EMAIL PROTECTED] = ${auto_config_binscripts}
+ @[EMAIL PROTECTED] = \
+ @OS_UNIX_TRUE@        "bindir"        : "${bindir}",          \
Index: patches/patch-glib_gmacros_h
===================================================================
RCS file: /cvs/ports/devel/glib2/patches/patch-glib_gmacros_h,v
retrieving revision 1.7
diff -u -r1.7 patch-glib_gmacros_h
--- patches/patch-glib_gmacros_h        24 Oct 2007 22:29:03 -0000      1.7
+++ patches/patch-glib_gmacros_h        23 Mar 2008 11:34:58 -0000
@@ -1,6 +1,6 @@
 $OpenBSD: patch-glib_gmacros_h,v 1.7 2007/10/24 22:29:03 jasper Exp $
---- glib/gmacros.h.orig        Sun Sep 16 18:28:33 2007
-+++ glib/gmacros.h     Tue Oct  2 20:47:04 2007
+--- glib/gmacros.h.orig        Mon Feb 11 18:14:22 2008
++++ glib/gmacros.h     Fri Feb 22 11:40:05 2008
 @@ -34,6 +34,7 @@
  /* We include stddef.h to get the system's definition of NULL
   */
@@ -9,7 +9,7 @@
  
  /* Here we provide G_GNUC_EXTENSION as an alias for __extension__,
   * where this is valid. This allows for warningless compilation of
-@@ -169,11 +170,13 @@
+@@ -171,11 +172,13 @@
  #define       TRUE    (!FALSE)
  #endif
  
Index: patches/patch-glib_gstrfuncs_c
===================================================================
RCS file: /cvs/ports/devel/glib2/patches/patch-glib_gstrfuncs_c,v
retrieving revision 1.6
diff -u -r1.6 patch-glib_gstrfuncs_c
--- patches/patch-glib_gstrfuncs_c      5 Dec 2007 14:31:24 -0000       1.6
+++ patches/patch-glib_gstrfuncs_c      23 Mar 2008 11:34:58 -0000
@@ -1,7 +1,7 @@
 $OpenBSD: patch-glib_gstrfuncs_c,v 1.6 2007/12/05 14:31:24 steven Exp $
---- glib/gstrfuncs.c.orig      Sat Nov 24 07:40:59 2007
-+++ glib/gstrfuncs.c   Sun Nov 25 22:47:55 2007
-@@ -1310,7 +1310,7 @@ g_strerror (gint errnum)
+--- glib/gstrfuncs.c.orig      Mon Feb 11 18:14:22 2008
++++ glib/gstrfuncs.c   Fri Feb 22 11:40:05 2008
+@@ -1311,7 +1311,7 @@ g_strerror (gint errnum)
        g_static_private_set (&msg_private, msg, g_free);
      }
  
@@ -10,7 +10,7 @@
  
    errno = saved_errno;
    return msg;
-@@ -1460,7 +1460,7 @@ extern const char *strsignal(int);
+@@ -1461,7 +1461,7 @@ extern const char *strsignal(int);
        g_static_private_set (&msg_private, msg, g_free);
      }
  
Index: patches/patch-tests_Makefile_in
===================================================================
RCS file: /cvs/ports/devel/glib2/patches/patch-tests_Makefile_in,v
retrieving revision 1.6
diff -u -r1.6 patch-tests_Makefile_in
--- patches/patch-tests_Makefile_in     9 Feb 2008 17:47:34 -0000       1.6
+++ patches/patch-tests_Makefile_in     23 Mar 2008 11:34:58 -0000
@@ -1,7 +1,7 @@
 $OpenBSD: patch-tests_Makefile_in,v 1.6 2008/02/09 17:47:34 jasper Exp $
---- tests/Makefile.in.orig     Tue Jan  8 02:42:12 2008
-+++ tests/Makefile.in  Fri Feb  1 00:39:45 2008
-@@ -355,7 +355,6 @@ test_programs = \
+--- tests/Makefile.in.orig     Mon Feb 11 19:21:23 2008
++++ tests/Makefile.in  Fri Feb 22 11:40:05 2008
+@@ -714,7 +714,6 @@ test_programs = \
        tree-test                               \
        type-test                               \
        unicode-caseconv                        \
Index: patches/patch-tests_refcount_Makefile_in
===================================================================
RCS file: /cvs/ports/devel/glib2/patches/patch-tests_refcount_Makefile_in,v
retrieving revision 1.6
diff -u -r1.6 patch-tests_refcount_Makefile_in
--- patches/patch-tests_refcount_Makefile_in    9 Feb 2008 17:47:34 -0000       
1.6
+++ patches/patch-tests_refcount_Makefile_in    23 Mar 2008 11:34:58 -0000
@@ -1,9 +1,9 @@
 $OpenBSD: patch-tests_refcount_Makefile_in,v 1.6 2008/02/09 17:47:34 jasper 
Exp $
---- tests/refcount/Makefile.in.orig    Tue Jan  8 02:42:13 2008
-+++ tests/refcount/Makefile.in Fri Feb  1 00:39:45 2008
-@@ -264,7 +264,6 @@ libgobject = $(top_builddir)/gobject/libgobject-2.0.la
+--- tests/refcount/Makefile.in.orig    Mon Feb 11 18:21:42 2008
++++ tests/refcount/Makefile.in Fri Feb 22 11:40:06 2008
+@@ -341,7 +341,6 @@ libgmodule = $(top_builddir)/gmodule/libgmodule-2.0.la
+ libgobject = $(top_builddir)/gobject/libgobject-2.0.la
  LDADD = $(libglib) $(libgobject) $(libgthread) $(G_THREAD_LIBS)
- 
  test_programs = \
 -      closures                                \
        objects                                 \
Index: pkg/PFRAG.shared-main
===================================================================
RCS file: /cvs/ports/devel/glib2/pkg/PFRAG.shared-main,v
retrieving revision 1.1
diff -u -r1.1 PFRAG.shared-main
--- pkg/PFRAG.shared-main       24 Nov 2006 16:50:10 -0000      1.1
+++ pkg/PFRAG.shared-main       23 Mar 2008 11:34:58 -0000
@@ -1,4 +1,5 @@
 @comment $OpenBSD: PFRAG.shared-main,v 1.1 2006/11/24 16:50:10 steven Exp $
[EMAIL PROTECTED] lib/libgio-2.0.so.${LIBgio-2.0_VERSION}
 @lib lib/libglib-2.0.so.${LIBglib-2.0_VERSION}
 @lib lib/libgmodule-2.0.so.${LIBgmodule-2.0_VERSION}
 @lib lib/libgobject-2.0.so.${LIBgobject-2.0_VERSION}
Index: pkg/PLIST-docs
===================================================================
RCS file: /cvs/ports/devel/glib2/pkg/PLIST-docs,v
retrieving revision 1.13
diff -u -r1.13 PLIST-docs
--- pkg/PLIST-docs      24 Oct 2007 22:29:03 -0000      1.13
+++ pkg/PLIST-docs      23 Mar 2008 11:34:59 -0000
@@ -3,6 +3,81 @@
 share/aclocal/
 share/gtk-doc/
 share/gtk-doc/html/
+share/gtk-doc/html/gio/
+share/gtk-doc/html/gio/GAppInfo.html
+share/gtk-doc/html/gio/GAsyncResult.html
+share/gtk-doc/html/gio/GBufferedInputStream.html
+share/gtk-doc/html/gio/GBufferedOutputStream.html
+share/gtk-doc/html/gio/GCancellable.html
+share/gtk-doc/html/gio/GDataInputStream.html
+share/gtk-doc/html/gio/GDataOutputStream.html
+share/gtk-doc/html/gio/GDrive.html
+share/gtk-doc/html/gio/GFile.html
+share/gtk-doc/html/gio/GFileEnumerator.html
+share/gtk-doc/html/gio/GFileIcon.html
+share/gtk-doc/html/gio/GFileInfo.html
+share/gtk-doc/html/gio/GFileInputStream.html
+share/gtk-doc/html/gio/GFileMonitor.html
+share/gtk-doc/html/gio/GFileOutputStream.html
+share/gtk-doc/html/gio/GFilenameCompleter.html
+share/gtk-doc/html/gio/GFilterInputStream.html
+share/gtk-doc/html/gio/GFilterOutputStream.html
+share/gtk-doc/html/gio/GIOModule.html
+share/gtk-doc/html/gio/GIcon.html
+share/gtk-doc/html/gio/GInputStream.html
+share/gtk-doc/html/gio/GLoadableIcon.html
+share/gtk-doc/html/gio/GMemoryInputStream.html
+share/gtk-doc/html/gio/GMemoryOutputStream.html
+share/gtk-doc/html/gio/GMount.html
+share/gtk-doc/html/gio/GMountOperation.html
+share/gtk-doc/html/gio/GOutputStream.html
+share/gtk-doc/html/gio/GSeekable.html
+share/gtk-doc/html/gio/GSimpleAsyncResult.html
+share/gtk-doc/html/gio/GThemedIcon.html
+share/gtk-doc/html/gio/GUnixInputStream.html
+share/gtk-doc/html/gio/GUnixOutputStream.html
+share/gtk-doc/html/gio/GVfs.html
+share/gtk-doc/html/gio/GVolume.html
+share/gtk-doc/html/gio/GVolumeMonitor.html
+share/gtk-doc/html/gio/async.html
+share/gtk-doc/html/gio/ch01.html
+share/gtk-doc/html/gio/ch02.html
+share/gtk-doc/html/gio/ch03.html
+share/gtk-doc/html/gio/ch14.html
+share/gtk-doc/html/gio/ch15.html
+share/gtk-doc/html/gio/ch15s02.html
+share/gtk-doc/html/gio/ch15s03.html
+share/gtk-doc/html/gio/extending.html
+share/gtk-doc/html/gio/file_mon.html
+share/gtk-doc/html/gio/file_ops.html
+share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html
+share/gtk-doc/html/gio/gio-Extension-Points.html
+share/gtk-doc/html/gio/gio-GContentType.html
+share/gtk-doc/html/gio/gio-GFileAttribute.html
+share/gtk-doc/html/gio/gio-GIOError.html
+share/gtk-doc/html/gio/gio-GIOScheduler.html
+share/gtk-doc/html/gio/gio-Unix-Mounts.html
+share/gtk-doc/html/gio/gio-extension-points.html
+share/gtk-doc/html/gio/gio-hierarchy.html
+share/gtk-doc/html/gio/gio.devhelp
+share/gtk-doc/html/gio/gio.devhelp2
+share/gtk-doc/html/gio/gvfs-overview.png
+share/gtk-doc/html/gio/home.png
+share/gtk-doc/html/gio/icons.html
+share/gtk-doc/html/gio/index.html
+share/gtk-doc/html/gio/index.sgml
+share/gtk-doc/html/gio/ix01.html
+share/gtk-doc/html/gio/left.png
+share/gtk-doc/html/gio/migrating.html
+share/gtk-doc/html/gio/pt01.html
+share/gtk-doc/html/gio/pt02.html
+share/gtk-doc/html/gio/right.png
+share/gtk-doc/html/gio/streaming.html
+share/gtk-doc/html/gio/style.css
+share/gtk-doc/html/gio/types.html
+share/gtk-doc/html/gio/up.png
+share/gtk-doc/html/gio/utils.html
+share/gtk-doc/html/gio/volume_mon.html
 share/gtk-doc/html/glib/
 share/gtk-doc/html/glib/file-name-encodings.png
 share/gtk-doc/html/glib/glib-Arrays.html
@@ -18,6 +93,7 @@
 share/gtk-doc/html/glib/glib-Caches.html
 share/gtk-doc/html/glib/glib-Character-Set-Conversion.html
 share/gtk-doc/html/glib/glib-Commandline-option-parser.html
+share/gtk-doc/html/glib/glib-Data-Checksums.html
 share/gtk-doc/html/glib/glib-Datasets.html
 share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html
 share/gtk-doc/html/glib/glib-Double-ended-Queues.html
@@ -57,12 +133,14 @@
 share/gtk-doc/html/glib/glib-String-Chunks.html
 share/gtk-doc/html/glib/glib-String-Utility-Functions.html
 share/gtk-doc/html/glib/glib-Strings.html
+share/gtk-doc/html/glib/glib-Testing.html
 share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html
 share/gtk-doc/html/glib/glib-Thread-Pools.html
 share/gtk-doc/html/glib/glib-Threads.html
 share/gtk-doc/html/glib/glib-Timers.html
 share/gtk-doc/html/glib/glib-Trash-Stacks.html
 share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html
+share/gtk-doc/html/glib/glib-URI-Functions.html
 share/gtk-doc/html/glib/glib-Unicode-Manipulation.html
 share/gtk-doc/html/glib/glib-Version-Information.html
 share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html
@@ -94,6 +172,7 @@
 share/gtk-doc/html/glib/ix07.html
 share/gtk-doc/html/glib/ix08.html
 share/gtk-doc/html/glib/ix09.html
+share/gtk-doc/html/glib/ix10.html
 share/gtk-doc/html/glib/left.png
 share/gtk-doc/html/glib/mainloop-states.gif
 share/gtk-doc/html/glib/right.png
Index: pkg/PLIST-main
===================================================================
RCS file: /cvs/ports/devel/glib2/pkg/PLIST-main,v
retrieving revision 1.3
diff -u -r1.3 PLIST-main
--- pkg/PLIST-main      24 Oct 2007 22:29:03 -0000      1.3
+++ pkg/PLIST-main      23 Mar 2008 11:34:59 -0000
@@ -1,10 +1,59 @@
 @comment $OpenBSD: PLIST-main,v 1.3 2007/10/24 22:29:03 jasper Exp $
 @pkgpath devel/glib2
+%%SHARED%%
 bin/glib-genmarshal
 bin/glib-gettextize
 bin/glib-mkenums
 bin/gobject-query
+bin/gtester
+include/gio-unix-2.0/
+include/gio-unix-2.0/gio/
+include/gio-unix-2.0/gio/gdesktopappinfo.h
+include/gio-unix-2.0/gio/gunixinputstream.h
+include/gio-unix-2.0/gio/gunixmounts.h
+include/gio-unix-2.0/gio/gunixoutputstream.h
 include/glib-2.0/
+include/glib-2.0/gio/
+include/glib-2.0/gio/gappinfo.h
+include/glib-2.0/gio/gasyncresult.h
+include/glib-2.0/gio/gbufferedinputstream.h
+include/glib-2.0/gio/gbufferedoutputstream.h
+include/glib-2.0/gio/gcancellable.h
+include/glib-2.0/gio/gcontenttype.h
+include/glib-2.0/gio/gdatainputstream.h
+include/glib-2.0/gio/gdataoutputstream.h
+include/glib-2.0/gio/gdrive.h
+include/glib-2.0/gio/gfile.h
+include/glib-2.0/gio/gfileattribute.h
+include/glib-2.0/gio/gfileenumerator.h
+include/glib-2.0/gio/gfileicon.h
+include/glib-2.0/gio/gfileinfo.h
+include/glib-2.0/gio/gfileinputstream.h
+include/glib-2.0/gio/gfilemonitor.h
+include/glib-2.0/gio/gfilenamecompleter.h
+include/glib-2.0/gio/gfileoutputstream.h
+include/glib-2.0/gio/gfilterinputstream.h
+include/glib-2.0/gio/gfilteroutputstream.h
+include/glib-2.0/gio/gicon.h
+include/glib-2.0/gio/ginputstream.h
+include/glib-2.0/gio/gio.h
+include/glib-2.0/gio/gioenumtypes.h
+include/glib-2.0/gio/gioerror.h
+include/glib-2.0/gio/giomodule.h
+include/glib-2.0/gio/gioscheduler.h
+include/glib-2.0/gio/gloadableicon.h
+include/glib-2.0/gio/gmemoryinputstream.h
+include/glib-2.0/gio/gmemoryoutputstream.h
+include/glib-2.0/gio/gmount.h
+include/glib-2.0/gio/gmountoperation.h
+include/glib-2.0/gio/gnativevolumemonitor.h
+include/glib-2.0/gio/goutputstream.h
+include/glib-2.0/gio/gseekable.h
+include/glib-2.0/gio/gsimpleasyncresult.h
+include/glib-2.0/gio/gthemedicon.h
+include/glib-2.0/gio/gvfs.h
+include/glib-2.0/gio/gvolume.h
+include/glib-2.0/gio/gvolumemonitor.h
 include/glib-2.0/glib/
 include/glib-2.0/glib-object.h
 include/glib-2.0/glib.h
@@ -16,6 +65,7 @@
 include/glib-2.0/glib/gbase64.h
 include/glib-2.0/glib/gbookmarkfile.h
 include/glib-2.0/glib/gcache.h
+include/glib-2.0/glib/gchecksum.h
 include/glib-2.0/glib/gcompletion.h
 include/glib-2.0/glib/gconvert.h
 include/glib-2.0/glib/gdataset.h
@@ -56,12 +106,14 @@
 include/glib-2.0/glib/gstdio.h
 include/glib-2.0/glib/gstrfuncs.h
 include/glib-2.0/glib/gstring.h
+include/glib-2.0/glib/gtestutils.h
 include/glib-2.0/glib/gthread.h
 include/glib-2.0/glib/gthreadpool.h
 include/glib-2.0/glib/gtimer.h
 include/glib-2.0/glib/gtree.h
 include/glib-2.0/glib/gtypes.h
 include/glib-2.0/glib/gunicode.h
+include/glib-2.0/glib/gurifuncs.h
 include/glib-2.0/glib/gutils.h
 include/glib-2.0/glib/gwin32.h
 include/glib-2.0/gmodule.h
@@ -87,6 +139,8 @@
 lib/glib-2.0/
 lib/glib-2.0/include/
 lib/glib-2.0/include/glibconfig.h
+lib/libgio-2.0.a
+lib/libgio-2.0.la
 lib/libglib-2.0.a
 lib/libglib-2.0.la
 lib/libgmodule-2.0.a
@@ -95,7 +149,8 @@
 lib/libgobject-2.0.la
 lib/libgthread-2.0.a
 lib/libgthread-2.0.la
-lib/pkgconfig/
+lib/pkgconfig/gio-2.0.pc
+lib/pkgconfig/gio-unix-2.0.pc
 lib/pkgconfig/glib-2.0.pc
 lib/pkgconfig/gmodule-2.0.pc
 lib/pkgconfig/gmodule-export-2.0.pc
@@ -213,6 +268,9 @@
 share/locale/mn/
 share/locale/mn/LC_MESSAGES/
 share/locale/mn/LC_MESSAGES/glib20.mo
+share/locale/mr/
+share/locale/mr/LC_MESSAGES/
+share/locale/mr/LC_MESSAGES/glib20.mo
 share/locale/ms/
 share/locale/ms/LC_MESSAGES/
 share/locale/ms/LC_MESSAGES/glib20.mo
@@ -239,6 +297,9 @@
 share/locale/rw/
 share/locale/rw/LC_MESSAGES/
 share/locale/rw/LC_MESSAGES/glib20.mo
+share/locale/si/
+share/locale/si/LC_MESSAGES/
+share/locale/si/LC_MESSAGES/glib20.mo
 share/locale/sk/LC_MESSAGES/glib20.mo
 share/locale/sl/LC_MESSAGES/glib20.mo
 share/locale/sq/
@@ -282,4 +343,3 @@
 share/locale/zh_CN/LC_MESSAGES/glib20.mo
 share/locale/zh_HK/LC_MESSAGES/glib20.mo
 share/locale/zh_TW/LC_MESSAGES/glib20.mo
-%%SHARED%%
* Bugs fixed:
  505085 crash in Image Viewer: I opened file name.bmp, ...
  469210 Honor CUPS user default options for GtkPrint
  507605 [patch] gtk_recent_files_menu_populate() does not guard p...
  513230 Crash when using _set_tab_reorderable but tabs are hidden
  519199 Segmentation fault on unknown widget in UI-file
  521548 printing does not work for Custom PageSize
  461805 The combo cell renderer is broken theme wise
  493406 GtkEntry doesn't get unselected when tabbing out of it
  509885 crash when browsing for other folders
  513826 configure script has no option to override cups check
  516578 gtkfilesystemwin32 leaks registry key handles
  516757 gdk/quartz scroll events don't send state
  517338 Borderless non-opaque windows get incorrectly drawn shadow
  518398 gdkwindow-win32.c: variable is declared at middle of block
  518624 bad default for GTK_PRINT_PREVIEW_COMMAND on Mac OS X
  521442 x/y thickness is being overriden by the combobox realize ...
  417389 Scrollwheel on path bar
  469868 Filenames with colon ":" are not saved correctly
  505857 filepath entered in location bar should be loaded after u...
  353196 Add a file-set signal to GtkFileChooserButton 

Index: Makefile
===================================================================
RCS file: /cvs/ports/x11/gtk+2/Makefile,v
retrieving revision 1.60
diff -u -r1.60 Makefile
--- Makefile    9 Feb 2008 17:55:39 -0000       1.60
+++ Makefile    13 Mar 2008 09:53:55 -0000
@@ -5,14 +5,14 @@
 COMMENT-main=                  multi-platform graphical toolkit
 COMMENT-docs=                  gtk+-2 documentation
 
-VERSION=                       2.12.7
+VERSION=                       2.12.9
 DISTNAME=                      gtk+-${VERSION}
 PKGNAME-main=                  gtk+2-${VERSION}
 PKGNAME-docs=                  gtk+2-docs-${VERSION}
-SHARED_LIBS += gdk_pixbuf-2.0       1200.7   # .1200.7
-SHARED_LIBS += gdk-x11-2.0          1200.7   # .1200.7
-SHARED_LIBS += gtk-x11-2.0          1200.7   # .1200.7
-SHARED_LIBS += gdk_pixbuf_xlib-2.0  1200.7   # .1200.7
+SHARED_LIBS += gdk_pixbuf-2.0       1200.9   # .1200.9
+SHARED_LIBS += gdk-x11-2.0          1200.9   # .1200.9
+SHARED_LIBS += gtk-x11-2.0          1200.9   # .1200.9
+SHARED_LIBS += gdk_pixbuf_xlib-2.0  1200.9   # .1200.9
 CATEGORIES=                    x11 devel
 
 HOMEPAGE=                      http://www.gtk.org/
Index: distinfo
===================================================================
RCS file: /cvs/ports/x11/gtk+2/distinfo,v
retrieving revision 1.34
diff -u -r1.34 distinfo
--- distinfo    9 Feb 2008 17:55:39 -0000       1.34
+++ distinfo    13 Mar 2008 09:53:55 -0000
@@ -1,5 +1,5 @@
-MD5 (gtk+-2.12.7.tar.bz2) = VxMsSpIe8A4kGg/JkXh1Vg==
-RMD160 (gtk+-2.12.7.tar.bz2) = O7L9kH+astI1ORNiyWIO7itfMig=
-SHA1 (gtk+-2.12.7.tar.bz2) = fwGb04NNnj5l5zvY1pqqDz/RxsY=
-SHA256 (gtk+-2.12.7.tar.bz2) = 7xvm0Qm4pKBcYElEYWBDpGR1EPXB/164Sh6uzD1UJdM=
-SIZE (gtk+-2.12.7.tar.bz2) = 16111869
+MD5 (gtk+-2.12.9.tar.bz2) = M0mXcv3DvqVpxtVnPlgxtA==
+RMD160 (gtk+-2.12.9.tar.bz2) = yTwEaqMLJrv01TtvPpACg+stVhY=
+SHA1 (gtk+-2.12.9.tar.bz2) = leN1+EeJQKWwloRam/92AE8mXro=
+SHA256 (gtk+-2.12.9.tar.bz2) = W9m/H7MxJZ8MJQVjgMrUBQY9+a1lXV4HpnnunwmNDsg=
+SIZE (gtk+-2.12.9.tar.bz2) = 16027448
Index: patches/patch-configure
===================================================================
RCS file: /cvs/ports/x11/gtk+2/patches/patch-configure,v
retrieving revision 1.19
diff -u -r1.19 patch-configure
--- patches/patch-configure     9 Feb 2008 17:55:39 -0000       1.19
+++ patches/patch-configure     13 Mar 2008 09:53:55 -0000
@@ -1,9 +1,9 @@
 $OpenBSD: patch-configure,v 1.19 2008/02/09 17:55:39 jasper Exp $
---- configure.orig     Wed Jan 30 04:13:49 2008
-+++ configure  Fri Feb  1 14:23:41 2008
-@@ -32939,7 +32939,9 @@ fi
+--- configure.orig     Wed Mar 12 05:18:17 2008
++++ configure  Thu Mar 13 00:01:34 2008
+@@ -32948,7 +32948,9 @@ fi
  
- fi
+   fi
  
 -
 +if test "x$ENABLE_CUPS"  != "xyes"; then
Index: pkg/PLIST-main
===================================================================
RCS file: /cvs/ports/x11/gtk+2/pkg/PLIST-main,v
retrieving revision 1.5
diff -u -r1.5 PLIST-main
--- pkg/PLIST-main      9 Feb 2008 17:55:39 -0000       1.5
+++ pkg/PLIST-main      13 Mar 2008 09:53:56 -0000
@@ -553,8 +553,6 @@
 share/locale/ml/LC_MESSAGES/gtk20.mo
 share/locale/mn/LC_MESSAGES/gtk20-properties.mo
 share/locale/mn/LC_MESSAGES/gtk20.mo
-share/locale/mr/
-share/locale/mr/LC_MESSAGES/
 share/locale/mr/LC_MESSAGES/gtk20-properties.mo
 share/locale/mr/LC_MESSAGES/gtk20.mo
 share/locale/ms/LC_MESSAGES/gtk20-properties.mo
@@ -589,8 +587,6 @@
 share/locale/ru/LC_MESSAGES/gtk20.mo
 share/locale/rw/LC_MESSAGES/gtk20-properties.mo
 share/locale/rw/LC_MESSAGES/gtk20.mo
-share/locale/si/
-share/locale/si/LC_MESSAGES/
 share/locale/si/LC_MESSAGES/gtk20-properties.mo
 share/locale/si/LC_MESSAGES/gtk20.mo
 share/locale/sk/LC_MESSAGES/gtk20-properties.mo
* Too many changes to list here.

Index: Makefile
===================================================================
RCS file: /cvs/ports/devel/pango/Makefile,v
retrieving revision 1.28
diff -u -r1.28 Makefile
--- Makefile    9 Feb 2008 17:49:12 -0000       1.28
+++ Makefile    23 Mar 2008 12:15:02 -0000
@@ -2,12 +2,12 @@
 
 COMMENT=               library for layout and rendering of text
 
-DISTNAME=              pango-1.18.4
-SHARED_LIBS += pango-1.0          1400.1    # .1800.4
-SHARED_LIBS += pangox-1.0         1400.1    # .1800.4
-SHARED_LIBS += pangoft2-1.0       1400.1    # .1800.4
-SHARED_LIBS += pangoxft-1.0       1400.1    # .1800.4
-SHARED_LIBS += pangocairo-1.0     1400.1    # .1800.4
+DISTNAME=              pango-1.20.0
+SHARED_LIBS += pango-1.0          1600.0    # .2000.0
+SHARED_LIBS += pangox-1.0         1600.0    # .2000.0
+SHARED_LIBS += pangoft2-1.0       1600.0    # .2000.0
+SHARED_LIBS += pangoxft-1.0       1600.0    # .2000.0
+SHARED_LIBS += pangocairo-1.0     1600.0    # .2000.0
 CATEGORIES=            devel x11
 
 HOMEPAGE=              http://www.gtk.org/
@@ -20,7 +20,7 @@
 WANTLIB=       X11 Xau Xdmcp Xft Xrender c expat fontconfig freetype \
                glitz m pcre png z
 
-MASTER_SITES=          ${MASTER_SITE_GNOME:=sources/pango/1.18/}
+MASTER_SITES=          ${MASTER_SITE_GNOME:=sources/pango/1.20/}
 EXTRACT_SUFX=          .tar.bz2
 
 MODULES=               devel/gettext
Index: distinfo
===================================================================
RCS file: /cvs/ports/devel/pango/distinfo,v
retrieving revision 1.21
diff -u -r1.21 distinfo
--- distinfo    9 Feb 2008 17:49:12 -0000       1.21
+++ distinfo    23 Mar 2008 12:15:02 -0000
@@ -1,5 +1,5 @@
-MD5 (pango-1.18.4.tar.bz2) = X0ok6wN4l0ahPkG+twRHdg==
-RMD160 (pango-1.18.4.tar.bz2) = cyEySdhvk0RXLSfOByDuV0uM3s0=
-SHA1 (pango-1.18.4.tar.bz2) = anLbkL+CsVHhi9g9JfCEQSnMk9Y=
-SHA256 (pango-1.18.4.tar.bz2) = b9PILreqH9QQzeIRibAFCV6ILYqzgaW4W7dIOrfn790=
-SIZE (pango-1.18.4.tar.bz2) = 1406821
+MD5 (pango-1.20.0.tar.bz2) = 8JWcS5sFi6nk0T/JCGt+fQ==
+RMD160 (pango-1.20.0.tar.bz2) = 49cgzdXNCOkFbQzweZnn07+NIos=
+SHA1 (pango-1.20.0.tar.bz2) = FU6Nli0O7oP1jsO/7hGQJlDpHaI=
+SHA256 (pango-1.20.0.tar.bz2) = OTPY+/vIkK4pCBoj52vo2jICTdKhv+Y8TMd9YHSS4js=
+SIZE (pango-1.20.0.tar.bz2) = 1412843
Index: patches/patch-configure
===================================================================
RCS file: /cvs/ports/devel/pango/patches/patch-configure,v
retrieving revision 1.15
diff -u -r1.15 patch-configure
--- patches/patch-configure     9 Feb 2008 17:49:12 -0000       1.15
+++ patches/patch-configure     23 Mar 2008 12:15:02 -0000
@@ -1,7 +1,7 @@
 $OpenBSD: patch-configure,v 1.15 2008/02/09 17:49:12 jasper Exp $
---- configure.orig     Mon Jan  7 22:14:29 2008
-+++ configure  Fri Feb  1 09:11:37 2008
-@@ -21816,7 +21816,7 @@ if test -n "$PKG_CONFIG"; then
+--- configure.orig     Mon Mar 10 16:22:40 2008
++++ configure  Wed Mar 12 23:31:16 2008
+@@ -21818,7 +21818,7 @@ if test -n "$PKG_CONFIG"; then
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; then
@@ -10,7 +10,7 @@
  else
    pkg_failed=yes
  fi
-@@ -22028,7 +22028,7 @@ if test -n "$PKG_CONFIG"; then
+@@ -21995,7 +21995,7 @@ if test -n "$PKG_CONFIG"; then
    ac_status=$?
    echo "$as_me:$LINENO: \$? = $ac_status" >&5
    (exit $ac_status); }; then
Index: patches/patch-modules_Makefile_in
===================================================================
RCS file: /cvs/ports/devel/pango/patches/patch-modules_Makefile_in,v
retrieving revision 1.13
diff -u -r1.13 patch-modules_Makefile_in
--- patches/patch-modules_Makefile_in   10 Sep 2007 19:14:19 -0000      1.13
+++ patches/patch-modules_Makefile_in   23 Mar 2008 12:15:02 -0000
@@ -1,7 +1,7 @@
 $OpenBSD: patch-modules_Makefile_in,v 1.13 2007/09/10 19:14:19 jasper Exp $
---- modules/Makefile.in.orig   Wed Aug 29 20:51:38 2007
-+++ modules/Makefile.in        Wed Aug 29 20:52:13 2007
-@@ -558,21 +558,11 @@ uninstall-am: uninstall-local
+--- modules/Makefile.in.orig   Mon Mar 10 16:22:36 2008
++++ modules/Makefile.in        Wed Mar 12 23:31:16 2008
+@@ -554,21 +554,11 @@ uninstall-am: uninstall-local
  @[EMAIL PROTECTED]: pango.modules
  
  install-data-local: $(top_builddir)/pango/pango-querymodules$(EXEEXT)
Index: patches/patch-pango_pc_in
===================================================================
RCS file: /cvs/ports/devel/pango/patches/patch-pango_pc_in,v
retrieving revision 1.5
diff -u -r1.5 patch-pango_pc_in
--- patches/patch-pango_pc_in   24 May 2005 21:27:29 -0000      1.5
+++ patches/patch-pango_pc_in   23 Mar 2008 12:15:02 -0000
@@ -1,10 +1,10 @@
---- pango.pc.in.orig   Sat Jan  8 16:32:10 2005
-+++ pango.pc.in        Wed Mar 30 21:02:53 2005
-@@ -9,6 +9,6 @@ Name: Pango
+$OpenBSD$
+--- pango.pc.in.orig   Tue Jan 29 23:26:57 2008
++++ pango.pc.in        Wed Mar 12 23:31:16 2008
+@@ -9,5 +9,5 @@ Name: Pango
  Description: Internationalized text handling
  Version: @VERSION@
  Requires: glib-2.0,gobject-2.0,gmodule-no-export-2.0
 -Libs: -L${libdir} [EMAIL PROTECTED]@ @PKGCONFIG_MATH_LIBS@
-+Libs: -L${libdir} @PKGCONFIG_X_LIBS@ [EMAIL PROTECTED]@ @PKGCONFIG_MATH_LIBS@
++Libs: -L${libdir} @X_LIBS@ [EMAIL PROTECTED]@ @PKGCONFIG_MATH_LIBS@
  Cflags: -I${includedir}/pango-1.0
- 
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/devel/pango/pkg/PLIST,v
retrieving revision 1.16
diff -u -r1.16 PLIST
--- pkg/PLIST   24 Oct 2007 22:31:48 -0000      1.16
+++ pkg/PLIST   23 Mar 2008 12:15:02 -0000
@@ -103,6 +103,7 @@
 share/gtk-doc/html/pango/index-1.16.html
 share/gtk-doc/html/pango/index-1.18.html
 share/gtk-doc/html/pango/index-1.2.html
+share/gtk-doc/html/pango/index-1.20.html
 share/gtk-doc/html/pango/index-1.4.html
 share/gtk-doc/html/pango/index-1.6.html
 share/gtk-doc/html/pango/index-1.8.html

Reply via email to