Major update to glib2-2.28.2.

This (and the related 20 to 30 updates) has been tested twice in a bulk
by landry@, thanks!
Runtime testing by myself under heavy GNOME usage...
This commit is contained in:
ajacoutot 2011-03-07 19:17:14 +00:00
parent 9934095221
commit 200c7854a4
17 changed files with 147 additions and 101 deletions

View File

@ -1,10 +1,9 @@
# $OpenBSD: Makefile,v 1.103 2010/12/29 09:58:45 sebastia Exp $
# $OpenBSD: Makefile,v 1.104 2011/03/07 19:17:14 ajacoutot Exp $
COMMENT-main= general-purpose utility library
COMMENT-docs= glib2 documentation
VERSION= 2.26.1
REVISION = 0
VERSION= 2.28.2
DISTNAME= glib-${VERSION}
PKGNAME-main= glib2-${VERSION}
PKGNAME-docs= glib2-docs-${VERSION}
@ -15,11 +14,11 @@ HOMEPAGE= http://www.gtk.org/
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
SHARED_LIBS += glib-2.0 2600.0 # 2600.0
SHARED_LIBS += gmodule-2.0 2600.0 # 2600.0
SHARED_LIBS += gthread-2.0 2600.0 # 2600.0
SHARED_LIBS += gobject-2.0 2600.0 # 2600.0
SHARED_LIBS += gio-2.0 2600.0 # 2600.0
SHARED_LIBS += glib-2.0 2800.0 # 2800.2
SHARED_LIBS += gmodule-2.0 2800.0 # 2800.2
SHARED_LIBS += gthread-2.0 2800.0 # 2800.2
SHARED_LIBS += gobject-2.0 2800.0 # 2800.2
SHARED_LIBS += gio-2.0 2800.0 # 2800.2
# LGPLv2
PERMIT_PACKAGE_CDROM= Yes
@ -36,12 +35,12 @@ MODULES= devel/gettext \
lang/python
MODPY_RUNDEP= No
MODPY_BUILDDEP= Yes # XXX: glib2 wants python for the regress tests
MODPY_BUILDDEP= Yes # glib2 wants python for the regress tests
WANTLIB-main= ${WANTLIB} c pthread z pcre fam
LIB_DEPENDS-main= ${LIB_DEPENDS} \
devel/pcre>=7.2 \
devel/pcre>=8.12 \
sysutils/gamin,no_server,no_python
PKG_ARCH-docs= *
@ -50,8 +49,8 @@ LIB_DEPENDS-docs=
RUN_DEPENDS-docs=
# DBus is only used in the GDBus test cases
BUILD_DEPENDS += x11/dbus
REGRESS_DEPENDS= devel/desktop-file-utils \
x11/dbus \
devel/py-gobject \
x11/dbus-python

View File

@ -1,5 +1,5 @@
MD5 (glib-2.26.1.tar.bz2) = F1NazM7vVbyxenTXP5wq7w==
RMD160 (glib-2.26.1.tar.bz2) = 6LAPzlWqU57gBYhQDAFiqId9wGA=
SHA1 (glib-2.26.1.tar.bz2) = jTXVz0HWgd1kgKFr4599PP+9KfA=
SHA256 (glib-2.26.1.tar.bz2) = enT/Era53uHy0OUgtWtotiGSDE9CUL3yNGjlFWJcKNU=
SIZE (glib-2.26.1.tar.bz2) = 6704686
MD5 (glib-2.28.2.tar.bz2) = JKS+oxZ/7V2r4Er9tbByMQ==
RMD160 (glib-2.28.2.tar.bz2) = xqZGkBiAbuczVG0W+3OOKj6EpfA=
SHA1 (glib-2.28.2.tar.bz2) = oVy3yu3egZ7HS9i1zfMfc3Ll/RQ=
SHA256 (glib-2.28.2.tar.bz2) = P/GP6Dv6yDWxg9mO3C81/LSIDQ8rmInVfyGs1XTFJ2I=
SIZE (glib-2.28.2.tar.bz2) = 6844578

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-docs_reference_glib_Makefile_in,v 1.9 2010/11/14 15:56:55 ajacoutot Exp $
--- docs/reference/glib/Makefile.in.orig Sun Nov 14 07:01:53 2010
+++ docs/reference/glib/Makefile.in Sun Nov 14 16:14:34 2010
@@ -447,8 +447,7 @@ CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_ST
$OpenBSD: patch-docs_reference_glib_Makefile_in,v 1.10 2011/03/07 19:17:14 ajacoutot Exp $
--- docs/reference/glib/Makefile.in.orig Fri Feb 18 16:21:59 2011
+++ docs/reference/glib/Makefile.in Sat Feb 26 10:30:29 2011
@@ -455,8 +455,7 @@ CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_ST
########################################################################
man_MANS = \
glib-gettextize.1 \

View File

@ -1,17 +0,0 @@
$OpenBSD: patch-gio_gdbusmessage_c,v 1.1 2010/12/29 09:58:45 sebastia Exp $
fix for gcc-2.95
--- gio/gdbusmessage.c.orig Wed Dec 29 09:10:01 2010
+++ gio/gdbusmessage.c Wed Dec 29 09:16:01 2010
@@ -1186,7 +1186,9 @@ parse_value_from_blob (GMemoryInputStream *mis,
v = g_data_input_stream_read_uint64 (dis, NULL, &local_error);
if (local_error != NULL)
goto fail;
- G_STATIC_ASSERT (sizeof (gdouble) == sizeof (guint64));
+ {
+ G_STATIC_ASSERT (sizeof (gdouble) == sizeof (guint64));
+ }
encoded = (gdouble *) &v;
ret = g_variant_new_double (*encoded);
}

View File

@ -1,9 +1,9 @@
$OpenBSD: patch-gio_gunixmount_c,v 1.2 2010/09/30 07:17:19 ajacoutot Exp $
$OpenBSD: patch-gio_gunixmount_c,v 1.3 2011/03/07 19:17:14 ajacoutot Exp $
Removable device needs to be unmounted before it is ejected.
--- gio/gunixmount.c.orig Mon Aug 9 15:34:46 2010
+++ gio/gunixmount.c Mon Sep 27 14:42:36 2010
--- gio/gunixmount.c.orig Sun Nov 14 20:34:22 2010
+++ gio/gunixmount.c Mon Jan 31 10:14:44 2011
@@ -29,6 +29,11 @@
#include <sys/wait.h>
#include <unistd.h>
@ -16,7 +16,7 @@ Removable device needs to be unmounted before it is ejected.
#include <glib.h>
#include "gunixvolumemonitor.h"
#include "gunixmount.h"
@@ -452,10 +457,15 @@ g_unix_mount_eject (GMount *mount,
@@ -451,10 +456,15 @@ g_unix_mount_eject (GMount *mount,
GUnixMount *unix_mount = G_UNIX_MOUNT (mount);
char *argv[] = {"eject", NULL, NULL};

View File

@ -1,11 +1,11 @@
$OpenBSD: patch-gio_gunixmounts_c,v 1.2 2010/09/30 07:17:19 ajacoutot Exp $
$OpenBSD: patch-gio_gunixmounts_c,v 1.3 2011/03/07 19:17:14 ajacoutot Exp $
https://bugzilla.gnome.org/show_bug.cgi?id=583330
From FreeBSD: poll the list of mounted filesystems since we can't rely
on checking for mtab updates like other systems.
--- gio/gunixmounts.c.orig Mon Aug 9 15:34:46 2010
+++ gio/gunixmounts.c Mon Sep 27 14:42:36 2010
--- gio/gunixmounts.c.orig Fri Jan 7 17:55:29 2011
+++ gio/gunixmounts.c Mon Jan 31 10:14:44 2011
@@ -135,6 +135,9 @@ struct _GUnixMountMonitor {
GFileMonitor *fstab_monitor;
@ -73,7 +73,7 @@ on checking for mtab updates like other systems.
return 0;
}
@@ -1196,6 +1214,13 @@ g_unix_mount_monitor_finalize (GObject *object)
@@ -1198,6 +1216,13 @@ g_unix_mount_monitor_finalize (GObject *object)
g_object_unref (monitor->mtab_monitor);
}
@ -87,7 +87,7 @@ on checking for mtab updates like other systems.
the_mount_monitor = NULL;
G_OBJECT_CLASS (g_unix_mount_monitor_parent_class)->finalize (object);
@@ -1276,6 +1301,51 @@ mtab_file_changed (GFileMonitor *monitor,
@@ -1278,6 +1303,51 @@ mtab_file_changed (GFileMonitor *monitor,
g_signal_emit (mount_monitor, signals[MOUNTS_CHANGED], 0);
}
@ -139,7 +139,7 @@ on checking for mtab updates like other systems.
static void
g_unix_mount_monitor_init (GUnixMountMonitor *monitor)
{
@@ -1297,6 +1367,12 @@ g_unix_mount_monitor_init (GUnixMountMonitor *monitor)
@@ -1299,6 +1369,12 @@ g_unix_mount_monitor_init (GUnixMountMonitor *monitor)
g_object_unref (file);
g_signal_connect (monitor->mtab_monitor, "changed", (GCallback)mtab_file_changed, monitor);

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-gio_tests_Makefile_in,v 1.2 2010/11/14 15:56:55 ajacoutot Exp $
--- gio/tests/Makefile.in.orig Sun Nov 14 07:01:57 2010
+++ gio/tests/Makefile.in Sun Nov 14 16:14:34 2010
@@ -1548,7 +1548,7 @@ test: test-nonrecursive
$OpenBSD: patch-gio_tests_Makefile_in,v 1.3 2011/03/07 19:17:14 ajacoutot Exp $
--- gio/tests/Makefile.in.orig Mon Mar 7 18:06:41 2011
+++ gio/tests/Makefile.in Mon Mar 7 20:01:10 2011
@@ -1664,7 +1664,7 @@ test: test-nonrecursive
# test-nonrecursive: run tests only in cwd
test-nonrecursive: ${TEST_PROGS}

View File

@ -1,10 +1,10 @@
$OpenBSD: patch-glib_Makefile_in,v 1.20 2010/11/14 15:56:55 ajacoutot Exp $
$OpenBSD: patch-glib_Makefile_in,v 1.21 2011/03/07 19:17:14 ajacoutot Exp $
Don't install gtester-report, it'll only pull in python.
--- glib/Makefile.in.orig Sun Nov 14 07:01:58 2010
+++ glib/Makefile.in Sun Nov 14 16:14:34 2010
@@ -778,7 +778,7 @@ INSTALL_PROGS = $(am__append_5) $(am__append_6) $(am__
--- glib/Makefile.in.orig Sat Jan 29 03:46:10 2011
+++ glib/Makefile.in Mon Jan 31 10:14:44 2011
@@ -780,7 +780,7 @@ INSTALL_PROGS = $(am__append_5) $(am__append_6) $(am__
@OS_WIN32_TRUE@@OS_WIN32_X64_FALSE@gspawn_win32_helper_console_LDADD = libglib-2.0.la
@OS_UNIX_TRUE@gtester_SOURCES = gtester.c
@OS_UNIX_TRUE@gtester_LDADD = libglib-2.0.la
@ -13,7 +13,7 @@ Don't install gtester-report, it'll only pull in python.
@OS_UNIX_TRUE@bin_SCRIPTS = ${auto_config_binscripts}
@OS_UNIX_TRUE@CONFIGVARS = \
@OS_UNIX_TRUE@ "bindir" : "${bindir}", \
@@ -1540,7 +1540,7 @@ info: info-recursive
@@ -1542,7 +1542,7 @@ info: info-recursive
info-am:
@ -22,7 +22,7 @@ Don't install gtester-report, it'll only pull in python.
install-glibincludeHEADERS install-glibsubincludeHEADERS \
install-tapsetDATA
@$(NORMAL_INSTALL)
@@ -1794,9 +1794,7 @@ distclean-local:
@@ -1802,9 +1802,7 @@ distclean-local:
libglib-gdb.py: libglib-gdb.py.in
$(AM_V_GEN) $(SED) -e "s|\@datadir\@|$(datadir)|" $(srcdir)/libglib-gdb.py.in > libglib-gdb.py

View File

@ -0,0 +1,25 @@
$OpenBSD: patch-glib_gmain_c,v 1.1 2011/03/07 19:17:14 ajacoutot Exp $
--- glib/gmain.c.orig Fri Jan 28 18:10:26 2011
+++ glib/gmain.c Mon Jan 31 10:33:20 2011
@@ -2044,6 +2044,13 @@ g_get_monotonic_time (void)
struct timespec ts;
#ifdef HAVE_MONOTONIC_CLOCK
+# if defined(__OpenBSD__)
+ /*
+ OpenBSD has support for monotonic clock but does not has the
+ sysconf(3) _SC_MONOTONIC_CLOCK define
+ */
+ clockid = CLOCK_MONOTONIC;
+# else
/* We have to check if we actually have monotonic clock support.
*
* There is no thread safety issue here since there is no harm if we
@@ -2059,6 +2066,7 @@ g_get_monotonic_time (void)
checked = TRUE;
}
}
+# endif // !__OpenBSD__
#endif
clock_gettime (clockid, &ts);

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-glib_tests_Makefile_in,v 1.2 2010/11/14 15:56:55 ajacoutot Exp $
--- glib/tests/Makefile.in.orig Sun Nov 14 07:02:00 2010
+++ glib/tests/Makefile.in Sun Nov 14 16:14:34 2010
@@ -1028,7 +1028,7 @@ test: test-nonrecursive
$OpenBSD: patch-glib_tests_Makefile_in,v 1.3 2011/03/07 19:17:14 ajacoutot Exp $
--- glib/tests/Makefile.in.orig Fri Feb 18 16:22:01 2011
+++ glib/tests/Makefile.in Sat Feb 26 10:30:29 2011
@@ -1050,7 +1050,7 @@ test: test-nonrecursive
# test-nonrecursive: run tests only in cwd
test-nonrecursive: ${TEST_PROGS}

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-gobject_Makefile_in,v 1.10 2010/11/14 15:56:55 ajacoutot Exp $
--- gobject/Makefile.in.orig Sun Nov 14 07:02:01 2010
+++ gobject/Makefile.in Sun Nov 14 16:14:34 2010
@@ -1244,7 +1244,7 @@ info: info-recursive
$OpenBSD: patch-gobject_Makefile_in,v 1.11 2011/03/07 19:17:14 ajacoutot Exp $
--- gobject/Makefile.in.orig Sat Jan 29 03:46:12 2011
+++ gobject/Makefile.in Mon Jan 31 10:14:44 2011
@@ -1247,7 +1247,7 @@ info: info-recursive
info-am:
@ -10,7 +10,7 @@ $OpenBSD: patch-gobject_Makefile_in,v 1.10 2010/11/14 15:56:55 ajacoutot Exp $
install-libgobjectincludeHEADERS install-tapsetDATA
@$(NORMAL_INSTALL)
$(MAKE) $(AM_MAKEFLAGS) install-data-hook
@@ -1489,9 +1489,7 @@ libgobject-gdb.py: libgobject-gdb.py.in
@@ -1498,9 +1498,7 @@ libgobject-gdb.py: libgobject-gdb.py.in
uninstall-gdb:
-rm -r $(DESTDIR)$(datadir)/gdb

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-gobject_tests_Makefile_in,v 1.2 2010/11/14 15:56:55 ajacoutot Exp $
--- gobject/tests/Makefile.in.orig Sun Nov 14 07:02:01 2010
+++ gobject/tests/Makefile.in Sun Nov 14 16:14:34 2010
@@ -659,7 +659,7 @@ test: test-nonrecursive
$OpenBSD: patch-gobject_tests_Makefile_in,v 1.3 2011/03/07 19:17:14 ajacoutot Exp $
--- gobject/tests/Makefile.in.orig Sat Jan 29 03:46:12 2011
+++ gobject/tests/Makefile.in Mon Jan 31 10:14:44 2011
@@ -689,7 +689,7 @@ test: test-nonrecursive
# test-nonrecursive: run tests only in cwd
test-nonrecursive: ${TEST_PROGS}

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-gthread_Makefile_in,v 1.9 2010/11/14 15:56:55 ajacoutot Exp $
--- gthread/Makefile.in.orig Sun Nov 14 07:02:02 2010
+++ gthread/Makefile.in Sun Nov 14 16:14:34 2010
@@ -872,7 +872,7 @@ test: test-nonrecursive
$OpenBSD: patch-gthread_Makefile_in,v 1.10 2011/03/07 19:17:14 ajacoutot Exp $
--- gthread/Makefile.in.orig Sat Jan 29 03:46:13 2011
+++ gthread/Makefile.in Mon Jan 31 10:14:44 2011
@@ -875,7 +875,7 @@ test: test-nonrecursive
# test-nonrecursive: run tests only in cwd
test-nonrecursive: ${TEST_PROGS}

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-tests_Makefile_in,v 1.18 2010/11/14 15:56:55 ajacoutot Exp $
--- tests/Makefile.in.orig Sun Nov 14 07:02:03 2010
+++ tests/Makefile.in Sun Nov 14 16:14:34 2010
@@ -640,8 +640,7 @@ test_programs = \
$OpenBSD: patch-tests_Makefile_in,v 1.19 2011/03/07 19:17:14 ajacoutot Exp $
--- tests/Makefile.in.orig Sat Jan 29 03:46:14 2011
+++ tests/Makefile.in Mon Jan 31 10:14:44 2011
@@ -643,8 +643,7 @@ test_programs = \
thread-test \
threadpool-test \
type-test \
@ -11,7 +11,7 @@ $OpenBSD: patch-tests_Makefile_in,v 1.18 2010/11/14 15:56:55 ajacoutot Exp $
test_scripts = run-collate-tests.sh run-assert-msg-test.sh
test_script_support_programs = unicode-collate
@@ -1404,7 +1403,7 @@ test: test-nonrecursive
@@ -1407,7 +1406,7 @@ test: test-nonrecursive
# test-nonrecursive: run tests only in cwd
test-nonrecursive: ${TEST_PROGS}

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-tests_refcount_Makefile_in,v 1.17 2010/11/14 15:56:55 ajacoutot Exp $
--- tests/refcount/Makefile.in.orig Sun Nov 14 07:02:04 2010
+++ tests/refcount/Makefile.in Sun Nov 14 16:14:34 2010
@@ -404,7 +404,6 @@ libgmodule = $(top_builddir)/gmodule/libgmodule-2.0.la
$OpenBSD: patch-tests_refcount_Makefile_in,v 1.18 2011/03/07 19:17:14 ajacoutot Exp $
--- tests/refcount/Makefile.in.orig Sat Jan 29 03:46:14 2011
+++ tests/refcount/Makefile.in Mon Jan 31 10:14:44 2011
@@ -407,7 +407,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 = \

View File

@ -1,9 +1,13 @@
@comment $OpenBSD: PLIST-docs,v 1.20 2010/09/30 07:17:19 ajacoutot Exp $
@comment $OpenBSD: PLIST-docs,v 1.21 2011/03/07 19:17:14 ajacoutot Exp $
@conflict glib2-<2.4.6
share/gtk-doc/
share/gtk-doc/html/
share/gtk-doc/html/gio/
share/gtk-doc/html/gio/GAction.html
share/gtk-doc/html/gio/GActionGroup.html
share/gtk-doc/html/gio/GAppInfo.html
share/gtk-doc/html/gio/GApplication.html
share/gtk-doc/html/gio/GApplicationCommandLine.html
share/gtk-doc/html/gio/GAsyncInitable.html
share/gtk-doc/html/gio/GAsyncResult.html
share/gtk-doc/html/gio/GBufferedInputStream.html
@ -14,6 +18,7 @@ share/gtk-doc/html/gio/GConverter.html
share/gtk-doc/html/gio/GCredentials.html
share/gtk-doc/html/gio/GDBusAuthObserver.html
share/gtk-doc/html/gio/GDBusConnection.html
share/gtk-doc/html/gio/GDBusError.html
share/gtk-doc/html/gio/GDBusMessage.html
share/gtk-doc/html/gio/GDBusMethodInvocation.html
share/gtk-doc/html/gio/GDBusProxy.html
@ -51,6 +56,8 @@ share/gtk-doc/html/gio/GNetworkAddress.html
share/gtk-doc/html/gio/GNetworkService.html
share/gtk-doc/html/gio/GOutputStream.html
share/gtk-doc/html/gio/GPermission.html
share/gtk-doc/html/gio/GPollableInputStream.html
share/gtk-doc/html/gio/GPollableOutputStream.html
share/gtk-doc/html/gio/GProxy.html
share/gtk-doc/html/gio/GProxyAddress.html
share/gtk-doc/html/gio/GProxyResolver.html
@ -58,6 +65,8 @@ share/gtk-doc/html/gio/GResolver.html
share/gtk-doc/html/gio/GSeekable.html
share/gtk-doc/html/gio/GSettings.html
share/gtk-doc/html/gio/GSettingsBackend.html
share/gtk-doc/html/gio/GSimpleAction.html
share/gtk-doc/html/gio/GSimpleActionGroup.html
share/gtk-doc/html/gio/GSimpleAsyncResult.html
share/gtk-doc/html/gio/GSimplePermission.html
share/gtk-doc/html/gio/GSocket.html
@ -68,9 +77,16 @@ share/gtk-doc/html/gio/GSocketConnection.html
share/gtk-doc/html/gio/GSocketControlMessage.html
share/gtk-doc/html/gio/GSocketListener.html
share/gtk-doc/html/gio/GSocketService.html
share/gtk-doc/html/gio/GSrvTarget.html
share/gtk-doc/html/gio/GTcpConnection.html
share/gtk-doc/html/gio/GTcpWrapperConnection.html
share/gtk-doc/html/gio/GThemedIcon.html
share/gtk-doc/html/gio/GThreadedSocketService.html
share/gtk-doc/html/gio/GTlsBackend.html
share/gtk-doc/html/gio/GTlsCertificate.html
share/gtk-doc/html/gio/GTlsClientConnection.html
share/gtk-doc/html/gio/GTlsConnection.html
share/gtk-doc/html/gio/GTlsServerConnection.html
share/gtk-doc/html/gio/GUnixConnection.html
share/gtk-doc/html/gio/GUnixCredentialsMessage.html
share/gtk-doc/html/gio/GUnixFDList.html
@ -89,29 +105,31 @@ share/gtk-doc/html/gio/api-index-2-20.html
share/gtk-doc/html/gio/api-index-2-22.html
share/gtk-doc/html/gio/api-index-2-24.html
share/gtk-doc/html/gio/api-index-2-26.html
share/gtk-doc/html/gio/api-index-2-28.html
share/gtk-doc/html/gio/api-index-deprecated.html
share/gtk-doc/html/gio/api-index-full.html
share/gtk-doc/html/gio/application.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/ch24.html
share/gtk-doc/html/gio/ch25.html
share/gtk-doc/html/gio/ch25s02.html
share/gtk-doc/html/gio/ch25s03.html
share/gtk-doc/html/gio/ch26.html
share/gtk-doc/html/gio/ch26s02.html
share/gtk-doc/html/gio/ch26s03.html
share/gtk-doc/html/gio/ch26s04.html
share/gtk-doc/html/gio/ch26s05.html
share/gtk-doc/html/gio/ch26s06.html
share/gtk-doc/html/gio/ch26s07.html
share/gtk-doc/html/gio/ch27.html
share/gtk-doc/html/gio/ch27s02.html
share/gtk-doc/html/gio/ch27s03.html
share/gtk-doc/html/gio/ch27s04.html
share/gtk-doc/html/gio/ch27s05.html
share/gtk-doc/html/gio/ch27s06.html
share/gtk-doc/html/gio/ch28.html
share/gtk-doc/html/gio/ch28s02.html
share/gtk-doc/html/gio/ch28s03.html
share/gtk-doc/html/gio/ch28s04.html
share/gtk-doc/html/gio/ch28s05.html
share/gtk-doc/html/gio/ch28s06.html
share/gtk-doc/html/gio/ch28s07.html
share/gtk-doc/html/gio/ch29.html
share/gtk-doc/html/gio/ch29s02.html
share/gtk-doc/html/gio/ch29s03.html
share/gtk-doc/html/gio/ch29s04.html
share/gtk-doc/html/gio/ch29s05.html
share/gtk-doc/html/gio/ch29s06.html
share/gtk-doc/html/gio/conversion.html
share/gtk-doc/html/gio/extending-gio.html
share/gtk-doc/html/gio/extending.html
@ -129,12 +147,11 @@ share/gtk-doc/html/gio/gio-Extension-Points.html
share/gtk-doc/html/gio/gio-GContentType.html
share/gtk-doc/html/gio/gio-GConverterInputstream.html
share/gtk-doc/html/gio/gio-GConverterOutputstream.html
share/gtk-doc/html/gio/gio-GDBusError.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-GSrvTarget.html
share/gtk-doc/html/gio/gio-Owning-Bus-Names.html
share/gtk-doc/html/gio/gio-TLS-Overview.html
share/gtk-doc/html/gio/gio-Unix-Mounts.html
share/gtk-doc/html/gio/gio-Watching-Bus-Names.html
share/gtk-doc/html/gio/gio-hierarchy.html
@ -142,7 +159,7 @@ share/gtk-doc/html/gio/gio-querymodules.html
share/gtk-doc/html/gio/gio.devhelp
share/gtk-doc/html/gio/gio.devhelp2
share/gtk-doc/html/gio/glib-compile-schemas.html
share/gtk-doc/html/gio/gsettings.html
share/gtk-doc/html/gio/gsettings-tool.html
share/gtk-doc/html/gio/gvfs-overview.png
share/gtk-doc/html/gio/highlevel-socket.html
share/gtk-doc/html/gio/home.png
@ -160,6 +177,7 @@ share/gtk-doc/html/gio/right.png
share/gtk-doc/html/gio/settings.html
share/gtk-doc/html/gio/streaming.html
share/gtk-doc/html/gio/style.css
share/gtk-doc/html/gio/tls.html
share/gtk-doc/html/gio/tools.html
share/gtk-doc/html/gio/types.html
share/gtk-doc/html/gio/up.png
@ -177,6 +195,7 @@ share/gtk-doc/html/glib/api-index-2-20.html
share/gtk-doc/html/glib/api-index-2-22.html
share/gtk-doc/html/glib/api-index-2-24.html
share/gtk-doc/html/glib/api-index-2-26.html
share/gtk-doc/html/glib/api-index-2-28.html
share/gtk-doc/html/glib/api-index-2-4.html
share/gtk-doc/html/glib/api-index-2-6.html
share/gtk-doc/html/glib/api-index-2-8.html
@ -271,6 +290,7 @@ share/gtk-doc/html/glib/glib.html
share/gtk-doc/html/glib/gtester-report.html
share/gtk-doc/html/glib/gtester.html
share/gtk-doc/html/glib/gvariant-format-strings.html
share/gtk-doc/html/glib/gvariant-text.html
share/gtk-doc/html/glib/home.png
share/gtk-doc/html/glib/index.html
share/gtk-doc/html/glib/index.sgml
@ -293,6 +313,7 @@ share/gtk-doc/html/gobject/api-index-2-2.html
share/gtk-doc/html/gobject/api-index-2-22.html
share/gtk-doc/html/gobject/api-index-2-24.html
share/gtk-doc/html/gobject/api-index-2-26.html
share/gtk-doc/html/gobject/api-index-2-28.html
share/gtk-doc/html/gobject/api-index-2-4.html
share/gtk-doc/html/gobject/api-index-2-6.html
share/gtk-doc/html/gobject/api-index-2-8.html

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST-main,v 1.16 2010/09/30 07:17:19 ajacoutot Exp $
@comment $OpenBSD: PLIST-main,v 1.17 2011/03/07 19:17:14 ajacoutot Exp $
@conflict glib2-fam-*
@pkgpath devel/glib2
@pkgpath devel/glib2,-fam
@ -25,7 +25,11 @@ include/gio-unix-2.0/gio/gunixoutputstream.h
include/gio-unix-2.0/gio/gunixsocketaddress.h
include/glib-2.0/
include/glib-2.0/gio/
include/glib-2.0/gio/gaction.h
include/glib-2.0/gio/gactiongroup.h
include/glib-2.0/gio/gappinfo.h
include/glib-2.0/gio/gapplication.h
include/glib-2.0/gio/gapplicationcommandline.h
include/glib-2.0/gio/gasyncinitable.h
include/glib-2.0/gio/gasyncresult.h
include/glib-2.0/gio/gbufferedinputstream.h
@ -89,6 +93,8 @@ include/glib-2.0/gio/gnetworkaddress.h
include/glib-2.0/gio/gnetworkservice.h
include/glib-2.0/gio/goutputstream.h
include/glib-2.0/gio/gpermission.h
include/glib-2.0/gio/gpollableinputstream.h
include/glib-2.0/gio/gpollableoutputstream.h
include/glib-2.0/gio/gproxy.h
include/glib-2.0/gio/gproxyaddress.h
include/glib-2.0/gio/gproxyaddressenumerator.h
@ -97,6 +103,8 @@ include/glib-2.0/gio/gresolver.h
include/glib-2.0/gio/gseekable.h
include/glib-2.0/gio/gsettings.h
include/glib-2.0/gio/gsettingsbackend.h
include/glib-2.0/gio/gsimpleaction.h
include/glib-2.0/gio/gsimpleactiongroup.h
include/glib-2.0/gio/gsimpleasyncresult.h
include/glib-2.0/gio/gsimplepermission.h
include/glib-2.0/gio/gsocket.h
@ -110,8 +118,14 @@ include/glib-2.0/gio/gsocketlistener.h
include/glib-2.0/gio/gsocketservice.h
include/glib-2.0/gio/gsrvtarget.h
include/glib-2.0/gio/gtcpconnection.h
include/glib-2.0/gio/gtcpwrapperconnection.h
include/glib-2.0/gio/gthemedicon.h
include/glib-2.0/gio/gthreadedsocketservice.h
include/glib-2.0/gio/gtlsbackend.h
include/glib-2.0/gio/gtlscertificate.h
include/glib-2.0/gio/gtlsclientconnection.h
include/glib-2.0/gio/gtlsconnection.h
include/glib-2.0/gio/gtlsserverconnection.h
include/glib-2.0/gio/gvfs.h
include/glib-2.0/gio/gvolume.h
include/glib-2.0/gio/gvolumemonitor.h
@ -242,6 +256,7 @@ lib/pkgconfig/gthread-2.0.pc
@man man/man1/gobject-query.1
@man man/man1/gsettings.1
@man man/man1/gtester.1
share/aclocal/
share/aclocal/glib-2.0.m4
share/aclocal/glib-gettext.m4
share/aclocal/gsettings.m4
@ -435,6 +450,9 @@ share/locale/tr/LC_MESSAGES/glib20.mo
share/locale/tt/
share/locale/tt/LC_MESSAGES/
share/locale/tt/LC_MESSAGES/glib20.mo
share/locale/ug/
share/locale/ug/LC_MESSAGES/
share/locale/ug/LC_MESSAGES/glib20.mo
share/locale/uk/LC_MESSAGES/glib20.mo
share/locale/vi/LC_MESSAGES/glib20.mo
share/locale/wa/