ports/154799: ports exp-run request.

Koop Mast kwm at FreeBSD.org
Tue Feb 15 13:40:11 UTC 2011


>Number:         154799
>Category:       ports
>Synopsis:       ports exp-run request.
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Feb 15 13:40:10 UTC 2011
>Closed-Date:
>Last-Modified:
>Originator:     Koop Mast
>Release:        FreeBSD 8.1-STABLE i386
>Organization:
>Environment:
System: FreeBSD freefall.freebsd.org 8.1-STABLE FreeBSD 8.1-STABLE #2 r215627: Sun Nov 21 13:36:51 UTC 2010 simon at freefall.freebsd.org:/usr/obj/usr/src/sys/FREEFALL i386


	
>Description:
	Port exp-run request to test the update of the following ports:

	glib20 and gtk20 update and there c++ bindings.
	New ports gtk30 and its c++ bindings.
	
>How-To-Repeat:
	
>Fix:

	

--- glib+gtk-3.diff begins here ---
diff -ruN --exclude=CVS ../stock/ports/Mk/bsd.gnome.mk ./Mk/bsd.gnome.mk
--- ../stock/ports/Mk/bsd.gnome.mk	2011-02-14 01:01:31.000000000 +0100
+++ ./Mk/bsd.gnome.mk	2011-02-13 14:27:09.000000000 +0100
@@ -3,7 +3,7 @@
 #
 # $FreeBSD: ports/Mk/bsd.gnome.mk,v 1.168 2011/02/12 19:33:34 kwm Exp $
 #	$NetBSD: $
-#     $MCom: ports/Mk/bsd.gnome.mk,v 1.512 2010/10/26 09:02:45 kwm Exp $
+#     $MCom: ports/Mk/bsd.gnome.mk,v 1.534 2011/02/11 22:12:29 kwm Exp $
 #
 # Please view me with 4 column tabs!
 
@@ -41,7 +41,7 @@
 # and MAKE_ENV defined.
 #
 #
-# GCONF_SCHEMAS	- Set the following to list of all the gconf schema files
+# GCONF_SCHEMAS		- Set the following to list of all the gconf schema files
 #				that your port installs. These schema files and
 #				%gconf.xml files will be automatically added to
 #				the ${PLIST}. For example, if your port has
@@ -50,10 +50,10 @@
 #				"GCONF_SCHEMAS=foo.schemas bar.schemas".
 #
 # GLIB_SCHEMAS		- Set the following to list of all gsettings schema files
-#				(*.gschema.xml) that your ports installs. The
-#				schema files will be automatically added to
-#				the ${PLIST}. For example, if your port has
-#				"share/glib-2.0/schemas/(foo.gschema.xml and bar.gschema.xml)",
+#				(*.gschema.xml) that your ports installs. The 
+#				schema files will be automatically added to 
+#				the ${PLIST}. For example, if your port has 
+#				"share/glib-2.0/schemas/(foo.gschema.xml and bar.gschema.xml)", 
 #				add the following to your Makefile:
 #				"GLIB_SCHEMAS=foo.gschema.xml bar.gschema.xml".
 #
@@ -90,7 +90,7 @@
 		pygobject pygtk2 pygtksourceview vte
 
 # GNOME 3 components
-_USE_GNOME_ALL+= dconf
+_USE_GNOME_ALL+= dconf gtk30
 
 GNOME_MAKEFILEIN?=	Makefile.in
 SCROLLKEEPER_DIR=	/var/db/rarian
@@ -283,6 +283,11 @@
 gtk20_USE_GNOME_IMPL=	intltool atk pango
 GTK2_VERSION=		2.10.0
 
+gtk30_LIB_DEPENDS=	gtk-3.0:${PORTSDIR}/x11-toolkits/gtk30
+gtk30_DETECT=		${LOCALBASE}/libdata/pkgconfig/gtk+-3.0.pc
+gtk30_USE_GNOME_IMPL=	intltool atk pango
+GTK3_VERSION=		3.0.0
+
 linc_LIB_DEPENDS=	linc.1:${PORTSDIR}/net/linc
 linc_DETECT=		${LOCALBASE}/libdata/pkgconfig/linc.pc
 linc_USE_GNOME_IMPL=	glib20
@@ -822,16 +827,16 @@
 	done
 .  endif
 
-# we put the @unexec behind the plist schema entry, because it compiles files
+# we put the @unexec behind the plist schema entry, because it compiles files 
 # in the directory. So we should remove the port file first before recompiling.
 .  if defined(GLIB_SCHEMAS)
 	@for i in ${GLIB_SCHEMAS}; do \
 		${ECHO_CMD} "share/glib-2.0/schemas/$${i}" >> ${TMPPLIST}; \
-		${ECHO_CMD} "@exec glib-compile-schemas %D/share/glib-2.0/schemas > /dev/null || /usr/bin/true" \
-			>> ${TMPPLIST}; \
-		${ECHO_CMD} "@unexec glib-compile-schemas --uninstall %D/share/glib-2.0/schemas > /dev/null || /usr/bin/true" \
-			>> ${TMPPLIST}; \
 	done
+	@${ECHO_CMD} "@exec glib-compile-schemas %D/share/glib-2.0/schemas > /dev/null || /usr/bin/true" \
+			>> ${TMPPLIST}; \
+	${ECHO_CMD} "@unexec glib-compile-schemas --uninstall %D/share/glib-2.0/schemas > /dev/null || /usr/bin/true" \
+			>> ${TMPPLIST};
 .endif
 
 .  if defined(INSTALLS_OMF)
diff -ruN --exclude=CVS ../stock/ports/accessibility/atkmm/Makefile ./accessibility/atkmm/Makefile
--- ../stock/ports/accessibility/atkmm/Makefile	2010-11-27 07:01:37.000000000 +0100
+++ ./accessibility/atkmm/Makefile	2011-02-12 02:00:40.000000000 +0100
@@ -2,12 +2,12 @@
 # Date created:				24 June 2010
 # Whom:					Koop Mast <kwm at FreeBSD.org>
 #
-# $FreeBSD: ports/accessibility/atkmm/Makefile,v 1.2 2010/11/27 06:01:37 marcus Exp $
-#   $MCom: ports/accessibility/atkmm/Makefile,v 1.4 2010/09/27 21:08:01 kwm Exp $
+# $FreeBSD$
+#   $MCom: ports/accessibility/atkmm/Makefile,v 1.6 2011/01/12 18:54:02 kwm Exp $
 #
 
 PORTNAME=	atkmm
-PORTVERSION=	2.22.1
+PORTVERSION=	2.22.2
 CATEGORIES=	accessibility gnome
 MASTER_SITES=	GNOME
 
diff -ruN --exclude=CVS ../stock/ports/accessibility/atkmm/distinfo ./accessibility/atkmm/distinfo
--- ../stock/ports/accessibility/atkmm/distinfo	2010-11-27 07:01:37.000000000 +0100
+++ ./accessibility/atkmm/distinfo	2011-02-12 02:00:40.000000000 +0100
@@ -1,2 +1,2 @@
-SHA256 (atkmm-2.22.1.tar.bz2) = cc358f9b7bddd4d291395e82f4f062d3dd73a4af212bc77a3c7fb6c7a34b7ac8
-SIZE (atkmm-2.22.1.tar.bz2) = 700426
+SHA256 (atkmm-2.22.2.tar.bz2) = b94666ae0acebea53241fa0b2444468ff66e8a7790dfc7491489a9ad2eeefa34
+SIZE (atkmm-2.22.2.tar.bz2) = 701506
diff -ruN --exclude=CVS ../stock/ports/devel/gio-fam-backend/Makefile ./devel/gio-fam-backend/Makefile
--- ../stock/ports/devel/gio-fam-backend/Makefile	2010-11-20 16:36:32.000000000 +0100
+++ ./devel/gio-fam-backend/Makefile	2011-02-11 23:00:55.000000000 +0100
@@ -2,12 +2,12 @@
 # Date Created:			22 December 2007
 # Whom:				Joe Marcus Clarke <marcus at FreeBSD.org>
 #
-# $FreeBSD: ports/devel/gio-fam-backend/Makefile,v 1.20 2010/11/20 15:36:32 kwm Exp $
-#   $MCom: ports/devel/gio-fam-backend/Makefile,v 1.65 2010/11/15 02:01:55 kwm Exp $
+# $FreeBSD$
+#   $MCom: ports/devel/gio-fam-backend/Makefile,v 1.73 2011/02/08 22:40:05 kwm Exp $
 #
 
 PORTNAME=	gio-fam-backend
-PORTVERSION=	2.26.1
+PORTVERSION=	2.28.0
 PORTREVISION=	0
 CATEGORIES=	devel
 MASTER_SITES=	${MASTER_SITE_GNOME:S,%SUBDIR%,sources/glib/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/},} \
diff -ruN --exclude=CVS ../stock/ports/devel/gio-fam-backend/distinfo ./devel/gio-fam-backend/distinfo
--- ../stock/ports/devel/gio-fam-backend/distinfo	2010-11-20 16:36:32.000000000 +0100
+++ ./devel/gio-fam-backend/distinfo	2011-02-11 23:00:55.000000000 +0100
@@ -1,2 +1,2 @@
-SHA256 (gnome2/glib-2.26.1.tar.bz2) = 7a74ff12b6b9dee1f2d0e520b56b68b621920c4f4250bdf23468e515625c28d5
-SIZE (gnome2/glib-2.26.1.tar.bz2) = 6704686
+SHA256 (gnome2/glib-2.28.0.tar.bz2) = 0605f538e5c022c237c97a34496979ba71d33c7b10b8d8edb84435498a651fb3
+SIZE (gnome2/glib-2.28.0.tar.bz2) = 6824906
diff -ruN --exclude=CVS ../stock/ports/devel/glib20/Makefile ./devel/glib20/Makefile
--- ../stock/ports/devel/glib20/Makefile	2010-12-04 08:31:06.000000000 +0100
+++ ./devel/glib20/Makefile	2011-02-11 23:00:44.000000000 +0100
@@ -2,14 +2,14 @@
 # Date Created:			28 July 1998
 # Whom:				Vanilla I. Shu <vanilla at FreeBSD.org>
 #
-# $FreeBSD: ports/devel/glib20/Makefile,v 1.174 2010/12/04 07:31:06 ade Exp $
-#   $MCom: ports/devel/glib20/Makefile,v 1.188 2010/11/15 02:01:55 kwm Exp $
+# $FreeBSD$
+#   $MCom: ports/devel/glib20/Makefile,v 1.198 2011/02/08 22:40:05 kwm Exp $
 #
 # !! DON'T FORGET ABOUT devel/gio-fam-backend !!
 
 PORTNAME=	glib
-PORTVERSION=	2.26.1
-PORTREVISION?=	1
+PORTVERSION=	2.28.0
+PORTREVISION?=	0
 CATEGORIES=	devel
 MASTER_SITES=	${MASTER_SITE_GNOME:S,%SUBDIR%,sources/glib/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/},} \
 		ftp://ftp.gtk.org/pub/glib/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}/ \
@@ -57,7 +57,7 @@
 .include <bsd.port.pre.mk>
 
 .if ${ARCH} == powerpc64
-EXTRA_PATCHES=	${.CURDIR}/files/extra-arch-powerpc64
+EXTRA_PATCHES=	${FILESDIR}/extra-arch-powerpc64
 .endif
 
 # Let glib use asm code for implementing atomic ops on i386 and amd64.
diff -ruN --exclude=CVS ../stock/ports/devel/glib20/distinfo ./devel/glib20/distinfo
--- ../stock/ports/devel/glib20/distinfo	2010-11-20 16:36:33.000000000 +0100
+++ ./devel/glib20/distinfo	2011-02-11 23:00:44.000000000 +0100
@@ -1,2 +1,2 @@
-SHA256 (gnome2/glib-2.26.1.tar.bz2) = 7a74ff12b6b9dee1f2d0e520b56b68b621920c4f4250bdf23468e515625c28d5
-SIZE (gnome2/glib-2.26.1.tar.bz2) = 6704686
+SHA256 (gnome2/glib-2.28.0.tar.bz2) = 0605f538e5c022c237c97a34496979ba71d33c7b10b8d8edb84435498a651fb3
+SIZE (gnome2/glib-2.28.0.tar.bz2) = 6824906
diff -ruN --exclude=CVS ../stock/ports/devel/glib20/files/patch-glib-2.0.pc.in ./devel/glib20/files/patch-glib-2.0.pc.in
--- ../stock/ports/devel/glib20/files/patch-glib-2.0.pc.in	1970-01-01 01:00:00.000000000 +0100
+++ ./devel/glib20/files/patch-glib-2.0.pc.in	2011-02-11 23:00:44.000000000 +0100
@@ -0,0 +1,8 @@
+--- glib-2.0.pc.in.orig	2011-01-06 07:29:30.000000000 +0000
++++ glib-2.0.pc.in	2011-01-06 07:29:41.000000000 +0000
+@@ -12,4 +12,4 @@
+ Version: @VERSION@
+ Libs: -L${libdir} -lglib-2.0 @INTLLIBS@
+ Libs.private: @ICONV_LIBS@
+-Cflags: -I${includedir}/glib-2.0 -I${libdir}/glib-2.0/include @GLIB_EXTRA_CFLAGS@
++Cflags: -I${includedir}/glib-2.0 @GLIB_EXTRA_CFLAGS@
diff -ruN --exclude=CVS ../stock/ports/devel/glib20/pkg-plist ./devel/glib20/pkg-plist
--- ../stock/ports/devel/glib20/pkg-plist	2010-11-20 16:36:33.000000000 +0100
+++ ./devel/glib20/pkg-plist	2011-02-11 23:00:44.000000000 +0100
@@ -20,7 +20,11 @@
 include/gio-unix-2.0/gio/gunixmounts.h
 include/gio-unix-2.0/gio/gunixoutputstream.h
 include/gio-unix-2.0/gio/gunixsocketaddress.h
+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
@@ -84,10 +88,14 @@
 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
 include/glib-2.0/gio/gproxyresolver.h
+include/glib-2.0/gio/gsimpleaction.h
+include/glib-2.0/gio/gsimpleactiongroup.h
 include/glib-2.0/gio/gresolver.h
 include/glib-2.0/gio/gseekable.h
 include/glib-2.0/gio/gsettings.h
@@ -105,8 +113,14 @@
 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
@@ -319,6 +333,7 @@
 share/locale/tl/LC_MESSAGES/glib20.mo
 share/locale/tr/LC_MESSAGES/glib20.mo
 share/locale/tt/LC_MESSAGES/glib20.mo
+share/locale/ug/LC_MESSAGES/glib20.mo
 share/locale/uk/LC_MESSAGES/glib20.mo
 share/locale/vi/LC_MESSAGES/glib20.mo
 share/locale/wa/LC_MESSAGES/glib20.mo
@@ -328,8 +343,9 @@
 share/locale/zh_HK/LC_MESSAGES/glib20.mo
 share/locale/zh_TW/LC_MESSAGES/glib20.mo
 @exec mkdir -p %D/share/glib-2.0/schemas
- at dirrmtry share/GConf/gsettings
- at dirrmtry share/GConf
+ at exec mkdir -p %D/share/GConf/gsettings
+ at dirrm share/GConf/gsettings
+ at dirrm share/GConf
 @exec glib-compile-schemas --uninstall %D/share/glib-2.0/schemas
 @dirrm share/glib-2.0/schemas
 @dirrm share/glib-2.0/gettext/po
@@ -352,6 +368,8 @@
 @dirrmtry share/locale/yi
 @dirrmtry share/locale/xh/LC_MESSAGES
 @dirrmtry share/locale/xh
+ at dirrmtry share/locale/ug/LC_MESSAGES
+ at dirrmtry share/locale/ug
 @dirrmtry share/locale/tt/LC_MESSAGES
 @dirrmtry share/locale/tt
 @dirrmtry share/locale/tl/LC_MESSAGES
diff -ruN --exclude=CVS ../stock/ports/devel/glibmm/Makefile ./devel/glibmm/Makefile
--- ../stock/ports/devel/glibmm/Makefile	2010-12-04 08:31:07.000000000 +0100
+++ ./devel/glibmm/Makefile	2011-02-12 02:28:13.000000000 +0100
@@ -2,12 +2,12 @@
 # Date created:         		04 December 2003
 # Whom:                 		Adam Weinberger <adamw at FreeBSD.org>
 #
-# $FreeBSD: ports/devel/glibmm/Makefile,v 1.52 2010/12/04 07:31:07 ade Exp $
-#   $MCom: ports/devel/glibmm/Makefile,v 1.96 2010/09/19 20:53:57 kwm Exp $
+# $FreeBSD$
+#   $MCom: ports/devel/glibmm/Makefile,v 1.104 2011/02/02 10:59:37 kwm Exp $
 #
 
 PORTNAME=	glibmm
-PORTVERSION=	2.25.5
+PORTVERSION=	2.27.93
 PORTREVISION?=	0
 PORTEPOCH=	1
 CATEGORIES=	devel
diff -ruN --exclude=CVS ../stock/ports/devel/glibmm/distinfo ./devel/glibmm/distinfo
--- ../stock/ports/devel/glibmm/distinfo	2010-11-20 16:36:33.000000000 +0100
+++ ./devel/glibmm/distinfo	2011-02-12 02:28:13.000000000 +0100
@@ -1,3 +1,2 @@
-MD5 (gnome2/glibmm-2.25.5.tar.bz2) = 280b57f81139f90709c867745c31be62
-SHA256 (gnome2/glibmm-2.25.5.tar.bz2) = a808bc5872556697a5bb221a3f9f14de9e8224b90a1900e7b37dcd0b3fcb0051
-SIZE (gnome2/glibmm-2.25.5.tar.bz2) = 5428421
+SHA256 (gnome2/glibmm-2.27.93.tar.bz2) = 4e4aafc62457543cc37bf1de68fdadd2e8187f07d997745937ba4fc12526c27a
+SIZE (gnome2/glibmm-2.27.93.tar.bz2) = 5696890
diff -ruN --exclude=CVS ../stock/ports/devel/glibmm/pkg-plist ./devel/glibmm/pkg-plist
--- ../stock/ports/devel/glibmm/pkg-plist	2010-11-20 16:36:33.000000000 +0100
+++ ./devel/glibmm/pkg-plist	2011-02-12 02:28:13.000000000 +0100
@@ -1,5 +1,8 @@
 include/giomm-%%API_VERSION%%/giomm.h
+include/giomm-%%API_VERSION%%/giomm/actiongroup.h
 include/giomm-%%API_VERSION%%/giomm/appinfo.h
+include/giomm-%%API_VERSION%%/giomm/application.h
+include/giomm-%%API_VERSION%%/giomm/applicationcommandline.h
 include/giomm-%%API_VERSION%%/giomm/asyncinitable.h
 include/giomm-%%API_VERSION%%/giomm/asyncresult.h
 include/giomm-%%API_VERSION%%/giomm/bufferedinputstream.h
@@ -9,6 +12,7 @@
 include/giomm-%%API_VERSION%%/giomm/credentials.h
 include/giomm-%%API_VERSION%%/giomm/datainputstream.h
 include/giomm-%%API_VERSION%%/giomm/dataoutputstream.h
+include/giomm-%%API_VERSION%%/giomm/dbusaddress.h
 include/giomm-%%API_VERSION%%/giomm/dbusauthobserver.h
 include/giomm-%%API_VERSION%%/giomm/dbusconnection.h
 include/giomm-%%API_VERSION%%/giomm/dbuserror.h
@@ -54,7 +58,10 @@
 include/giomm-%%API_VERSION%%/giomm/networkaddress.h
 include/giomm-%%API_VERSION%%/giomm/networkservice.h
 include/giomm-%%API_VERSION%%/giomm/outputstream.h
+include/giomm-%%API_VERSION%%/giomm/private/actiongroup_p.h
 include/giomm-%%API_VERSION%%/giomm/private/appinfo_p.h
+include/giomm-%%API_VERSION%%/giomm/private/application_p.h
+include/giomm-%%API_VERSION%%/giomm/private/applicationcommandline_p.h
 include/giomm-%%API_VERSION%%/giomm/private/asyncinitable_p.h
 include/giomm-%%API_VERSION%%/giomm/private/asyncresult_p.h
 include/giomm-%%API_VERSION%%/giomm/private/bufferedinputstream_p.h
@@ -63,6 +70,7 @@
 include/giomm-%%API_VERSION%%/giomm/private/credentials_p.h
 include/giomm-%%API_VERSION%%/giomm/private/datainputstream_p.h
 include/giomm-%%API_VERSION%%/giomm/private/dataoutputstream_p.h
+include/giomm-%%API_VERSION%%/giomm/private/dbusaddress_p.h
 include/giomm-%%API_VERSION%%/giomm/private/dbusauthobserver_p.h
 include/giomm-%%API_VERSION%%/giomm/private/dbusconnection_p.h
 include/giomm-%%API_VERSION%%/giomm/private/dbuserror_p.h
@@ -133,6 +141,7 @@
 include/giomm-%%API_VERSION%%/giomm/private/unixfdmessage_p.h
 include/giomm-%%API_VERSION%%/giomm/private/unixinputstream_p.h
 include/giomm-%%API_VERSION%%/giomm/private/unixoutputstream_p.h
+include/giomm-%%API_VERSION%%/giomm/private/unixsocketaddress_p.h
 include/giomm-%%API_VERSION%%/giomm/private/volume_p.h
 include/giomm-%%API_VERSION%%/giomm/private/volumemonitor_p.h
 include/giomm-%%API_VERSION%%/giomm/proxy.h
@@ -161,6 +170,7 @@
 include/giomm-%%API_VERSION%%/giomm/unixfdmessage.h
 include/giomm-%%API_VERSION%%/giomm/unixinputstream.h
 include/giomm-%%API_VERSION%%/giomm/unixoutputstream.h
+include/giomm-%%API_VERSION%%/giomm/unixsocketaddress.h
 include/giomm-%%API_VERSION%%/giomm/volume.h
 include/giomm-%%API_VERSION%%/giomm/volumemonitor.h
 include/giomm-%%API_VERSION%%/giomm/wrap_init.h
@@ -255,6 +265,7 @@
 include/glibmm-%%API_VERSION%%/glibmm/variant_basictypes.h
 include/glibmm-%%API_VERSION%%/glibmm/variantiter.h
 include/glibmm-%%API_VERSION%%/glibmm/varianttype.h
+include/glibmm-%%API_VERSION%%/glibmm/vectorutils.h
 include/glibmm-%%API_VERSION%%/glibmm/wrap.h
 include/glibmm-%%API_VERSION%%/glibmm/wrap_init.h
 include/glibmm-%%API_VERSION%%/glibmm_generate_extra_defs/generate_extra_defs.h
@@ -267,21 +278,16 @@
 lib/glibmm-%%VERSION%%/proc/m4/class_boxedtype_static.m4
 lib/glibmm-%%VERSION%%/proc/m4/class_generic.m4
 lib/glibmm-%%VERSION%%/proc/m4/class_gobject.m4
-lib/glibmm-%%VERSION%%/proc/m4/class_gtkobject.m4
 lib/glibmm-%%VERSION%%/proc/m4/class_interface.m4
 lib/glibmm-%%VERSION%%/proc/m4/class_opaque_copyable.m4
 lib/glibmm-%%VERSION%%/proc/m4/class_opaque_refcounted.m4
 lib/glibmm-%%VERSION%%/proc/m4/class_shared.m4
 lib/glibmm-%%VERSION%%/proc/m4/compare.m4
 lib/glibmm-%%VERSION%%/proc/m4/convert.m4
-lib/glibmm-%%VERSION%%/proc/m4/convert_atk.m4
 lib/glibmm-%%VERSION%%/proc/m4/convert_base.m4
-lib/glibmm-%%VERSION%%/proc/m4/convert_gdk.m4
 lib/glibmm-%%VERSION%%/proc/m4/convert_gio.m4
 lib/glibmm-%%VERSION%%/proc/m4/convert_glib.m4
-lib/glibmm-%%VERSION%%/proc/m4/convert_gtk.m4
-lib/glibmm-%%VERSION%%/proc/m4/convert_gtkmm.m4
-lib/glibmm-%%VERSION%%/proc/m4/convert_pango.m4
+lib/glibmm-%%VERSION%%/proc/m4/convert_glibmm.m4
 lib/glibmm-%%VERSION%%/proc/m4/ctor.m4
 lib/glibmm-%%VERSION%%/proc/m4/doc.m4
 lib/glibmm-%%VERSION%%/proc/m4/enum.m4
diff -ruN --exclude=CVS ../stock/ports/devel/glibmm-reference/Makefile ./devel/glibmm-reference/Makefile
--- ../stock/ports/devel/glibmm-reference/Makefile	2010-05-12 16:51:24.000000000 +0200
+++ ./devel/glibmm-reference/Makefile	2011-02-12 12:39:32.000000000 +0100
@@ -5,7 +5,7 @@
 # $FreeBSD: ports/devel/glibmm-reference/Makefile,v 1.8 2010/05/12 14:51:24 kwm Exp $
 #
 
-PORTREVISION=	5
+PORTREVISION=	0
 
 BUILD_DEPENDS=	${LOCALBASE}/libdata/pkgconfig/glibmm-2.4.pc:${PORTSDIR}/devel/glibmm \
 		gm4:${PORTSDIR}/devel/m4
diff -ruN --exclude=CVS ../stock/ports/devel/gobject-introspection/Makefile ./devel/gobject-introspection/Makefile
--- ../stock/ports/devel/gobject-introspection/Makefile	2010-12-28 23:59:38.000000000 +0100
+++ ./devel/gobject-introspection/Makefile	2011-02-12 00:47:49.000000000 +0100
@@ -2,12 +2,12 @@
 # Date created:				19 July 2009
 # Whom:					Alexander Logvinov <avl at FreeBSD.org>
 #
-# $FreeBSD: ports/devel/gobject-introspection/Makefile,v 1.13 2010/12/28 22:59:38 mezz Exp $
-#   $MCom: ports/devel/gobject-introspection/Makefile,v 1.26 2010/10/07 10:28:00 kwm Exp $
+# $FreeBSD$
+#   $MCom: ports/devel/gobject-introspection/Makefile,v 1.31 2011/02/07 21:58:12 kwm Exp $
 #
 
 PORTNAME=	gobject-introspection
-PORTVERSION=	0.9.12
+PORTVERSION=	0.10.2
 CATEGORIES=	devel
 MASTER_SITES=	GNOME
 DIST_SUBDIR=	gnome2
diff -ruN --exclude=CVS ../stock/ports/devel/gobject-introspection/distinfo ./devel/gobject-introspection/distinfo
--- ../stock/ports/devel/gobject-introspection/distinfo	2010-11-20 16:36:34.000000000 +0100
+++ ./devel/gobject-introspection/distinfo	2011-02-12 00:47:49.000000000 +0100
@@ -1,3 +1,2 @@
-MD5 (gnome2/gobject-introspection-0.9.12.tar.bz2) = 260ba5e77b5c0de0e7d8faf63ecbfee7
-SHA256 (gnome2/gobject-introspection-0.9.12.tar.bz2) = 9c0060d66d14a060057a1fc005be73675a1b8a00d4968ce8e78ff2d6b9f84e81
-SIZE (gnome2/gobject-introspection-0.9.12.tar.bz2) = 1050788
+SHA256 (gnome2/gobject-introspection-0.10.2.tar.bz2) = 5b98baef0823e0d0cf9fa008047d76303aa5582c0ae89d86346b4598c636b1a1
+SIZE (gnome2/gobject-introspection-0.10.2.tar.bz2) = 1080055
diff -ruN --exclude=CVS ../stock/ports/devel/gobject-introspection/files/patch-Makefile.in ./devel/gobject-introspection/files/patch-Makefile.in
--- ../stock/ports/devel/gobject-introspection/files/patch-Makefile.in	1970-01-01 01:00:00.000000000 +0100
+++ ./devel/gobject-introspection/files/patch-Makefile.in	2011-02-12 00:47:49.000000000 +0100
@@ -0,0 +1,18 @@
+--- Makefile.in.orig	2010-12-24 00:50:07.000000000 +0100
++++ Makefile.in	2010-12-24 00:51:39.000000000 +0100
+@@ -864,13 +864,13 @@
+ GLib_2_0_gir_PACKAGES = glib-2.0
+ GLib_2_0_gir_CFLAGS = \
+             -I$(GLIB_INCLUDEDIR) \
+-            -I$(GLIB_LIBDIR)/glib-2.0/include \
++            -I$(GLIB_INCLUDEDIR)/.. \
+             -DGETTEXT_PACKAGE=Dummy \
+             -DGLIB_COMPILATION \
+             -D__G_I18N_LIB_H__
+ 
+ GLib_2_0_gir_FILES = \
+-                $(GLIB_LIBDIR)/glib-2.0/include/glibconfig.h \
++                $(GLIB_INCLUDEDIR)/glibconfig.h \
+ 	$(GLIB_INCLUDEDIR)/glib/*.h \
+                 gir/glib-2.0.c
+ 
diff -ruN --exclude=CVS ../stock/ports/devel/gobject-introspection/files/patch-gir_Makefile.in ./devel/gobject-introspection/files/patch-gir_Makefile.in
--- ../stock/ports/devel/gobject-introspection/files/patch-gir_Makefile.in	2010-11-20 16:36:34.000000000 +0100
+++ ./devel/gobject-introspection/files/patch-gir_Makefile.in	1970-01-01 01:00:00.000000000 +0100
@@ -1,18 +0,0 @@
---- gir/Makefile.in.orig	2010-09-29 01:50:46.000000000 +0000
-+++ gir/Makefile.in	2010-09-29 01:52:35.000000000 +0000
-@@ -393,13 +393,13 @@
- GLib_2_0_gir_PACKAGES = glib-2.0
- GLib_2_0_gir_CFLAGS = \
-             -I$(GLIB_INCLUDEDIR) \
--            -I$(GLIB_LIBDIR)/glib-2.0/include \
-+            -I$(GLIB_INCLUDEDIR)/.. \
-             -DGETTEXT_PACKAGE=Dummy \
-             -DGLIB_COMPILATION \
-             -D__G_I18N_LIB_H__
- 
- GLib_2_0_gir_FILES = \
--                $(GLIB_LIBDIR)/glib-2.0/include/glibconfig.h \
-+                $(GLIB_INCLUDEDIR)/glibconfig.h \
- 	$(GLIB_INCLUDEDIR)/glib/*.h \
-                 glib-2.0.c
- 
diff -ruN --exclude=CVS ../stock/ports/devel/gobject-introspection/files/patch-tests_Makefile.in ./devel/gobject-introspection/files/patch-tests_Makefile.in
--- ../stock/ports/devel/gobject-introspection/files/patch-tests_Makefile.in	2010-11-20 16:36:34.000000000 +0100
+++ ./devel/gobject-introspection/files/patch-tests_Makefile.in	1970-01-01 01:00:00.000000000 +0100
@@ -1,18 +0,0 @@
---- tests/Makefile.in.orig	2010-09-21 16:31:48.000000000 +0000
-+++ tests/Makefile.in	2010-09-21 16:33:10.000000000 +0000
-@@ -819,6 +819,7 @@
- 	$(AM_V_GEN) $(INTROSPECTION_SCANNER) $(INTROSPECTION_SCANNER_ARGS) --warn-all --warn-error --reparse-validate \
- 	--namespace=Everything --nsversion=1.0 \
- 	--add-include-path=$(top_builddir)/gir --include=Gio-2.0 \
-+	--libtool="$(LIBTOOL)" \
- 	--library=libeverything-1.0.la --output=$@ \
- 	everything.h everything.c
- 
-@@ -826,6 +827,7 @@
- 	$(AM_V_GEN) $(INTROSPECTION_SCANNER) $(INTROSPECTION_SCANNER_ARGS) --warn-all --warn-error --reparse-validate \
- 	--namespace=GIMarshallingTests --symbol-prefix=gi_marshalling_tests --nsversion=1.0 \
- 	--add-include-path=$(top_builddir)/gir --include=Gio-2.0 \
-+	--libtool="$(LIBTOOL)" \
- 	--library=libgimarshallingtests-1.0.la  --output=$@ \
- 	$(srcdir)/gimarshallingtests.h $(srcdir)/gimarshallingtests.c
- 
diff -ruN --exclude=CVS ../stock/ports/graphics/cairomm/Makefile ./graphics/cairomm/Makefile
--- ../stock/ports/graphics/cairomm/Makefile	2010-12-04 08:31:54.000000000 +0100
+++ ./graphics/cairomm/Makefile	2011-02-15 14:03:07.000000000 +0100
@@ -8,6 +8,7 @@
 
 PORTNAME=	cairomm
 PORTVERSION=	1.9.6
+PORTREVISION=	1
 CATEGORIES=	graphics
 MASTER_SITES=	http://cairographics.org/releases/
 
diff -ruN --exclude=CVS ../stock/ports/graphics/cairomm/pkg-plist ./graphics/cairomm/pkg-plist
--- ../stock/ports/graphics/cairomm/pkg-plist	2010-11-20 16:36:38.000000000 +0100
+++ ./graphics/cairomm/pkg-plist	2011-02-15 11:45:32.000000000 +0100
@@ -199,6 +199,8 @@
 %%PORTDOCS%%@dirrm share/doc/cairomm-1.0/reference
 %%PORTDOCS%%@dirrm share/doc/cairomm-1.0
 %%PORTDOCS%%@dirrm share/devhelp/books/cairomm-1.0
+%%PORTDOCS%%@dirrmtry share/devhelp/books
+%%PORTDOCS%%@dirrmtry share/devhelp
 @dirrm lib/cairomm-1.0/include
 @dirrm lib/cairomm-1.0
 @dirrm include/cairomm-1.0/cairomm
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/Makefile ./x11-toolkits/Makefile
--- ../stock/ports/x11-toolkits/Makefile	2011-01-04 04:32:16.000000000 +0100
+++ ./x11-toolkits/Makefile	2011-02-12 00:59:59.000000000 +0100
@@ -56,6 +56,8 @@
     SUBDIR += gtk12
     SUBDIR += gtk20
     SUBDIR += gtk20-reference
+    SUBDIR += gtk30
+    SUBDIR += gtk30-reference
     SUBDIR += gtkdatabox
     SUBDIR += gtkextra
     SUBDIR += gtkextra2
@@ -71,6 +73,8 @@
     SUBDIR += gtkmm20-reference
     SUBDIR += gtkmm24
     SUBDIR += gtkmm24-reference
+    SUBDIR += gtkmm30
+    SUBDIR += gtkmm30-reference
     SUBDIR += gtksourceview
     SUBDIR += gtksourceview-reference
     SUBDIR += gtksourceview-sharp
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtk20/Makefile ./x11-toolkits/gtk20/Makefile
--- ../stock/ports/x11-toolkits/gtk20/Makefile	2010-12-04 08:34:16.000000000 +0100
+++ ./x11-toolkits/gtk20/Makefile	2011-02-12 01:01:37.000000000 +0100
@@ -2,13 +2,13 @@
 # Date Created:			28 Sep 1997
 # Whom:				Vanilla I. Shu <vanilla at MinJe.com.TW>
 #
-# $FreeBSD: ports/x11-toolkits/gtk20/Makefile,v 1.250 2010/12/04 07:34:16 ade Exp $
-#   $MCom: ports/x11-toolkits/gtk20/Makefile,v 1.209 2010/11/15 21:17:48 kwm Exp $
+# $FreeBSD$
+#   $MCom: ports/x11-toolkits/gtk20/Makefile,v 1.217 2011/01/30 10:29:09 avl Exp $
 #
 
 PORTNAME=	gtk
-PORTVERSION=	2.22.1
-PORTREVISION?=	1
+PORTVERSION=	2.24.0
+PORTREVISION?=	0
 CATEGORIES=	x11-toolkits
 MASTER_SITES=	${MASTER_SITE_GNOME:S,%SUBDIR%,sources/gtk+/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}/,} \
 		ftp://ftp.gtk.org/pub/gtk/%SUBDIR%/ \
@@ -22,7 +22,7 @@
 DIST_SUBDIR=	gnome2
 
 MAINTAINER=	gnome at FreeBSD.org
-COMMENT=	Gimp Toolkit for X11 GUI (current stable version)
+COMMENT=	Gimp Toolkit for X11 GUI (previous stable version)
 
 LICENSE=	LGPL20
 LICENSE_FILE=	${WRKSRC}/COPYING
@@ -44,7 +44,7 @@
 USE_GETTEXT=	yes
 USE_XORG=	xext xrender x11 xinerama xi xrandr xcursor xfixes xdamage \
 		xcomposite
-CONFIGURE_ARGS=	--enable-static --with-xinput=yes --with-libjasper
+CONFIGURE_ARGS=	--enable-static --with-xinput=yes
 CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include/freetype2 \
 			  -I${LOCALBASE}/include" \
 		LDFLAGS="-L${LOCALBASE}/lib"
@@ -57,7 +57,7 @@
 
 OPTIONS=	CUPS "Enable cups printing support" on
 
-.include <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
 
 .if defined(WITH_CUPS)
 LIB_DEPENDS+=	cups.2:${PORTSDIR}/print/cups-client
@@ -77,6 +77,12 @@
 	@${REINPLACE_CMD} -e 's|file,cups|file,cups,lpr|' \
 		${WRKSRC}/gtk/Makefile.in
 
+pre-configure:
+.if !exists(${LOCALBASE}/libdata/pkgconfig/cairo-xlib.pc)
+	@${ECHO_CMD} "${PKGNAME}: Needs cairo build with X11 support."
+	@${FALSE}
+.endif
+
 pre-build:
 	@${RM} -rf ${WRKSRC}/docs/gtk.info*
 
@@ -89,6 +95,6 @@
 	${INSTALL_MAN} ${MAN1:S|^|${WRKSRC}/docs/reference/gtk/|} \
 		${PREFIX}/man/man1
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
 
 .endif
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtk20/distinfo ./x11-toolkits/gtk20/distinfo
--- ../stock/ports/x11-toolkits/gtk20/distinfo	2010-11-20 16:37:04.000000000 +0100
+++ ./x11-toolkits/gtk20/distinfo	2011-02-11 23:01:32.000000000 +0100
@@ -1,2 +1,2 @@
-SHA256 (gnome2/gtk+-2.22.1.tar.bz2) = 965bc124f0d25087c4cb2a64cbfd7e4f896e05be8d560fbba68dd8685ba24d07
-SIZE (gnome2/gtk+-2.22.1.tar.bz2) = 18306164
+SHA256 (gnome2/gtk+-2.24.0.tar.bz2) = cbed1a7b8cd1e471388a00f22557dd061334698a0c1aece11b7ed6541d115606
+SIZE (gnome2/gtk+-2.24.0.tar.bz2) = 18008113
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtk20/files/patch-ah ./x11-toolkits/gtk20/files/patch-ah
--- ../stock/ports/x11-toolkits/gtk20/files/patch-ah	2010-05-10 23:19:02.000000000 +0200
+++ ./x11-toolkits/gtk20/files/patch-ah	2011-02-11 23:01:32.000000000 +0100
@@ -1,11 +1,11 @@
---- docs/Makefile.in.orig	2009-12-25 20:26:59.000000000 +0100
-+++ docs/Makefile.in	2009-12-25 20:27:35.000000000 +0100
-@@ -241,7 +241,7 @@
+--- docs/Makefile.in.orig	2010-12-24 00:14:51.000000000 +0100
++++ docs/Makefile.in	2010-12-24 00:15:52.000000000 +0100
+@@ -220,7 +220,7 @@
  LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@
  LT_VERSION_INFO = @LT_VERSION_INFO@
  MAINT = @MAINT@
 -MAKEINFO = @MAKEINFO@
 +MAKEINFO = @MAKEINFO@ --no-split
+ MANIFEST_TOOL = @MANIFEST_TOOL@
  MATH_LIB = @MATH_LIB@
  MKDIR_P = @MKDIR_P@
- MKINSTALLDIRS = @MKINSTALLDIRS@
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtk20/pkg-plist ./x11-toolkits/gtk20/pkg-plist
--- ../stock/ports/x11-toolkits/gtk20/pkg-plist	2010-11-20 16:37:04.000000000 +0100
+++ ./x11-toolkits/gtk20/pkg-plist	2011-02-11 23:01:32.000000000 +0100
@@ -87,6 +87,7 @@
 include/gtk-2.0/gtk/gtkcombo.h
 include/gtk-2.0/gtk/gtkcombobox.h
 include/gtk-2.0/gtk/gtkcomboboxentry.h
+include/gtk-2.0/gtk/gtkcomboboxtext.h
 include/gtk-2.0/gtk/gtkcontainer.h
 include/gtk-2.0/gtk/gtkctree.h
 include/gtk-2.0/gtk/gtkcurve.h
@@ -487,8 +488,6 @@
 share/locale/ja/LC_MESSAGES/gtk20.mo
 share/locale/ka/LC_MESSAGES/gtk20-properties.mo
 share/locale/ka/LC_MESSAGES/gtk20.mo
-share/locale/kg/LC_MESSAGES/gtk20-properties.mo
-share/locale/kg/LC_MESSAGES/gtk20.mo
 share/locale/kk/LC_MESSAGES/gtk20-properties.mo
 share/locale/kk/LC_MESSAGES/gtk20.mo
 share/locale/kn/LC_MESSAGES/gtk20-properties.mo
@@ -497,8 +496,6 @@
 share/locale/ko/LC_MESSAGES/gtk20.mo
 share/locale/ku/LC_MESSAGES/gtk20-properties.mo
 share/locale/ku/LC_MESSAGES/gtk20.mo
-share/locale/lg/LC_MESSAGES/gtk20-properties.mo
-share/locale/lg/LC_MESSAGES/gtk20.mo
 share/locale/li/LC_MESSAGES/gtk20-properties.mo
 share/locale/li/LC_MESSAGES/gtk20.mo
 share/locale/lt/LC_MESSAGES/gtk20-properties.mo
@@ -680,14 +677,10 @@
 @dirrmtry share/locale/mi
 @dirrmtry share/locale/mai/LC_MESSAGES
 @dirrmtry share/locale/mai
- at dirrmtry share/locale/lg/LC_MESSAGES
- at dirrmtry share/locale/lg
 @dirrmtry share/locale/ku/LC_MESSAGES
 @dirrmtry share/locale/ku
 @dirrmtry share/locale/kk/LC_MESSAGES
 @dirrmtry share/locale/kk
- at dirrmtry share/locale/kg/LC_MESSAGES
- at dirrmtry share/locale/kg
 @dirrmtry share/locale/io/LC_MESSAGES
 @dirrmtry share/locale/io
 @dirrmtry share/locale/ia/LC_MESSAGES
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtk30/Makefile ./x11-toolkits/gtk30/Makefile
--- ../stock/ports/x11-toolkits/gtk30/Makefile	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtk30/Makefile	2011-02-14 18:12:59.000000000 +0100
@@ -0,0 +1,103 @@
+# New ports collection makefile for:   gtk13
+# Date Created:			28 Sep 1997
+# Whom:				Vanilla I. Shu <vanilla at MinJe.com.TW>
+#
+# $FreeBSD$
+#   $MCom: ports/x11-toolkits/gtk30/Makefile,v 1.23 2011/02/14 17:14:28 kwm Exp $
+#
+
+PORTNAME=	gtk
+PORTVERSION=	3.0.0
+PORTREVISION?=	0
+CATEGORIES=	x11-toolkits
+MASTER_SITES=	${MASTER_SITE_GNOME:S,%SUBDIR%,sources/gtk+/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}/,} \
+		ftp://ftp.gtk.org/pub/gtk/%SUBDIR%/ \
+		ftp://ftp.gimp.org/pub/%SUBDIR%/ \
+		ftp://ftp.cs.umn.edu/pub/gimp/%SUBDIR%/ \
+		http://www.ameth.org/gimp/%SUBDIR%/ \
+		ftp://ftp.mirror.ac.uk/sites/ftp.gimp.org/pub/%SUBDIR%/ \
+		${MASTER_SITE_RINGSERVER:S,%SUBDIR%,graphics/gimp/%SUBDIR%,}
+MASTER_SITE_SUBDIR=	gtk/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
+DISTNAME=	gtk+-${PORTVERSION}
+DIST_SUBDIR=	gnome3
+
+MAINTAINER=	gnome at FreeBSD.org
+COMMENT=	Gimp Toolkit for X11 GUI (current stable version)
+
+LICENSE=	LGPL20
+LICENSE_FILE=	${WRKSRC}/COPYING
+USE_BZIP2=	yes
+LATEST_LINK=	gtk30
+
+.if !defined(REFERENCE_PORT)
+
+BUILD_DEPENDS+=	g-ir-scanner:${PORTSDIR}/devel/gobject-introspection
+RUN_DEPENDS+=	${LOCALBASE}/share/mime/magic:${PORTSDIR}/misc/shared-mime-info \
+		${LOCALBASE}/share/icons/hicolor/index.theme:${PORTSDIR}/misc/hicolor-icon-theme
+
+USE_GMAKE=	yes
+USE_PERL5_BUILD=yes
+MAKE_JOBS_UNSAFE=	yes
+USE_LDCONFIG=	yes
+USE_AUTOTOOLS=	libtool
+USE_GNOME=	gnomehack atk pango gdkpixbuf2 ltverhack gtk20
+USE_GETTEXT=	yes
+USE_XORG=	xext xrender x11 xinerama xi xrandr xcursor xfixes xdamage \
+		xcomposite
+CONFIGURE_ARGS=	--enable-static --enable-xinput=yes
+CONFIGURE_ARGS+=--enable-gtk2-dependency
+CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include/freetype2 \
+			  -I${LOCALBASE}/include" \
+		LDFLAGS="-L${LOCALBASE}/lib"
+
+GLIB_SCHEMAS=	org.gtk.Settings.FileChooser.gschema.xml
+
+MAN1=		gtk-query-immodules-3.0.1
+
+.if defined(WITH_DEBUG)
+CONFIGURE_ARGS+=	--enable-debug=yes
+.endif
+
+OPTIONS=	CUPS "Enable cups printing support" on
+
+.include <bsd.port.options.mk>
+
+.if defined(WITH_CUPS)
+LIB_DEPENDS+=	cups.2:${PORTSDIR}/print/cups-client
+CONFIGURE_ARGS+=--enable-cups=auto
+PLIST_SUB+=	CUPS=""
+.else
+CONFIGURE_ARGS+=--disable-cups
+PLIST_SUB+=	CUPS="@comment "
+.endif
+
+post-patch:
+	@${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${GREP} -l lgmodule | \
+		${XARGS} ${REINPLACE_CMD} -e 's|-lgmodule|@GMODULE_LIBS@|g'
+	@${REINPLACE_CMD} -e 's|[{]libdir[}]/locale|{datadir}/locale|g' \
+		${WRKSRC}/configure
+	@${REINPLACE_CMD} -e 's|@LN_S@|${LN} -sf|' ${WRKSRC}/gtk/Makefile.in
+	@${REINPLACE_CMD} -e 's|file,cups|file,cups,lpr|' \
+		${WRKSRC}/gtk/Makefile.in
+
+pre-configure:
+.if !exists(${LOCALBASE}/libdata/pkgconfig/cairo-xlib.pc)
+	@${ECHO_CMD} "${PKGNAME}: Needs cairo build with X11 support."
+	@${FALSE}
+.endif
+
+pre-build:
+	@${RM} -rf ${WRKSRC}/docs/gtk.info*
+
+post-install:
+	-@${FIND} ${LOCALBASE}/share/icons -type d -depth 1 -exec \
+		${PREFIX}/bin/gtk-update-icon-cache -q -f {} \; 2>/dev/null
+	@${MKDIR} ${PREFIX}/lib/gtk-3.0/modules
+	@${MKDIR} ${PREFIX}/lib/gtk-3.0/${GTK3_VERSION}/engines
+	@${MKDIR} ${PREFIX}/lib/gtk-3.0/${GTK3_VERSION}/loaders
+	${INSTALL_MAN} ${MAN1:S|^|${WRKSRC}/docs/reference/gtk/|} \
+		${PREFIX}/man/man1
+
+.include <bsd.port.mk>
+
+.endif
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtk30/distinfo ./x11-toolkits/gtk30/distinfo
--- ../stock/ports/x11-toolkits/gtk30/distinfo	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtk30/distinfo	2011-02-11 22:59:07.000000000 +0100
@@ -0,0 +1,2 @@
+SHA256 (gnome3/gtk+-3.0.0.tar.bz2) = ec0729bf28f09a16e0b0a6a588556c7cee091f40426505b3694a9488bf6cbf67
+SIZE (gnome3/gtk+-3.0.0.tar.bz2) = 16617063
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtk30/files/patch-Makefile.in ./x11-toolkits/gtk30/files/patch-Makefile.in
--- ../stock/ports/x11-toolkits/gtk30/files/patch-Makefile.in	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtk30/files/patch-Makefile.in	2011-02-11 01:30:59.000000000 +0100
@@ -0,0 +1,11 @@
+--- Makefile.in.orig	2011-02-02 00:09:55.000000000 +0000
++++ Makefile.in	2011-02-02 00:10:16.000000000 +0000
+@@ -418,7 +418,7 @@
+ 	|| { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \
+ 	&& DISPLAY=:$$XID && export DISPLAY
+ 
+-SRC_SUBDIRS = gdk gtk modules demos tests perf examples
++SRC_SUBDIRS = gdk gtk modules demos perf examples
+ SUBDIRS = po po-properties $(SRC_SUBDIRS) docs m4macros build
+ ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
+ MAINTAINERCLEANFILES = \
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtk30/files/patch-configure ./x11-toolkits/gtk30/files/patch-configure
--- ../stock/ports/x11-toolkits/gtk30/files/patch-configure	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtk30/files/patch-configure	2011-01-12 16:03:47.000000000 +0100
@@ -0,0 +1,86 @@
+--- configure.orig	2011-01-06 19:45:42.000000000 +0000
++++ configure	2011-01-06 19:48:43.000000000 +0000
+@@ -18656,7 +18656,7 @@
+ GIO_PACKAGE=gio-2.0
+ PANGO_PACKAGES="pango pangocairo"
+ 
+-if test "x$enable_x11_backend" == xyes; then
++if test "x$enable_x11_backend" = xyes; then
+   # GDK calls the xlib backend "x11," cairo calls it "xlib." Other
+   # backend names are identical.
+   cairo_backends="$cairo_backends cairo-xlib"
+@@ -18669,7 +18669,7 @@
+ #define GDK_WINDOWING_X11"
+ fi
+ 
+-if test "x$enable_win32_backend" == xyes; then
++if test "x$enable_win32_backend" = xyes; then
+   cairo_backends="$cairo_backends cairo-win32"
+   GDK_BACKENDS="$GDK_BACKENDS win32"
+   backend_immodules="$backend_immodules,ime"
+@@ -18697,7 +18697,7 @@
+ 
+ fi
+ 
+-if test "x$enable_quartz_backend" == xyes; then
++if test "x$enable_quartz_backend" = xyes; then
+   cairo_backends="$cairo_backends cairo-quartz"
+   GDK_BACKENDS="$GDK_BACKENDS quartz"
+   GDK_WINDOWING="$GDK_WINDOWING
+@@ -18723,7 +18723,7 @@
+ fi
+ 
+ # strip leading space
+-GDK_BACKENDS=${GDK_BACKENDS/# }
++GDK_BACKENDS=${GDK_BACKENDS# }
+ 
+ 
+ 
+@@ -21834,7 +21834,7 @@
+ GTK_DEP_LIBS_FOR_X=
+ X_EXTENSIONS=
+ 
+-if test "x$enable_x11_backend" == xyes; then
++if test "x$enable_x11_backend" = xyes; then
+   X_PACKAGES=fontconfig
+ 
+   #
+@@ -22992,7 +22992,7 @@
+ 
+ 
+   # strip leading space
+-  X_EXTENSIONS=${X_EXTENSIONS/# }
++  X_EXTENSIONS=${X_EXTENSIONS# }
+ 
+ else
+   XPACKAGES=
+@@ -23164,7 +23164,7 @@
+ fi
+ 
+ GTK_PACKAGES="atk cairo cairo-gobject gdk-pixbuf-2.0 gio-2.0"
+-if test "x$enable_x11_backend" == xyes; then
++if test "x$enable_x11_backend" = xyes; then
+   GTK_PACKAGES="$GTK_PACKAGES pangoft2"
+ fi
+ GTK_EXTRA_LIBS=
+@@ -24043,9 +24043,9 @@
+        INTROSPECTION_COMPILER=`$PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0`
+        INTROSPECTION_GENERATE=`$PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0`
+        INTROSPECTION_GIRDIR=`$PKG_CONFIG --variable=girdir gobject-introspection-1.0`
+-       INTROSPECTION_GIRDIR=${INTROSPECTION_GIRDIR/$datadir/\$(datadir)}
++       INTROSPECTION_GIRDIR=`echo ${INTROSPECTION_GIRDIR} | sed -e "s|${datadir}|\\\$(datadir)|"`
+        INTROSPECTION_TYPELIBDIR="$($PKG_CONFIG --variable=typelibdir gobject-introspection-1.0)"
+-       INTROSPECTION_TYPELIBDIR=${INTROSPECTION_TYPELIBDIR/$libdir/\$(libdir)}
++       INTROSPECTION_TYPELIBDIR=`echo ${INTROSPECTION_TYPELIBDIR} | sed -e "s|${libdir}|\\\$(libdir)|"`
+        INTROSPECTION_CFLAGS=`$PKG_CONFIG --cflags gobject-introspection-1.0`
+        INTROSPECTION_LIBS=`$PKG_CONFIG --libs gobject-introspection-1.0`
+        INTROSPECTION_MAKEFILE=`$PKG_CONFIG --variable=datadir gobject-introspection-1.0`/gobject-introspection-1.0/Makefile.introspection
+@@ -27580,7 +27580,7 @@
+ 
+ 
+ # beautify the immodule list a bit
+-included_immodules=${included_immodules//,/ }
++included_immodules=`printf '%s' "$included_immodules" | sed -e 's/,/ /g'`
+ included_immodules=${included_immodules:-none}
+ 
+ echo "configuration:"
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtk30/files/patch-docs_Makefile.in ./x11-toolkits/gtk30/files/patch-docs_Makefile.in
--- ../stock/ports/x11-toolkits/gtk30/files/patch-docs_Makefile.in	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtk30/files/patch-docs_Makefile.in	2010-12-27 12:14:16.000000000 +0100
@@ -0,0 +1,11 @@
+--- docs/Makefile.in.orig	2010-12-24 00:14:51.000000000 +0100
++++ docs/Makefile.in	2010-12-24 00:15:52.000000000 +0100
+@@ -220,7 +220,7 @@
+ LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@
+ LT_VERSION_INFO = @LT_VERSION_INFO@
+ MAINT = @MAINT@
+-MAKEINFO = @MAKEINFO@
++MAKEINFO = @MAKEINFO@ --no-split
+ MANIFEST_TOOL = @MANIFEST_TOOL@
+ MATH_LIB = @MATH_LIB@
+ MKDIR_P = @MKDIR_P@
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtk30/files/patch-docs_reference_Makefile.in ./x11-toolkits/gtk30/files/patch-docs_reference_Makefile.in
--- ../stock/ports/x11-toolkits/gtk30/files/patch-docs_reference_Makefile.in	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtk30/files/patch-docs_reference_Makefile.in	2010-12-01 01:29:38.000000000 +0100
@@ -0,0 +1,11 @@
+--- docs/reference/Makefile.in.orig	2010-06-27 12:22:03.000000000 +0200
++++ docs/reference/Makefile.in	2010-06-27 12:22:37.000000000 +0200
+@@ -354,7 +354,7 @@
+ 	|| { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \
+ 	&& DISPLAY=:$$XID && export DISPLAY
+ 
+-SUBDIRS = gdk gtk libgail-util
++SUBDIRS = #gdk gtk libgail-util
+ GITIGNOREFILES = */*.1
+ all: all-recursive
+ 
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtk30/files/patch-docs_reference_gtk_Makefile.in ./x11-toolkits/gtk30/files/patch-docs_reference_gtk_Makefile.in
--- ../stock/ports/x11-toolkits/gtk30/files/patch-docs_reference_gtk_Makefile.in	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtk30/files/patch-docs_reference_gtk_Makefile.in	2011-02-03 23:50:19.000000000 +0100
@@ -0,0 +1,12 @@
+--- docs/reference/gtk/Makefile.in.orig	2011-02-01 22:06:23.000000000 +0000
++++ docs/reference/gtk/Makefile.in	2011-02-01 22:07:12.000000000 +0000
+@@ -735,8 +735,7 @@ CLEANFILES = $(SCANOBJ_FILES) $(REPORT_F
+ 
+ ########################################################################
+ man_MANS = \
+-	gtk-query-immodules-3.0.1	\
+-	gtk-update-icon-cache.1
++	gtk-query-immodules-3.0.1
+ 
+ MAINTAINERCLEANFILES = $(man_MANS) $(BUILT_SOURCES)
+ all: all-am
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtk30/files/patch-gtk_Makefile.in ./x11-toolkits/gtk30/files/patch-gtk_Makefile.in
--- ../stock/ports/x11-toolkits/gtk30/files/patch-gtk_Makefile.in	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtk30/files/patch-gtk_Makefile.in	2011-02-11 22:59:07.000000000 +0100
@@ -0,0 +1,264 @@
+--- gtk/Makefile.in.orig	2011-02-10 19:45:12.000000000 +0000
++++ gtk/Makefile.in	2011-02-11 01:21:47.000000000 +0000
+@@ -1669,7 +1669,171 @@
+ 	stock-icons/24/folder-remote.png 		\
+ 	stock-icons/24/user-home.png 			\
+ 	stock-icons/24/user-desktop.png 		\
+-	stock-icons/24/text-x-generic.png
++	stock-icons/24/text-x-generic.png               \
++	stock-icons/16/gtk-quit.png                     \
++	stock-icons/16/gtk-info.png                     \
++	stock-icons/16/gtk-file.png                     \
++	stock-icons/16/gtk-open.png                     \
++	stock-icons/16/gtk-print-preview.png            \
++	stock-icons/16/gtk-print.png                    \
++	stock-icons/16/gtk-properties.png               \
++	stock-icons/16/gtk-revert-to-saved-ltr.png      \
++	stock-icons/16/gtk-revert-to-saved-rtl.png      \
++	stock-icons/16/gtk-save-as.png                  \
++	stock-icons/16/gtk-new.png                      \
++	stock-icons/16/gtk-harddisk.png                 \
++	stock-icons/16/gtk-clear.png                    \
++	stock-icons/16/gtk-copy.png                     \
++	stock-icons/16/gtk-cut.png                      \
++	stock-icons/16/gtk-delete.png                   \
++	stock-icons/16/gtk-find-and-replace.png         \
++	stock-icons/16/gtk-find.png                     \
++	stock-icons/16/gtk-paste.png                    \
++	stock-icons/16/gtk-redo-ltr.png                 \
++	stock-icons/16/gtk-redo-rtl.png                 \
++	stock-icons/16/gtk-select-all.png               \
++	stock-icons/16/gtk-undo-ltr.png                 \
++	stock-icons/16/gtk-undo-rtl.png                 \
++	stock-icons/16/gtk-directory.png                \
++	stock-icons/16/gtk-unindent-ltr.png             \
++	stock-icons/16/gtk-unindent-rtl.png             \
++	stock-icons/16/gtk-indent-ltr.png               \
++	stock-icons/16/gtk-indent-rtl.png               \
++	stock-icons/16/gtk-justify-center.png           \
++	stock-icons/16/gtk-justify-fill.png             \
++	stock-icons/16/gtk-justify-left.png             \
++	stock-icons/16/gtk-justify-right.png            \
++	stock-icons/16/gtk-bold.png                     \
++	stock-icons/16/gtk-italic.png                   \
++	stock-icons/16/gtk-strikethrough.png            \
++	stock-icons/16/gtk-underline.png                \
++	stock-icons/16/gtk-goto-bottom.png              \
++	stock-icons/16/gtk-go-down.png                  \
++	stock-icons/16/gtk-goto-first-ltr.png           \
++	stock-icons/16/gtk-home.png                     \
++	stock-icons/16/gtk-jump-to-ltr.png              \
++	stock-icons/16/gtk-jump-to-rtl.png              \
++	stock-icons/16/gtk-goto-last-ltr.png            \
++	stock-icons/16/gtk-go-forward-ltr.png           \
++	stock-icons/16/gtk-go-back-ltr.png              \
++	stock-icons/16/gtk-goto-top.png                 \
++	stock-icons/16/gtk-go-up.png                    \
++	stock-icons/16/gtk-about.png                    \
++	stock-icons/16/gtk-help.png                     \
++	stock-icons/16/gtk-missing-image.png            \
++	stock-icons/16/gtk-add.png                      \
++	stock-icons/16/gtk-remove.png                   \
++	stock-icons/16/gtk-floppy.png                   \
++	stock-icons/16/gtk-cdrom.png                    \
++	stock-icons/16/gtk-media-pause.png              \
++	stock-icons/16/gtk-media-play-ltr.png           \
++	stock-icons/16/gtk-media-play-rtl.png           \
++	stock-icons/16/gtk-media-stop.png               \
++	stock-icons/16/gtk-media-record.png             \
++	stock-icons/16/gtk-media-rewind-ltr.png         \
++	stock-icons/16/gtk-media-forward-ltr.png        \
++	stock-icons/16/gtk-media-previous-ltr.png       \
++	stock-icons/16/gtk-media-next-ltr.png           \
++	stock-icons/16/gtk-network.png                  \
++	stock-icons/16/gtk-print-error.png              \
++	stock-icons/16/gtk-print-report.png             \
++	stock-icons/16/gtk-print-paused.png             \
++	stock-icons/16/gtk-print-warning.png            \
++	stock-icons/16/gtk-stop.png                     \
++	stock-icons/16/gtk-execute.png                  \
++	stock-icons/16/gtk-spell-check.png              \
++	stock-icons/16/gtk-fullscreen.png               \
++	stock-icons/16/gtk-refresh.png                  \
++	stock-icons/16/gtk-leave-fullscreen.png         \
++	stock-icons/16/gtk-sort-ascending.png           \
++	stock-icons/16/gtk-sort-descending.png          \
++	stock-icons/16/gtk-close.png                    \
++	stock-icons/16/gtk-zoom-fit.png                 \
++	stock-icons/16/gtk-zoom-in.png                  \
++	stock-icons/16/gtk-zoom-100.png                 \
++	stock-icons/16/gtk-zoom-out.png                 \
++	stock-icons/24/gtk-quit.png                     \
++	stock-icons/24/gtk-info.png                     \
++	stock-icons/24/gtk-file.png                     \
++	stock-icons/24/gtk-open.png                     \
++	stock-icons/24/gtk-print-preview.png            \
++	stock-icons/24/gtk-print.png                    \
++	stock-icons/24/gtk-properties.png               \
++	stock-icons/24/gtk-revert-to-saved-ltr.png      \
++	stock-icons/24/gtk-revert-to-saved-rtl.png      \
++	stock-icons/24/gtk-save-as.png                  \
++	stock-icons/24/gtk-new.png                      \
++	stock-icons/24/gtk-harddisk.png                 \
++	stock-icons/24/gtk-clear.png                    \
++	stock-icons/24/gtk-copy.png                     \
++	stock-icons/24/gtk-cut.png                      \
++	stock-icons/24/gtk-delete.png                   \
++	stock-icons/24/gtk-find-and-replace.png         \
++	stock-icons/24/gtk-find.png                     \
++	stock-icons/24/gtk-paste.png                    \
++	stock-icons/24/gtk-redo-ltr.png                 \
++	stock-icons/24/gtk-redo-rtl.png                 \
++	stock-icons/24/gtk-select-all.png               \
++	stock-icons/24/gtk-undo-ltr.png                 \
++	stock-icons/24/gtk-undo-rtl.png                 \
++	stock-icons/24/gtk-directory.png                \
++	stock-icons/24/gtk-unindent-ltr.png             \
++	stock-icons/24/gtk-unindent-rtl.png             \
++	stock-icons/24/gtk-indent-ltr.png               \
++	stock-icons/24/gtk-indent-rtl.png               \
++	stock-icons/24/gtk-justify-center.png           \
++	stock-icons/24/gtk-justify-fill.png             \
++	stock-icons/24/gtk-justify-left.png             \
++	stock-icons/24/gtk-justify-right.png            \
++	stock-icons/24/gtk-bold.png                     \
++	stock-icons/24/gtk-italic.png                   \
++	stock-icons/24/gtk-strikethrough.png            \
++	stock-icons/24/gtk-underline.png                \
++	stock-icons/24/gtk-goto-bottom.png              \
++	stock-icons/24/gtk-go-down.png                  \
++	stock-icons/24/gtk-goto-first-ltr.png           \
++	stock-icons/24/gtk-home.png                     \
++	stock-icons/24/gtk-jump-to-ltr.png              \
++	stock-icons/24/gtk-jump-to-rtl.png              \
++	stock-icons/24/gtk-goto-last-ltr.png            \
++	stock-icons/24/gtk-go-forward-ltr.png           \
++	stock-icons/24/gtk-go-back-ltr.png              \
++	stock-icons/24/gtk-goto-top.png                 \
++	stock-icons/24/gtk-go-up.png                    \
++	stock-icons/24/gtk-about.png                    \
++	stock-icons/24/gtk-help.png                     \
++	stock-icons/24/gtk-missing-image.png            \
++	stock-icons/24/gtk-add.png                      \
++	stock-icons/24/gtk-remove.png                   \
++	stock-icons/24/gtk-floppy.png                   \
++	stock-icons/24/gtk-cdrom.png                    \
++	stock-icons/24/gtk-media-pause.png              \
++	stock-icons/24/gtk-media-play-ltr.png           \
++	stock-icons/24/gtk-media-play-rtl.png           \
++	stock-icons/24/gtk-media-stop.png               \
++	stock-icons/24/gtk-media-record.png             \
++	stock-icons/24/gtk-media-rewind-ltr.png         \
++	stock-icons/24/gtk-media-forward-ltr.png        \
++	stock-icons/24/gtk-media-previous-ltr.png       \
++	stock-icons/24/gtk-media-next-ltr.png           \
++	stock-icons/24/gtk-network.png                  \
++	stock-icons/24/gtk-print-error.png              \
++	stock-icons/24/gtk-print-report.png             \
++	stock-icons/24/gtk-print-paused.png             \
++	stock-icons/24/gtk-print-warning.png            \
++	stock-icons/24/gtk-stop.png                     \
++	stock-icons/24/gtk-execute.png                  \
++	stock-icons/24/gtk-spell-check.png              \
++	stock-icons/24/gtk-fullscreen.png               \
++	stock-icons/24/gtk-refresh.png                  \
++	stock-icons/24/gtk-leave-fullscreen.png         \
++	stock-icons/24/gtk-sort-ascending.png           \
++	stock-icons/24/gtk-sort-descending.png          \
++	stock-icons/24/gtk-close.png                    \
++	stock-icons/24/gtk-zoom-fit.png                 \
++	stock-icons/24/gtk-zoom-in.png                  \
++	stock-icons/24/gtk-zoom-100.png                 \
++	stock-icons/24/gtk-zoom-out.png
+ 
+ @USE_EXTERNAL_ICON_CACHE_FALSE at gtk_update_icon_cache_program = ./gtk-update-icon-cache
+ @USE_EXTERNAL_ICON_CACHE_TRUE at gtk_update_icon_cache_program = $(GTK_UPDATE_ICON_CACHE)
+@@ -2900,6 +3064,88 @@
+ 	   && $(LN_S) folder.png user-desktop.png 			\
+ 	   && $(RM) text-x-generic.png 					\
+ 	   && $(LN_S) document-x-generic.png text-x-generic.png 	\
++	   && $(LN_S) application-exit.png gtk-quit.png                 \
++	   && $(LN_S) dialog-info.png gtk-info.png                      \
++	   && $(LN_S) document-new.png gtk-file.png                     \
++	   && $(LN_S) document-open.png gtk-open.png                    \
++	   && $(LN_S) document-print-preview.png gtk-print-preview.png                  \
++	   && $(LN_S) document-print.png gtk-print.png                  \
++	   && $(LN_S) document-properties.png gtk-properties.png                        \
++	   && $(LN_S) document-revert-ltr.png gtk-revert-to-saved-ltr.png                       \
++	   && $(LN_S) document-revert-rtl.png gtk-revert-to-saved-rtl.png                       \
++	   && $(LN_S) document-save-as.png gtk-save-as.png                      \
++	   && $(LN_S) document-x-generic.png gtk-new.png                        \
++	   && $(LN_S) drive-harddisk.png gtk-harddisk.png                       \
++	   && $(LN_S) edit-clear.png gtk-clear.png                      \
++	   && $(LN_S) edit-copy.png gtk-copy.png                        \
++	   && $(LN_S) edit-cut.png gtk-cut.png                  \
++	   && $(LN_S) edit-delete.png gtk-delete.png                    \
++	   && $(LN_S) edit-find-replace.png gtk-find-and-replace.png                    \
++	   && $(LN_S) edit-find.png gtk-find.png                        \
++	   && $(LN_S) edit-paste.png gtk-paste.png                      \
++	   && $(LN_S) edit-redo-ltr.png gtk-redo-ltr.png                        \
++	   && $(LN_S) edit-redo-rtl.png gtk-redo-rtl.png                        \
++	   && $(LN_S) edit-select-all.png gtk-select-all.png                    \
++	   && $(LN_S) edit-undo-ltr.png gtk-undo-ltr.png                        \
++	   && $(LN_S) edit-undo-rtl.png gtk-undo-rtl.png                        \
++	   && $(LN_S) folder.png gtk-directory.png                      \
++	   && $(LN_S) format-indent-less-ltr.png gtk-unindent-ltr.png                   \
++	   && $(LN_S) format-indent-less-rtl.png gtk-unindent-rtl.png                   \
++	   && $(LN_S) format-indent-more-ltr.png gtk-indent-ltr.png                     \
++	   && $(LN_S) format-indent-more-rtl.png gtk-indent-rtl.png                     \
++	   && $(LN_S) format-justify-center.png gtk-justify-center.png                  \
++	   && $(LN_S) format-justify-fill.png gtk-justify-fill.png                      \
++	   && $(LN_S) format-justify-left.png gtk-justify-left.png                      \
++	   && $(LN_S) format-justify-right.png gtk-justify-right.png                    \
++	   && $(LN_S) format-text-bold.png gtk-bold.png                 \
++	   && $(LN_S) format-text-italic.png gtk-italic.png                     \
++	   && $(LN_S) format-text-strikethrough.png gtk-strikethrough.png                       \
++	   && $(LN_S) format-text-underline.png gtk-underline.png                       \
++	   && $(LN_S) go-bottom.png gtk-goto-bottom.png                 \
++	   && $(LN_S) go-down.png gtk-go-down.png                       \
++	   && $(LN_S) go-first-ltr.png gtk-goto-first-ltr.png                   \
++	   && $(LN_S) go-home.png gtk-home.png                  \
++	   && $(LN_S) go-jump-ltr.png gtk-jump-to-ltr.png                       \
++	   && $(LN_S) go-jump-rtl.png gtk-jump-to-rtl.png                       \
++	   && $(LN_S) go-last-ltr.png gtk-goto-last-ltr.png                     \
++	   && $(LN_S) go-next-ltr.png gtk-go-forward-ltr.png                    \
++	   && $(LN_S) go-previous-ltr.png gtk-go-back-ltr.png                   \
++	   && $(LN_S) go-top.png gtk-goto-top.png                       \
++	   && $(LN_S) go-up.png gtk-go-up.png                   \
++	   && $(LN_S) help-about.png gtk-about.png                      \
++	   && $(LN_S) help-contents.png gtk-help.png                    \
++	   && $(LN_S) image-missing.png gtk-missing-image.png                   \
++	   && $(LN_S) list-add.png gtk-add.png                  \
++	   && $(LN_S) list-remove.png gtk-remove.png                    \
++	   && $(LN_S) media-floppy.png gtk-floppy.png                   \
++	   && $(LN_S) media-optical.png gtk-cdrom.png                   \
++	   && $(LN_S) media-playback-pause.png gtk-media-pause.png                      \
++	   && $(LN_S) media-playback-start-ltr.png gtk-media-play-ltr.png                       \
++	   && $(LN_S) media-playback-start-rtl.png gtk-media-play-rtl.png                       \
++	   && $(LN_S) media-playback-stop.png gtk-media-stop.png                        \
++	   && $(LN_S) media-record.png gtk-media-record.png                     \
++	   && $(LN_S) media-seek-backward-ltr.png gtk-media-rewind-ltr.png                      \
++	   && $(LN_S) media-seek-forward-ltr.png gtk-media-forward-ltr.png                      \
++	   && $(LN_S) media-skip-backward-ltr.png gtk-media-previous-ltr.png                    \
++	   && $(LN_S) media-skip-forward-ltr.png gtk-media-next-ltr.png                 \
++	   && $(LN_S) network-idle.png gtk-network.png                  \
++	   && $(LN_S) printer-error.png gtk-print-error.png                     \
++	   && $(LN_S) printer-info.png gtk-print-report.png                     \
++	   && $(LN_S) printer-paused.png gtk-print-paused.png                   \
++	   && $(LN_S) printer-warning.png gtk-print-warning.png                 \
++	   && $(LN_S) process-stop.png gtk-stop.png                     \
++	   && $(LN_S) system-run.png gtk-execute.png                    \
++	   && $(LN_S) tools-check-spelling.png gtk-spell-check.png                      \
++	   && $(LN_S) view-fullscreen.png gtk-fullscreen.png                    \
++	   && $(LN_S) view-refresh.png gtk-refresh.png                  \
++	   && $(LN_S) view-restore.png gtk-leave-fullscreen.png                 \
++	   && $(LN_S) view-sort-ascending.png gtk-sort-ascending.png                    \
++	   && $(LN_S) view-sort-descending.png gtk-sort-descending.png                  \
++	   && $(LN_S) window-close.png gtk-close.png                    \
++	   && $(LN_S) zoom-fit-best.png gtk-zoom-fit.png                        \
++	   && $(LN_S) zoom-in.png gtk-zoom-in.png                       \
++	   && $(LN_S) zoom-original.png gtk-zoom-100.png                        \
++	   && $(LN_S) zoom-out.png gtk-zoom-out.png                     \
+ 	) done 								\
+ 	&& touch stamp-icons
+ 
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtk30/files/patch-gtk_gtkbuilderparser.c ./x11-toolkits/gtk30/files/patch-gtk_gtkbuilderparser.c
--- ../stock/ports/x11-toolkits/gtk30/files/patch-gtk_gtkbuilderparser.c	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtk30/files/patch-gtk_gtkbuilderparser.c	2010-12-01 01:29:38.000000000 +0100
@@ -0,0 +1,20 @@
+--- gtk/gtkbuilderparser.c.dist	2010-06-08 14:11:06.000000000 -0500
++++ gtk/gtkbuilderparser.c	2010-06-08 14:11:33.000000000 -0500
+@@ -1051,7 +1051,7 @@
+ /* Called for character data */
+ /* text is not nul-terminated */
+ static void
+-text (GMarkupParseContext *context,
++XXXtext (GMarkupParseContext *context,
+       const gchar         *text,
+       gsize                text_len,
+       gpointer             user_data,
+@@ -1106,7 +1106,7 @@
+ static const GMarkupParser parser = {
+   start_element,
+   end_element,
+-  text,
++  XXXtext,
+   NULL,
+   NULL
+ };
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtk30/files/patch-gtk_updateiconcache.c ./x11-toolkits/gtk30/files/patch-gtk_updateiconcache.c
--- ../stock/ports/x11-toolkits/gtk30/files/patch-gtk_updateiconcache.c	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtk30/files/patch-gtk_updateiconcache.c	2010-12-01 01:29:38.000000000 +0100
@@ -0,0 +1,11 @@
+--- gtk/updateiconcache.c.orig	2009-05-11 18:05:35.000000000 +0200
++++ gtk/updateiconcache.c	2009-05-30 12:03:39.000000000 +0200
+@@ -1505,7 +1505,7 @@ opentmp:
+   if (!validate_file (tmp_cache_path))
+     {
+       g_printerr (_("The generated cache was invalid.\n"));
+-      /*g_unlink (tmp_cache_path);*/
++      g_unlink (tmp_cache_path);
+       exit (1);
+     }
+ 
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtk30/pkg-descr ./x11-toolkits/gtk30/pkg-descr
--- ../stock/ports/x11-toolkits/gtk30/pkg-descr	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtk30/pkg-descr	2011-02-14 18:10:08.000000000 +0100
@@ -0,0 +1,10 @@
+The GIMP ToolKit (GTK+) is a collection of GUI widgets.  GTK+
+essentially provides the building blocks from which GUIs can be
+built.  It is highly themable, and its functionality is highly
+extensible.
+
+GTK+-3 is a very stable release, similar only in design to GTK+-2.
+GTK+-3 can coexist happily alongside GTK+-2, but applications are
+written for one version or the other.
+
+WWW: http://www.gtk.org/
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtk30/pkg-plist ./x11-toolkits/gtk30/pkg-plist
--- ../stock/ports/x11-toolkits/gtk30/pkg-plist	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtk30/pkg-plist	2011-02-11 22:59:07.000000000 +0100
@@ -0,0 +1,723 @@
+bin/gtk-query-immodules-3.0
+bin/gtk3-demo
+etc/gtk-3.0/im-multipress.conf
+include/gail-3.0/gail/gailwidget.h
+include/gail-3.0/libgail-util/gail-util.h
+include/gail-3.0/libgail-util/gailmisc.h
+include/gail-3.0/libgail-util/gailtextutil.h
+include/gtk-3.0/gdk/gdk.h
+include/gtk-3.0/gdk/gdkapplaunchcontext.h
+include/gtk-3.0/gdk/gdkcairo.h
+include/gtk-3.0/gdk/gdkcolor.h
+include/gtk-3.0/gdk/gdkconfig.h
+include/gtk-3.0/gdk/gdkcursor.h
+include/gtk-3.0/gdk/gdkdevice.h
+include/gtk-3.0/gdk/gdkdevicemanager.h
+include/gtk-3.0/gdk/gdkdisplay.h
+include/gtk-3.0/gdk/gdkdisplaymanager.h
+include/gtk-3.0/gdk/gdkdnd.h
+include/gtk-3.0/gdk/gdkenumtypes.h
+include/gtk-3.0/gdk/gdkevents.h
+include/gtk-3.0/gdk/gdkkeys.h
+include/gtk-3.0/gdk/gdkkeysyms-compat.h
+include/gtk-3.0/gdk/gdkkeysyms.h
+include/gtk-3.0/gdk/gdkmain.h
+include/gtk-3.0/gdk/gdkpango.h
+include/gtk-3.0/gdk/gdkpixbuf.h
+include/gtk-3.0/gdk/gdkprivate.h
+include/gtk-3.0/gdk/gdkproperty.h
+include/gtk-3.0/gdk/gdkrectangle.h
+include/gtk-3.0/gdk/gdkrgba.h
+include/gtk-3.0/gdk/gdkscreen.h
+include/gtk-3.0/gdk/gdkselection.h
+include/gtk-3.0/gdk/gdktestutils.h
+include/gtk-3.0/gdk/gdkthreads.h
+include/gtk-3.0/gdk/gdktypes.h
+include/gtk-3.0/gdk/gdkvisual.h
+include/gtk-3.0/gdk/gdkwindow.h
+include/gtk-3.0/gdk/gdkx.h
+include/gtk-3.0/gdk/x11/gdkx11applaunchcontext.h
+include/gtk-3.0/gdk/x11/gdkx11cursor.h
+include/gtk-3.0/gdk/x11/gdkx11device-core.h
+include/gtk-3.0/gdk/x11/gdkx11device-xi.h
+include/gtk-3.0/gdk/x11/gdkx11device-xi2.h
+include/gtk-3.0/gdk/x11/gdkx11devicemanager-core.h
+include/gtk-3.0/gdk/x11/gdkx11devicemanager-xi.h
+include/gtk-3.0/gdk/x11/gdkx11devicemanager-xi2.h
+include/gtk-3.0/gdk/x11/gdkx11display.h
+include/gtk-3.0/gdk/x11/gdkx11displaymanager.h
+include/gtk-3.0/gdk/x11/gdkx11dnd.h
+include/gtk-3.0/gdk/x11/gdkx11keys.h
+include/gtk-3.0/gdk/x11/gdkx11property.h
+include/gtk-3.0/gdk/x11/gdkx11screen.h
+include/gtk-3.0/gdk/x11/gdkx11selection.h
+include/gtk-3.0/gdk/x11/gdkx11utils.h
+include/gtk-3.0/gdk/x11/gdkx11visual.h
+include/gtk-3.0/gdk/x11/gdkx11window.h
+include/gtk-3.0/gtk/gtkcellarea.h
+include/gtk-3.0/gtk/gtkcellareabox.h
+include/gtk-3.0/gtk/gtkcellareacontext.h
+include/gtk-3.0/gtk/gtk.h
+include/gtk-3.0/gtk/gtkaboutdialog.h
+include/gtk-3.0/gtk/gtkaccelgroup.h
+include/gtk-3.0/gtk/gtkaccellabel.h
+include/gtk-3.0/gtk/gtkaccelmap.h
+include/gtk-3.0/gtk/gtkaccessible.h
+include/gtk-3.0/gtk/gtkaction.h
+include/gtk-3.0/gtk/gtkactiongroup.h
+include/gtk-3.0/gtk/gtkactivatable.h
+include/gtk-3.0/gtk/gtkadjustment.h
+include/gtk-3.0/gtk/gtkalignment.h
+include/gtk-3.0/gtk/gtkappchooser.h
+include/gtk-3.0/gtk/gtkappchooserbutton.h
+include/gtk-3.0/gtk/gtkappchooserdialog.h
+include/gtk-3.0/gtk/gtkappchooserwidget.h
+include/gtk-3.0/gtk/gtkapplication.h
+include/gtk-3.0/gtk/gtkarrow.h
+include/gtk-3.0/gtk/gtkaspectframe.h
+include/gtk-3.0/gtk/gtkassistant.h
+include/gtk-3.0/gtk/gtkbbox.h
+include/gtk-3.0/gtk/gtkbin.h
+include/gtk-3.0/gtk/gtkbindings.h
+include/gtk-3.0/gtk/gtkborder.h
+include/gtk-3.0/gtk/gtkbox.h
+include/gtk-3.0/gtk/gtkbuildable.h
+include/gtk-3.0/gtk/gtkbuilder.h
+include/gtk-3.0/gtk/gtkbutton.h
+include/gtk-3.0/gtk/gtkcalendar.h
+include/gtk-3.0/gtk/gtkcelleditable.h
+include/gtk-3.0/gtk/gtkcelllayout.h
+include/gtk-3.0/gtk/gtkcellrenderer.h
+include/gtk-3.0/gtk/gtkcellrendereraccel.h
+include/gtk-3.0/gtk/gtkcellrenderercombo.h
+include/gtk-3.0/gtk/gtkcellrendererpixbuf.h
+include/gtk-3.0/gtk/gtkcellrendererprogress.h
+include/gtk-3.0/gtk/gtkcellrendererspin.h
+include/gtk-3.0/gtk/gtkcellrendererspinner.h
+include/gtk-3.0/gtk/gtkcellrenderertext.h
+include/gtk-3.0/gtk/gtkcellrenderertoggle.h
+include/gtk-3.0/gtk/gtkcellview.h
+include/gtk-3.0/gtk/gtkcheckbutton.h
+include/gtk-3.0/gtk/gtkcheckmenuitem.h
+include/gtk-3.0/gtk/gtkclipboard.h
+include/gtk-3.0/gtk/gtkcolorbutton.h
+include/gtk-3.0/gtk/gtkcolorsel.h
+include/gtk-3.0/gtk/gtkcolorseldialog.h
+include/gtk-3.0/gtk/gtkcombobox.h
+include/gtk-3.0/gtk/gtkcomboboxtext.h
+include/gtk-3.0/gtk/gtkcontainer.h
+include/gtk-3.0/gtk/gtkcssprovider.h
+include/gtk-3.0/gtk/gtkdebug.h
+include/gtk-3.0/gtk/gtkdialog.h
+include/gtk-3.0/gtk/gtkdnd.h
+include/gtk-3.0/gtk/gtkdrawingarea.h
+include/gtk-3.0/gtk/gtkeditable.h
+include/gtk-3.0/gtk/gtkentry.h
+include/gtk-3.0/gtk/gtkentrybuffer.h
+include/gtk-3.0/gtk/gtkentrycompletion.h
+include/gtk-3.0/gtk/gtkenums.h
+include/gtk-3.0/gtk/gtkeventbox.h
+include/gtk-3.0/gtk/gtkexpander.h
+include/gtk-3.0/gtk/gtkfilechooser.h
+include/gtk-3.0/gtk/gtkfilechooserbutton.h
+include/gtk-3.0/gtk/gtkfilechooserdialog.h
+include/gtk-3.0/gtk/gtkfilechooserwidget.h
+include/gtk-3.0/gtk/gtkfilefilter.h
+include/gtk-3.0/gtk/gtkfixed.h
+include/gtk-3.0/gtk/gtkfontbutton.h
+include/gtk-3.0/gtk/gtkfontsel.h
+include/gtk-3.0/gtk/gtkframe.h
+include/gtk-3.0/gtk/gtkgradient.h
+include/gtk-3.0/gtk/gtkgrid.h
+include/gtk-3.0/gtk/gtkhandlebox.h
+include/gtk-3.0/gtk/gtkhbbox.h
+include/gtk-3.0/gtk/gtkhbox.h
+include/gtk-3.0/gtk/gtkhpaned.h
+include/gtk-3.0/gtk/gtkhscale.h
+include/gtk-3.0/gtk/gtkhscrollbar.h
+include/gtk-3.0/gtk/gtkhseparator.h
+include/gtk-3.0/gtk/gtkhsv.h
+include/gtk-3.0/gtk/gtkiconfactory.h
+include/gtk-3.0/gtk/gtkicontheme.h
+include/gtk-3.0/gtk/gtkiconview.h
+include/gtk-3.0/gtk/gtkinfobar.h
+include/gtk-3.0/gtk/gtkimage.h
+include/gtk-3.0/gtk/gtkimagemenuitem.h
+include/gtk-3.0/gtk/gtkimcontext.h
+include/gtk-3.0/gtk/gtkimcontextsimple.h
+include/gtk-3.0/gtk/gtkimmodule.h
+include/gtk-3.0/gtk/gtkimmulticontext.h
+include/gtk-3.0/gtk/gtkinvisible.h
+include/gtk-3.0/gtk/gtklabel.h
+include/gtk-3.0/gtk/gtklayout.h
+include/gtk-3.0/gtk/gtklinkbutton.h
+include/gtk-3.0/gtk/gtkliststore.h
+include/gtk-3.0/gtk/gtkmain.h
+include/gtk-3.0/gtk/gtkmenu.h
+include/gtk-3.0/gtk/gtkmenubar.h
+include/gtk-3.0/gtk/gtkmenuitem.h
+include/gtk-3.0/gtk/gtkmenushell.h
+include/gtk-3.0/gtk/gtkmenutoolbutton.h
+include/gtk-3.0/gtk/gtkmessagedialog.h
+include/gtk-3.0/gtk/gtkmisc.h
+include/gtk-3.0/gtk/gtkmodules.h
+include/gtk-3.0/gtk/gtkmountoperation.h
+include/gtk-3.0/gtk/gtknotebook.h
+include/gtk-3.0/gtk/gtknumerableicon.h
+include/gtk-3.0/gtk/gtkoffscreenwindow.h
+include/gtk-3.0/gtk/gtkorientable.h
+include/gtk-3.0/gtk/gtkpagesetup.h
+include/gtk-3.0/gtk/gtkpaned.h
+include/gtk-3.0/gtk/gtkpapersize.h
+include/gtk-3.0/gtk/gtkplug.h
+include/gtk-3.0/gtk/gtkprintcontext.h
+include/gtk-3.0/gtk/gtkprintoperation.h
+include/gtk-3.0/gtk/gtkprintoperationpreview.h
+include/gtk-3.0/gtk/gtkprintsettings.h
+include/gtk-3.0/gtk/gtkprogressbar.h
+include/gtk-3.0/gtk/gtkradioaction.h
+include/gtk-3.0/gtk/gtkradiobutton.h
+include/gtk-3.0/gtk/gtkradiomenuitem.h
+include/gtk-3.0/gtk/gtkradiotoolbutton.h
+include/gtk-3.0/gtk/gtkrange.h
+include/gtk-3.0/gtk/gtkrc.h
+include/gtk-3.0/gtk/gtkrecentaction.h
+include/gtk-3.0/gtk/gtkrecentchooser.h
+include/gtk-3.0/gtk/gtkrecentchooserdialog.h
+include/gtk-3.0/gtk/gtkrecentchoosermenu.h
+include/gtk-3.0/gtk/gtkrecentchooserwidget.h
+include/gtk-3.0/gtk/gtkrecentfilter.h
+include/gtk-3.0/gtk/gtkrecentmanager.h
+include/gtk-3.0/gtk/gtkscale.h
+include/gtk-3.0/gtk/gtkscalebutton.h
+include/gtk-3.0/gtk/gtkscrollable.h
+include/gtk-3.0/gtk/gtkscrollbar.h
+include/gtk-3.0/gtk/gtkscrolledwindow.h
+include/gtk-3.0/gtk/gtkselection.h
+include/gtk-3.0/gtk/gtkseparator.h
+include/gtk-3.0/gtk/gtkseparatormenuitem.h
+include/gtk-3.0/gtk/gtkseparatortoolitem.h
+include/gtk-3.0/gtk/gtksettings.h
+include/gtk-3.0/gtk/gtkshow.h
+include/gtk-3.0/gtk/gtksizegroup.h
+include/gtk-3.0/gtk/gtksizerequest.h
+include/gtk-3.0/gtk/gtksocket.h
+include/gtk-3.0/gtk/gtkspinbutton.h
+include/gtk-3.0/gtk/gtkspinner.h
+include/gtk-3.0/gtk/gtkstatusbar.h
+include/gtk-3.0/gtk/gtkstatusicon.h
+include/gtk-3.0/gtk/gtkstock.h
+include/gtk-3.0/gtk/gtkstyle.h
+include/gtk-3.0/gtk/gtkstylecontext.h
+include/gtk-3.0/gtk/gtkstyleproperties.h
+include/gtk-3.0/gtk/gtkstyleprovider.h
+include/gtk-3.0/gtk/gtkswitch.h
+include/gtk-3.0/gtk/gtksymboliccolor.h
+include/gtk-3.0/gtk/gtktable.h
+include/gtk-3.0/gtk/gtktearoffmenuitem.h
+include/gtk-3.0/gtk/gtktestutils.h
+include/gtk-3.0/gtk/gtktextattributes.h
+include/gtk-3.0/gtk/gtktextbuffer.h
+include/gtk-3.0/gtk/gtktextbufferrichtext.h
+include/gtk-3.0/gtk/gtktextchild.h
+include/gtk-3.0/gtk/gtktextdisplay.h
+include/gtk-3.0/gtk/gtktextiter.h
+include/gtk-3.0/gtk/gtktextlayout.h
+include/gtk-3.0/gtk/gtktextmark.h
+include/gtk-3.0/gtk/gtktexttag.h
+include/gtk-3.0/gtk/gtktexttagtable.h
+include/gtk-3.0/gtk/gtktextview.h
+include/gtk-3.0/gtk/gtkthemingengine.h
+include/gtk-3.0/gtk/gtktoggleaction.h
+include/gtk-3.0/gtk/gtktogglebutton.h
+include/gtk-3.0/gtk/gtktoggletoolbutton.h
+include/gtk-3.0/gtk/gtktoolbar.h
+include/gtk-3.0/gtk/gtktoolbutton.h
+include/gtk-3.0/gtk/gtktoolitem.h
+include/gtk-3.0/gtk/gtktoolitemgroup.h
+include/gtk-3.0/gtk/gtktoolpalette.h
+include/gtk-3.0/gtk/gtktoolshell.h
+include/gtk-3.0/gtk/gtktooltip.h
+include/gtk-3.0/gtk/gtktreednd.h
+include/gtk-3.0/gtk/gtktreemodel.h
+include/gtk-3.0/gtk/gtktreemodelfilter.h
+include/gtk-3.0/gtk/gtktreemodelsort.h
+include/gtk-3.0/gtk/gtktreeselection.h
+include/gtk-3.0/gtk/gtktreesortable.h
+include/gtk-3.0/gtk/gtktreestore.h
+include/gtk-3.0/gtk/gtktreeview.h
+include/gtk-3.0/gtk/gtktreeviewcolumn.h
+include/gtk-3.0/gtk/gtktypebuiltins.h
+include/gtk-3.0/gtk/gtkuimanager.h
+include/gtk-3.0/gtk/gtkvbbox.h
+include/gtk-3.0/gtk/gtkvbox.h
+include/gtk-3.0/gtk/gtkversion.h
+include/gtk-3.0/gtk/gtkviewport.h
+include/gtk-3.0/gtk/gtkvolumebutton.h
+include/gtk-3.0/gtk/gtkvpaned.h
+include/gtk-3.0/gtk/gtkvscale.h
+include/gtk-3.0/gtk/gtkvscrollbar.h
+include/gtk-3.0/gtk/gtkvseparator.h
+include/gtk-3.0/gtk/gtkwidget.h
+include/gtk-3.0/gtk/gtkwidgetpath.h
+include/gtk-3.0/gtk/gtkwindow.h
+include/gtk-3.0/gtk/gtkx.h
+include/gtk-3.0/unix-print/gtk/gtkpagesetupunixdialog.h
+include/gtk-3.0/unix-print/gtk/gtkprinter.h
+include/gtk-3.0/unix-print/gtk/gtkprintjob.h
+include/gtk-3.0/unix-print/gtk/gtkprintunixdialog.h
+include/gtk-3.0/unix-print/gtk/gtkunixprint.h
+lib/girepository-1.0/Gdk-3.0.typelib
+lib/girepository-1.0/GdkX11-3.0.typelib
+lib/girepository-1.0/Gtk-3.0.typelib
+ at comment lib/gtk-3.0/%%GTK3_VERSION%%/engines/libpixmap.a
+ at comment lib/gtk-3.0/%%GTK3_VERSION%%/engines/libpixmap.la
+ at comment lib/gtk-3.0/%%GTK3_VERSION%%/engines/libpixmap.so
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-am-et.a
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-am-et.la
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-am-et.so
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-cedilla.a
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-cedilla.la
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-cedilla.so
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-cyrillic-translit.a
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-cyrillic-translit.la
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-cyrillic-translit.so
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-inuktitut.a
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-inuktitut.la
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-inuktitut.so
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-ipa.a
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-ipa.la
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-ipa.so
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-multipress.a
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-multipress.la
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-multipress.so
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-thai.a
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-thai.la
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-thai.so
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-ti-er.a
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-ti-er.la
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-ti-er.so
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-ti-et.a
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-ti-et.la
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-ti-et.so
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-viqr.a
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-viqr.la
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-viqr.so
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-xim.a
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-xim.la
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-xim.so
+lib/gtk-3.0/%%GTK3_VERSION%%/immodules.cache
+%%CUPS%%lib/gtk-3.0/%%GTK3_VERSION%%/printbackends/libprintbackend-cups.a
+%%CUPS%%lib/gtk-3.0/%%GTK3_VERSION%%/printbackends/libprintbackend-cups.la
+%%CUPS%%lib/gtk-3.0/%%GTK3_VERSION%%/printbackends/libprintbackend-cups.so
+lib/gtk-3.0/%%GTK3_VERSION%%/printbackends/libprintbackend-file.a
+lib/gtk-3.0/%%GTK3_VERSION%%/printbackends/libprintbackend-file.la
+lib/gtk-3.0/%%GTK3_VERSION%%/printbackends/libprintbackend-file.so
+lib/gtk-3.0/%%GTK3_VERSION%%/printbackends/libprintbackend-lpr.a
+lib/gtk-3.0/%%GTK3_VERSION%%/printbackends/libprintbackend-lpr.la
+lib/gtk-3.0/%%GTK3_VERSION%%/printbackends/libprintbackend-lpr.so
+lib/gtk-3.0/modules/libferret.a
+lib/gtk-3.0/modules/libferret.la
+lib/gtk-3.0/modules/libferret.so
+lib/gtk-3.0/modules/libgail.a
+lib/gtk-3.0/modules/libgail.la
+lib/gtk-3.0/modules/libgail.so
+lib/libgailutil-3.a
+lib/libgailutil-3.la
+lib/libgailutil-3.so
+lib/libgailutil-3.so.0
+lib/libgdk-3.a
+lib/libgdk-3.la
+lib/libgdk-3.so
+lib/libgdk-3.so.0
+lib/libgtk-3.a
+lib/libgtk-3.la
+lib/libgtk-3.so
+lib/libgtk-3.so.0
+libdata/pkgconfig/gail-3.0.pc
+libdata/pkgconfig/gdk-3.0.pc
+libdata/pkgconfig/gdk-x11-3.0.pc
+libdata/pkgconfig/gtk+-3.0.pc
+libdata/pkgconfig/gtk+-unix-print-3.0.pc
+libdata/pkgconfig/gtk+-x11-3.0.pc
+share/aclocal/gtk-3.0.m4
+share/gir-1.0/Gdk-3.0.gir
+share/gir-1.0/GdkX11-3.0.gir
+share/gir-1.0/Gtk-3.0.gir
+share/gtk-3.0/demo/alphatest.png
+share/gtk-3.0/demo/apple-red.png
+share/gtk-3.0/demo/appwindow.c
+share/gtk-3.0/demo/assistant.c
+share/gtk-3.0/demo/background.jpg
+share/gtk-3.0/demo/builder.c
+share/gtk-3.0/demo/button_box.c
+share/gtk-3.0/demo/changedisplay.c
+share/gtk-3.0/demo/clipboard.c
+share/gtk-3.0/demo/colorsel.c
+share/gtk-3.0/demo/combobox.c
+share/gtk-3.0/demo/demo.ui
+share/gtk-3.0/demo/dialog.c
+share/gtk-3.0/demo/drawingarea.c
+share/gtk-3.0/demo/editable_cells.c
+share/gtk-3.0/demo/entry_buffer.c
+share/gtk-3.0/demo/entry_completion.c
+share/gtk-3.0/demo/expander.c
+share/gtk-3.0/demo/floppybuddy.gif
+share/gtk-3.0/demo/gnome-applets.png
+share/gtk-3.0/demo/gnome-calendar.png
+share/gtk-3.0/demo/gnome-foot.png
+share/gtk-3.0/demo/gnome-fs-directory.png
+share/gtk-3.0/demo/gnome-fs-regular.png
+share/gtk-3.0/demo/gnome-gimp.png
+share/gtk-3.0/demo/gnome-gmush.png
+share/gtk-3.0/demo/gnome-gsame.png
+share/gtk-3.0/demo/gnu-keys.png
+share/gtk-3.0/demo/gtk-logo-rgb.gif
+share/gtk-3.0/demo/hypertext.c
+share/gtk-3.0/demo/iconview.c
+share/gtk-3.0/demo/iconview_edit.c
+share/gtk-3.0/demo/images.c
+share/gtk-3.0/demo/infobar.c
+share/gtk-3.0/demo/list_store.c
+share/gtk-3.0/demo/links.c
+share/gtk-3.0/demo/menus.c
+share/gtk-3.0/demo/offscreen_window.c
+share/gtk-3.0/demo/offscreen_window2.c
+share/gtk-3.0/demo/panes.c
+share/gtk-3.0/demo/pickers.c
+share/gtk-3.0/demo/pixbufs.c
+share/gtk-3.0/demo/printing.c
+share/gtk-3.0/demo/rotated_text.c
+share/gtk-3.0/demo/search_entry.c
+share/gtk-3.0/demo/sizegroup.c
+share/gtk-3.0/demo/spinner.c
+share/gtk-3.0/demo/stock_browser.c
+share/gtk-3.0/demo/textscroll.c
+share/gtk-3.0/demo/textview.c
+share/gtk-3.0/demo/toolpalette.c
+share/gtk-3.0/demo/tree_store.c
+share/gtk-3.0/demo/ui_manager.c
+share/locale/af/LC_MESSAGES/gtk30-properties.mo
+share/locale/af/LC_MESSAGES/gtk30.mo
+share/locale/am/LC_MESSAGES/gtk30-properties.mo
+share/locale/am/LC_MESSAGES/gtk30.mo
+share/locale/ang/LC_MESSAGES/gtk30-properties.mo
+share/locale/ang/LC_MESSAGES/gtk30.mo
+share/locale/ar/LC_MESSAGES/gtk30-properties.mo
+share/locale/ar/LC_MESSAGES/gtk30.mo
+share/locale/as/LC_MESSAGES/gtk30-properties.mo
+share/locale/as/LC_MESSAGES/gtk30.mo
+share/locale/ast/LC_MESSAGES/gtk30-properties.mo
+share/locale/ast/LC_MESSAGES/gtk30.mo
+share/locale/az/LC_MESSAGES/gtk30-properties.mo
+share/locale/az/LC_MESSAGES/gtk30.mo
+share/locale/az_IR/LC_MESSAGES/gtk30-properties.mo
+share/locale/az_IR/LC_MESSAGES/gtk30.mo
+share/locale/be/LC_MESSAGES/gtk30-properties.mo
+share/locale/be/LC_MESSAGES/gtk30.mo
+share/locale/be at latin/LC_MESSAGES/gtk30-properties.mo
+share/locale/be at latin/LC_MESSAGES/gtk30.mo
+share/locale/bg/LC_MESSAGES/gtk30-properties.mo
+share/locale/bg/LC_MESSAGES/gtk30.mo
+share/locale/bn/LC_MESSAGES/gtk30-properties.mo
+share/locale/bn/LC_MESSAGES/gtk30.mo
+share/locale/bn_IN/LC_MESSAGES/gtk30-properties.mo
+share/locale/bn_IN/LC_MESSAGES/gtk30.mo
+share/locale/br/LC_MESSAGES/gtk30-properties.mo
+share/locale/br/LC_MESSAGES/gtk30.mo
+share/locale/bs/LC_MESSAGES/gtk30-properties.mo
+share/locale/bs/LC_MESSAGES/gtk30.mo
+share/locale/ca/LC_MESSAGES/gtk30-properties.mo
+share/locale/ca/LC_MESSAGES/gtk30.mo
+share/locale/ca at valencia/LC_MESSAGES/gtk30-properties.mo
+share/locale/ca at valencia/LC_MESSAGES/gtk30.mo
+share/locale/crh/LC_MESSAGES/gtk30-properties.mo
+share/locale/crh/LC_MESSAGES/gtk30.mo
+share/locale/cs/LC_MESSAGES/gtk30-properties.mo
+share/locale/cs/LC_MESSAGES/gtk30.mo
+share/locale/cy/LC_MESSAGES/gtk30-properties.mo
+share/locale/cy/LC_MESSAGES/gtk30.mo
+share/locale/da/LC_MESSAGES/gtk30-properties.mo
+share/locale/da/LC_MESSAGES/gtk30.mo
+share/locale/de/LC_MESSAGES/gtk30-properties.mo
+share/locale/de/LC_MESSAGES/gtk30.mo
+share/locale/dz/LC_MESSAGES/gtk30-properties.mo
+share/locale/dz/LC_MESSAGES/gtk30.mo
+share/locale/el/LC_MESSAGES/gtk30-properties.mo
+share/locale/el/LC_MESSAGES/gtk30.mo
+share/locale/en/LC_MESSAGES/gtk30-properties.mo
+share/locale/en/LC_MESSAGES/gtk30.mo
+share/locale/en_CA/LC_MESSAGES/gtk30-properties.mo
+share/locale/en_CA/LC_MESSAGES/gtk30.mo
+share/locale/en_GB/LC_MESSAGES/gtk30-properties.mo
+share/locale/en_GB/LC_MESSAGES/gtk30.mo
+share/locale/eo/LC_MESSAGES/gtk30-properties.mo
+share/locale/eo/LC_MESSAGES/gtk30.mo
+share/locale/es/LC_MESSAGES/gtk30-properties.mo
+share/locale/es/LC_MESSAGES/gtk30.mo
+share/locale/et/LC_MESSAGES/gtk30-properties.mo
+share/locale/et/LC_MESSAGES/gtk30.mo
+share/locale/eu/LC_MESSAGES/gtk30-properties.mo
+share/locale/eu/LC_MESSAGES/gtk30.mo
+share/locale/fa/LC_MESSAGES/gtk30-properties.mo
+share/locale/fa/LC_MESSAGES/gtk30.mo
+share/locale/fi/LC_MESSAGES/gtk30-properties.mo
+share/locale/fi/LC_MESSAGES/gtk30.mo
+share/locale/fr/LC_MESSAGES/gtk30-properties.mo
+share/locale/fr/LC_MESSAGES/gtk30.mo
+share/locale/ga/LC_MESSAGES/gtk30-properties.mo
+share/locale/ga/LC_MESSAGES/gtk30.mo
+share/locale/gl/LC_MESSAGES/gtk30-properties.mo
+share/locale/gl/LC_MESSAGES/gtk30.mo
+share/locale/gu/LC_MESSAGES/gtk30-properties.mo
+share/locale/gu/LC_MESSAGES/gtk30.mo
+share/locale/he/LC_MESSAGES/gtk30-properties.mo
+share/locale/he/LC_MESSAGES/gtk30.mo
+share/locale/hi/LC_MESSAGES/gtk30-properties.mo
+share/locale/hi/LC_MESSAGES/gtk30.mo
+share/locale/hr/LC_MESSAGES/gtk30-properties.mo
+share/locale/hr/LC_MESSAGES/gtk30.mo
+share/locale/hu/LC_MESSAGES/gtk30-properties.mo
+share/locale/hu/LC_MESSAGES/gtk30.mo
+share/locale/hy/LC_MESSAGES/gtk30-properties.mo
+share/locale/hy/LC_MESSAGES/gtk30.mo
+share/locale/ia/LC_MESSAGES/gtk30-properties.mo
+share/locale/ia/LC_MESSAGES/gtk30.mo
+share/locale/id/LC_MESSAGES/gtk30-properties.mo
+share/locale/id/LC_MESSAGES/gtk30.mo
+share/locale/io/LC_MESSAGES/gtk30-properties.mo
+share/locale/io/LC_MESSAGES/gtk30.mo
+share/locale/is/LC_MESSAGES/gtk30-properties.mo
+share/locale/is/LC_MESSAGES/gtk30.mo
+share/locale/it/LC_MESSAGES/gtk30-properties.mo
+share/locale/it/LC_MESSAGES/gtk30.mo
+share/locale/ja/LC_MESSAGES/gtk30-properties.mo
+share/locale/ja/LC_MESSAGES/gtk30.mo
+share/locale/ka/LC_MESSAGES/gtk30-properties.mo
+share/locale/ka/LC_MESSAGES/gtk30.mo
+share/locale/kg/LC_MESSAGES/gtk30-properties.mo
+share/locale/kg/LC_MESSAGES/gtk30.mo
+share/locale/kk/LC_MESSAGES/gtk30-properties.mo
+share/locale/kk/LC_MESSAGES/gtk30.mo
+share/locale/kn/LC_MESSAGES/gtk30-properties.mo
+share/locale/kn/LC_MESSAGES/gtk30.mo
+share/locale/ko/LC_MESSAGES/gtk30-properties.mo
+share/locale/ko/LC_MESSAGES/gtk30.mo
+share/locale/ku/LC_MESSAGES/gtk30-properties.mo
+share/locale/ku/LC_MESSAGES/gtk30.mo
+share/locale/lg/LC_MESSAGES/gtk30-properties.mo
+share/locale/lg/LC_MESSAGES/gtk30.mo
+share/locale/li/LC_MESSAGES/gtk30-properties.mo
+share/locale/li/LC_MESSAGES/gtk30.mo
+share/locale/lt/LC_MESSAGES/gtk30-properties.mo
+share/locale/lt/LC_MESSAGES/gtk30.mo
+share/locale/lv/LC_MESSAGES/gtk30-properties.mo
+share/locale/lv/LC_MESSAGES/gtk30.mo
+share/locale/mai/LC_MESSAGES/gtk30-properties.mo
+share/locale/mai/LC_MESSAGES/gtk30.mo
+share/locale/mi/LC_MESSAGES/gtk30-properties.mo
+share/locale/mi/LC_MESSAGES/gtk30.mo
+share/locale/mk/LC_MESSAGES/gtk30-properties.mo
+share/locale/mk/LC_MESSAGES/gtk30.mo
+share/locale/ml/LC_MESSAGES/gtk30-properties.mo
+share/locale/ml/LC_MESSAGES/gtk30.mo
+share/locale/mn/LC_MESSAGES/gtk30-properties.mo
+share/locale/mn/LC_MESSAGES/gtk30.mo
+share/locale/mr/LC_MESSAGES/gtk30-properties.mo
+share/locale/mr/LC_MESSAGES/gtk30.mo
+share/locale/ms/LC_MESSAGES/gtk30-properties.mo
+share/locale/ms/LC_MESSAGES/gtk30.mo
+share/locale/my/LC_MESSAGES/gtk30-properties.mo
+share/locale/my/LC_MESSAGES/gtk30.mo
+share/locale/nb/LC_MESSAGES/gtk30-properties.mo
+share/locale/nb/LC_MESSAGES/gtk30.mo
+share/locale/nds/LC_MESSAGES/gtk30-properties.mo
+share/locale/nds/LC_MESSAGES/gtk30.mo
+share/locale/ne/LC_MESSAGES/gtk30-properties.mo
+share/locale/ne/LC_MESSAGES/gtk30.mo
+share/locale/nl/LC_MESSAGES/gtk30-properties.mo
+share/locale/nl/LC_MESSAGES/gtk30.mo
+share/locale/nn/LC_MESSAGES/gtk30-properties.mo
+share/locale/nn/LC_MESSAGES/gtk30.mo
+share/locale/nso/LC_MESSAGES/gtk30-properties.mo
+share/locale/nso/LC_MESSAGES/gtk30.mo
+share/locale/oc/LC_MESSAGES/gtk30-properties.mo
+share/locale/oc/LC_MESSAGES/gtk30.mo
+share/locale/or/LC_MESSAGES/gtk30-properties.mo
+share/locale/or/LC_MESSAGES/gtk30.mo
+share/locale/pa/LC_MESSAGES/gtk30-properties.mo
+share/locale/pa/LC_MESSAGES/gtk30.mo
+share/locale/pl/LC_MESSAGES/gtk30-properties.mo
+share/locale/pl/LC_MESSAGES/gtk30.mo
+share/locale/ps/LC_MESSAGES/gtk30-properties.mo
+share/locale/ps/LC_MESSAGES/gtk30.mo
+share/locale/pt/LC_MESSAGES/gtk30-properties.mo
+share/locale/pt/LC_MESSAGES/gtk30.mo
+share/locale/pt_BR/LC_MESSAGES/gtk30-properties.mo
+share/locale/pt_BR/LC_MESSAGES/gtk30.mo
+share/locale/ro/LC_MESSAGES/gtk30-properties.mo
+share/locale/ro/LC_MESSAGES/gtk30.mo
+share/locale/ru/LC_MESSAGES/gtk30-properties.mo
+share/locale/ru/LC_MESSAGES/gtk30.mo
+share/locale/rw/LC_MESSAGES/gtk30-properties.mo
+share/locale/rw/LC_MESSAGES/gtk30.mo
+share/locale/si/LC_MESSAGES/gtk30-properties.mo
+share/locale/si/LC_MESSAGES/gtk30.mo
+share/locale/sk/LC_MESSAGES/gtk30-properties.mo
+share/locale/sk/LC_MESSAGES/gtk30.mo
+share/locale/sl/LC_MESSAGES/gtk30-properties.mo
+share/locale/sl/LC_MESSAGES/gtk30.mo
+share/locale/sq/LC_MESSAGES/gtk30-properties.mo
+share/locale/sq/LC_MESSAGES/gtk30.mo
+share/locale/sr/LC_MESSAGES/gtk30-properties.mo
+share/locale/sr/LC_MESSAGES/gtk30.mo
+share/locale/sr at ije/LC_MESSAGES/gtk30-properties.mo
+share/locale/sr at ije/LC_MESSAGES/gtk30.mo
+share/locale/sr at latin/LC_MESSAGES/gtk30-properties.mo
+share/locale/sr at latin/LC_MESSAGES/gtk30.mo
+share/locale/sv/LC_MESSAGES/gtk30-properties.mo
+share/locale/sv/LC_MESSAGES/gtk30.mo
+share/locale/ta/LC_MESSAGES/gtk30-properties.mo
+share/locale/ta/LC_MESSAGES/gtk30.mo
+share/locale/te/LC_MESSAGES/gtk30-properties.mo
+share/locale/te/LC_MESSAGES/gtk30.mo
+share/locale/th/LC_MESSAGES/gtk30-properties.mo
+share/locale/th/LC_MESSAGES/gtk30.mo
+share/locale/tk/LC_MESSAGES/gtk30-properties.mo
+share/locale/tk/LC_MESSAGES/gtk30.mo
+share/locale/tr/LC_MESSAGES/gtk30-properties.mo
+share/locale/tr/LC_MESSAGES/gtk30.mo
+share/locale/tt/LC_MESSAGES/gtk30-properties.mo
+share/locale/tt/LC_MESSAGES/gtk30.mo
+share/locale/ug/LC_MESSAGES/gtk30-properties.mo
+share/locale/ug/LC_MESSAGES/gtk30.mo
+share/locale/uk/LC_MESSAGES/gtk30-properties.mo
+share/locale/uk/LC_MESSAGES/gtk30.mo
+share/locale/ur/LC_MESSAGES/gtk30-properties.mo
+share/locale/ur/LC_MESSAGES/gtk30.mo
+share/locale/uz/LC_MESSAGES/gtk30-properties.mo
+share/locale/uz/LC_MESSAGES/gtk30.mo
+share/locale/uz at cyrillic/LC_MESSAGES/gtk30-properties.mo
+share/locale/uz at cyrillic/LC_MESSAGES/gtk30.mo
+share/locale/vi/LC_MESSAGES/gtk30-properties.mo
+share/locale/vi/LC_MESSAGES/gtk30.mo
+share/locale/wa/LC_MESSAGES/gtk30-properties.mo
+share/locale/wa/LC_MESSAGES/gtk30.mo
+share/locale/xh/LC_MESSAGES/gtk30-properties.mo
+share/locale/xh/LC_MESSAGES/gtk30.mo
+share/locale/yi/LC_MESSAGES/gtk30-properties.mo
+share/locale/yi/LC_MESSAGES/gtk30.mo
+share/locale/zh_CN/LC_MESSAGES/gtk30-properties.mo
+share/locale/zh_CN/LC_MESSAGES/gtk30.mo
+share/locale/zh_HK/LC_MESSAGES/gtk30-properties.mo
+share/locale/zh_HK/LC_MESSAGES/gtk30.mo
+share/locale/zh_TW/LC_MESSAGES/gtk30-properties.mo
+share/locale/zh_TW/LC_MESSAGES/gtk30.mo
+share/themes/Default/gtk-3.0/gtk-keys.css
+share/themes/Emacs/gtk-3.0/gtk-keys.css
+share/themes/Raleigh/gtk-3.0/gtk.css
+ at exec /usr/bin/find %%LOCALBASE%%/share/icons -type d -depth 1 -exec %D/bin/gtk-update-icon-cache -q -f {} \; 2>/dev/null || /usr/bin/true
+ at unexec /usr/bin/find %%LOCALBASE%%/share/icons -type f -depth 2 -name icon-theme.cache -delete 2>/dev/null || /usr/bin/true
+ at dirrm share/themes/Raleigh/gtk-3.0
+ at dirrm share/themes/Raleigh
+ at dirrm share/themes/Emacs/gtk-3.0
+ at dirrm share/themes/Emacs
+ at dirrm share/themes/Default/gtk-3.0
+ at dirrm share/gtk-3.0/demo
+ at dirrm share/gtk-3.0
+ at dirrm include/gtk-3.0/unix-print/gtk
+ at dirrm include/gtk-3.0/unix-print
+ at dirrm include/gtk-3.0/gtk
+ at dirrm include/gtk-3.0/gdk/x11
+ at dirrm include/gtk-3.0/gdk
+ at dirrm include/gtk-3.0
+ at dirrm include/gail-3.0/libgail-util
+ at dirrm include/gail-3.0/gail
+ at dirrm include/gail-3.0
+ at dirrm etc/gtk-3.0
+ at exec /bin/mkdir -p %D/lib/gtk-3.0/modules
+ at exec /bin/mkdir -p %D/lib/gtk-3.0/%%GTK3_VERSION%%/engines
+ at exec /bin/mkdir -p %D/lib/gtk-3.0/%%GTK3_VERSION%%/loaders
+ at dirrmtry share/themes/Default
+ at dirrmtry share/themes
+ at dirrmtry lib/gtk-3.0/modules
+ at dirrmtry lib/gtk-3.0/%%GTK3_VERSION%%/printbackends
+ at dirrmtry lib/gtk-3.0/%%GTK3_VERSION%%/modules
+ at dirrmtry lib/gtk-3.0/%%GTK3_VERSION%%/loaders
+ at dirrmtry lib/gtk-3.0/%%GTK3_VERSION%%/immodules
+ at dirrmtry lib/gtk-3.0/%%GTK3_VERSION%%/engines
+ at dirrmtry lib/gtk-3.0/%%GTK3_VERSION%%
+ at dirrmtry lib/gtk-3.0
+ at exec %D/bin/gtk-query-immodules-3.0 > /dev/null 2>&1 && %D/bin/gtk-query-immodules-3.0 > %D/lib/gkt-3.0/%%GTK3_VERSION%%/immodules.cache 2>/dev/null || /usr/bin/true
+ at dirrmtry share/locale/zh_HK/LC_MESSAGES
+ at dirrmtry share/locale/zh_HK
+ at dirrmtry share/locale/yi/LC_MESSAGES
+ at dirrmtry share/locale/yi
+ at dirrmtry share/locale/xh/LC_MESSAGES
+ at dirrmtry share/locale/xh
+ at dirrmtry share/locale/uz at cyrillic/LC_MESSAGES
+ at dirrmtry share/locale/uz at cyrillic
+ at dirrmtry share/locale/ur/LC_MESSAGES
+ at dirrmtry share/locale/ur
+ at dirrmtry share/locale/ug/LC_MESSAGES
+ at dirrmtry share/locale/ug
+ at dirrmtry share/locale/tt/LC_MESSAGES
+ at dirrmtry share/locale/tt
+ at dirrmtry share/locale/te/LC_MESSAGES
+ at dirrmtry share/locale/te
+ at dirrmtry share/locale/sr at latin/LC_MESSAGES
+ at dirrmtry share/locale/sr at latin
+ at dirrmtry share/locale/sr at ije/LC_MESSAGES
+ at dirrmtry share/locale/sr at ije
+ at dirrmtry share/locale/si/LC_MESSAGES
+ at dirrmtry share/locale/si
+ at dirrmtry share/locale/rw/LC_MESSAGES
+ at dirrmtry share/locale/rw
+ at dirrmtry share/locale/ps/LC_MESSAGES
+ at dirrmtry share/locale/ps
+ at dirrmtry share/locale/oc/LC_MESSAGES
+ at dirrmtry share/locale/oc
+ at dirrmtry share/locale/nso/LC_MESSAGES
+ at dirrmtry share/locale/nso
+ at dirrmtry share/locale/nds/LC_MESSAGES
+ at dirrmtry share/locale/nds
+ at dirrmtry share/locale/my/LC_MESSAGES
+ at dirrmtry share/locale/my
+ at dirrmtry share/locale/mr/LC_MESSAGES
+ at dirrmtry share/locale/mr
+ at dirrmtry share/locale/mi/LC_MESSAGES
+ at dirrmtry share/locale/mi
+ at dirrmtry share/locale/mai/LC_MESSAGES
+ at dirrmtry share/locale/mai
+ at dirrmtry share/locale/lg/LC_MESSAGES
+ at dirrmtry share/locale/lg
+ at dirrmtry share/locale/ku/LC_MESSAGES
+ at dirrmtry share/locale/ku
+ at dirrmtry share/locale/kk/LC_MESSAGES
+ at dirrmtry share/locale/kk
+ at dirrmtry share/locale/kg/LC_MESSAGES
+ at dirrmtry share/locale/kg
+ at dirrmtry share/locale/io/LC_MESSAGES
+ at dirrmtry share/locale/io
+ at dirrmtry share/locale/ia/LC_MESSAGES
+ at dirrmtry share/locale/ia
+ at dirrmtry share/locale/hy/LC_MESSAGES
+ at dirrmtry share/locale/hy
+ at dirrmtry share/locale/dz/LC_MESSAGES
+ at dirrmtry share/locale/dz
+ at dirrmtry share/locale/crh/LC_MESSAGES
+ at dirrmtry share/locale/crh
+ at dirrmtry share/locale/ca at valencia/LC_MESSAGES
+ at dirrmtry share/locale/ca at valencia
+ at dirrmtry share/locale/bn_IN/LC_MESSAGES
+ at dirrmtry share/locale/bn_IN
+ at dirrmtry share/locale/be at latin/LC_MESSAGES
+ at dirrmtry share/locale/be at latin
+ at dirrmtry share/locale/az_IR/LC_MESSAGES
+ at dirrmtry share/locale/az_IR
+ at dirrmtry share/locale/ast/LC_MESSAGES
+ at dirrmtry share/locale/ast
+ at dirrmtry share/locale/as/LC_MESSAGES
+ at dirrmtry share/locale/as
+ at dirrmtry share/locale/ang/LC_MESSAGES
+ at dirrmtry share/locale/ang
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtk30-reference/Makefile ./x11-toolkits/gtk30-reference/Makefile
--- ../stock/ports/x11-toolkits/gtk30-reference/Makefile	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtk30-reference/Makefile	2011-02-12 10:41:21.000000000 +0100
@@ -0,0 +1,12 @@
+# New ports collection makefile for:	gtk20-reference
+# Date created:				09 May 2006
+# Whom:					Jean-Yves Lefort <jylefort at FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTREVISION=	0
+
+BOOKS=		gdk gtk
+
+.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk"
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtk30-reference/pkg-descr ./x11-toolkits/gtk30-reference/pkg-descr
--- ../stock/ports/x11-toolkits/gtk30-reference/pkg-descr	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtk30-reference/pkg-descr	2010-10-08 09:56:43.000000000 +0200
@@ -0,0 +1,3 @@
+This port contains the programming reference for x11-toolkits/gtk20.
+
+WWW: http://www.gtk.org/
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtkmm24/Makefile ./x11-toolkits/gtkmm24/Makefile
--- ../stock/ports/x11-toolkits/gtkmm24/Makefile	2010-12-04 08:34:18.000000000 +0100
+++ ./x11-toolkits/gtkmm24/Makefile	2011-02-11 23:01:54.000000000 +0100
@@ -2,12 +2,12 @@
 # Date created:        30 September 2002
 # Whom:                Martin Klaffenboeck <martin.klaffenboeck at gmx.at>
 #
-# $FreeBSD: ports/x11-toolkits/gtkmm24/Makefile,v 1.131 2010/12/04 07:34:18 ade Exp $
-#   $MCom: ports/x11-toolkits/gtkmm24/Makefile,v 1.71 2010/09/27 21:24:09 kwm Exp $
+# $FreeBSD$
+#   $MCom: ports/x11-toolkits/gtkmm24/Makefile,v 1.75 2011/02/08 10:15:47 kwm Exp $
 #
 
 PORTNAME=	gtkmm
-PORTVERSION=	2.22.0
+PORTVERSION=	2.24.0
 PORTREVISION?=	0
 CATEGORIES=	x11-toolkits
 MASTER_SITES=	GNOME
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtkmm24/distinfo ./x11-toolkits/gtkmm24/distinfo
--- ../stock/ports/x11-toolkits/gtkmm24/distinfo	2010-11-20 16:37:05.000000000 +0100
+++ ./x11-toolkits/gtkmm24/distinfo	2011-02-11 23:01:54.000000000 +0100
@@ -1,3 +1,2 @@
-MD5 (gnome2/gtkmm-2.22.0.tar.bz2) = 4356dfde44b13f7fb1bfbd97623f37dd
-SHA256 (gnome2/gtkmm-2.22.0.tar.bz2) = 8478d80d8d4793c2e1c459a71bad6a767a43eaf2664da06a9bd65a2b98bb07b1
-SIZE (gnome2/gtkmm-2.22.0.tar.bz2) = 11496369
+SHA256 (gnome2/gtkmm-2.24.0.tar.bz2) = 8cbae7254746bc7df7cce882d9b9a916c4e00dba7bdacd1c50b5d096a484cf56
+SIZE (gnome2/gtkmm-2.24.0.tar.bz2) = 15227037
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtkmm24/pkg-plist ./x11-toolkits/gtkmm24/pkg-plist
--- ../stock/ports/x11-toolkits/gtkmm24/pkg-plist	2010-11-20 16:37:05.000000000 +0100
+++ ./x11-toolkits/gtkmm24/pkg-plist	2011-02-11 23:01:54.000000000 +0100
@@ -419,12 +419,11 @@
 include/gtkmm-%%API_VERSION%%/gtkmm/wrap_init.h
 lib/gdkmm-%%API_VERSION%%/include/gdkmmconfig.h
 lib/gtkmm-%%API_VERSION%%/include/gtkmmconfig.h
+lib/gtkmm-%%API_VERSION%%/proc/m4/class_gtkobject.m4
 lib/gtkmm-%%API_VERSION%%/proc/m4/convert.m4
-lib/gtkmm-%%API_VERSION%%/proc/m4/convert_atk.m4
 lib/gtkmm-%%API_VERSION%%/proc/m4/convert_gdk.m4
 lib/gtkmm-%%API_VERSION%%/proc/m4/convert_gtk.m4
 lib/gtkmm-%%API_VERSION%%/proc/m4/convert_gtkmm.m4
-lib/gtkmm-%%API_VERSION%%/proc/m4/convert_pango.m4
 lib/libgdkmm-%%VERSION%%.a
 lib/libgdkmm-%%VERSION%%.la
 lib/libgdkmm-%%VERSION%%.so
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtkmm30/Makefile ./x11-toolkits/gtkmm30/Makefile
--- ../stock/ports/x11-toolkits/gtkmm30/Makefile	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtkmm30/Makefile	2011-02-11 22:59:07.000000000 +0100
@@ -0,0 +1,49 @@
+# New ports collection makefile for:   gtkmm2
+# Date created:        30 September 2002
+# Whom:                Martin Klaffenboeck <martin.klaffenboeck at gmx.at>
+#
+# $FreeBSD$
+#   $MCom: ports/x11-toolkits/gtkmm30/Makefile,v 1.9 2011/02/11 19:54:14 kwm Exp $
+#
+
+PORTNAME=	gtkmm
+PORTVERSION=	2.99.4
+PORTREVISION?=	0
+CATEGORIES=	x11-toolkits
+MASTER_SITES=	GNOME
+DIST_SUBDIR=	gnome3
+
+MAINTAINER=	gnome at FreeBSD.org
+COMMENT=	C++ wrapper for Gtk+, Pango
+
+USE_BZIP2=	yes
+LATEST_LINK=	gtkmm24
+
+.if !defined(REFERENCE_PORT)
+
+LIB_DEPENDS=	glibmm-2.4.1:${PORTSDIR}/devel/glibmm \
+		cairomm-1.0.1:${PORTSDIR}/graphics/cairomm \
+		atkmm-1.6.2:${PORTSDIR}/accessibility/atkmm \
+		pangomm-1.4.1:${PORTSDIR}/x11-toolkits/pangomm
+BUILD_DEPENDS=	gm4:${PORTSDIR}/devel/m4
+
+USE_GMAKE=	yes
+USE_GETTEXT=	yes
+GNU_CONFIGURE=	yes
+USE_LDCONFIG=	yes
+USE_AUTOTOOLS=	libtool
+USE_GNOME=	gnomehack gtk30 ltverhack
+CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
+		LDFLAGS="-L${LOCALBASE}/lib"
+CONFIGURE_ARGS=	--disable-documentation \
+		--enable-static=yes
+
+PLIST_SUB=	VERSION="3.0" API_VERSION="3.0"
+
+post-patch:
+	@${REINPLACE_CMD} -e '/^SUBDIRS =/s/tests//' \
+		${WRKSRC}/Makefile.in
+
+.include <bsd.port.mk>
+
+.endif
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtkmm30/distinfo ./x11-toolkits/gtkmm30/distinfo
--- ../stock/ports/x11-toolkits/gtkmm30/distinfo	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtkmm30/distinfo	2011-02-11 22:59:07.000000000 +0100
@@ -0,0 +1,2 @@
+SHA256 (gnome3/gtkmm-2.99.4.tar.bz2) = cff49f2fe0898de76943e1d42c677353f5507abdf87bb41b5c32b310db1da43e
+SIZE (gnome3/gtkmm-2.99.4.tar.bz2) = 16473735
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtkmm30/pkg-descr ./x11-toolkits/gtkmm30/pkg-descr
--- ../stock/ports/x11-toolkits/gtkmm30/pkg-descr	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtkmm30/pkg-descr	2011-01-12 20:21:52.000000000 +0100
@@ -0,0 +1,3 @@
+C++ wrapper for Gtk+, Pango and Atk.
+
+WWW: http://gtkmm.sourceforge.net/
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtkmm30/pkg-plist ./x11-toolkits/gtkmm30/pkg-plist
--- ../stock/ports/x11-toolkits/gtkmm30/pkg-plist	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtkmm30/pkg-plist	2011-02-11 22:59:07.000000000 +0100
@@ -0,0 +1,450 @@
+include/gdkmm-%%API_VERSION%%/gdkmm.h
+include/gdkmm-%%API_VERSION%%/gdkmm/color.h
+include/gdkmm-%%API_VERSION%%/gdkmm/cursor.h
+include/gdkmm-%%API_VERSION%%/gdkmm/device.h
+include/gdkmm-%%API_VERSION%%/gdkmm/devicemanager.h
+include/gdkmm-%%API_VERSION%%/gdkmm/display.h
+include/gdkmm-%%API_VERSION%%/gdkmm/displaymanager.h
+include/gdkmm-%%API_VERSION%%/gdkmm/dragcontext.h
+include/gdkmm-%%API_VERSION%%/gdkmm/event.h
+include/gdkmm-%%API_VERSION%%/gdkmm/general.h
+include/gdkmm-%%API_VERSION%%/gdkmm/pixbuf.h
+include/gdkmm-%%API_VERSION%%/gdkmm/pixbufanimation.h
+include/gdkmm-%%API_VERSION%%/gdkmm/pixbufanimationiter.h
+include/gdkmm-%%API_VERSION%%/gdkmm/pixbufformat.h
+include/gdkmm-%%API_VERSION%%/gdkmm/pixbufloader.h
+include/gdkmm-%%API_VERSION%%/gdkmm/private/color_p.h
+include/gdkmm-%%API_VERSION%%/gdkmm/private/cursor_p.h
+include/gdkmm-%%API_VERSION%%/gdkmm/private/device_p.h
+include/gdkmm-%%API_VERSION%%/gdkmm/private/devicemanager_p.h
+include/gdkmm-%%API_VERSION%%/gdkmm/private/display_p.h
+include/gdkmm-%%API_VERSION%%/gdkmm/private/displaymanager_p.h
+include/gdkmm-%%API_VERSION%%/gdkmm/private/dragcontext_p.h
+include/gdkmm-%%API_VERSION%%/gdkmm/private/event_p.h
+include/gdkmm-%%API_VERSION%%/gdkmm/private/pixbuf_p.h
+include/gdkmm-%%API_VERSION%%/gdkmm/private/pixbufanimation_p.h
+include/gdkmm-%%API_VERSION%%/gdkmm/private/pixbufanimationiter_p.h
+include/gdkmm-%%API_VERSION%%/gdkmm/private/pixbufformat_p.h
+include/gdkmm-%%API_VERSION%%/gdkmm/private/pixbufloader_p.h
+include/gdkmm-%%API_VERSION%%/gdkmm/private/rectangle_p.h
+include/gdkmm-%%API_VERSION%%/gdkmm/private/rgba_p.h
+include/gdkmm-%%API_VERSION%%/gdkmm/private/screen_p.h
+include/gdkmm-%%API_VERSION%%/gdkmm/private/timecoord_p.h
+include/gdkmm-%%API_VERSION%%/gdkmm/private/types_p.h
+include/gdkmm-%%API_VERSION%%/gdkmm/private/visual_p.h
+include/gdkmm-%%API_VERSION%%/gdkmm/private/window_p.h
+include/gdkmm-%%API_VERSION%%/gdkmm/rectangle.h
+include/gdkmm-%%API_VERSION%%/gdkmm/rgba.h
+include/gdkmm-%%API_VERSION%%/gdkmm/screen.h
+include/gdkmm-%%API_VERSION%%/gdkmm/timecoord.h
+include/gdkmm-%%API_VERSION%%/gdkmm/types.h
+include/gdkmm-%%API_VERSION%%/gdkmm/visual.h
+include/gdkmm-%%API_VERSION%%/gdkmm/window.h
+include/gdkmm-%%API_VERSION%%/gdkmm/wrap_init.h
+include/gtkmm-%%API_VERSION%%/gtkmm.h
+include/gtkmm-%%API_VERSION%%/gtkmm/aboutdialog.h
+include/gtkmm-%%API_VERSION%%/gtkmm/accelgroup.h
+include/gtkmm-%%API_VERSION%%/gtkmm/accelkey.h
+include/gtkmm-%%API_VERSION%%/gtkmm/accellabel.h
+include/gtkmm-%%API_VERSION%%/gtkmm/accelmap.h
+include/gtkmm-%%API_VERSION%%/gtkmm/action.h
+include/gtkmm-%%API_VERSION%%/gtkmm/actiongroup.h
+include/gtkmm-%%API_VERSION%%/gtkmm/activatable.h
+include/gtkmm-%%API_VERSION%%/gtkmm/adjustment.h
+include/gtkmm-%%API_VERSION%%/gtkmm/alignment.h
+include/gtkmm-%%API_VERSION%%/gtkmm/appchooser.h
+include/gtkmm-%%API_VERSION%%/gtkmm/appchooserbutton.h
+include/gtkmm-%%API_VERSION%%/gtkmm/appchooserdialog.h
+include/gtkmm-%%API_VERSION%%/gtkmm/appchooserwidget.h
+include/gtkmm-%%API_VERSION%%/gtkmm/application.h
+include/gtkmm-%%API_VERSION%%/gtkmm/arrow.h
+include/gtkmm-%%API_VERSION%%/gtkmm/aspectframe.h
+include/gtkmm-%%API_VERSION%%/gtkmm/assistant.h
+include/gtkmm-%%API_VERSION%%/gtkmm/base.h
+include/gtkmm-%%API_VERSION%%/gtkmm/bin.h
+include/gtkmm-%%API_VERSION%%/gtkmm/border.h
+include/gtkmm-%%API_VERSION%%/gtkmm/box.h
+include/gtkmm-%%API_VERSION%%/gtkmm/buildable.h
+include/gtkmm-%%API_VERSION%%/gtkmm/builder.h
+include/gtkmm-%%API_VERSION%%/gtkmm/button.h
+include/gtkmm-%%API_VERSION%%/gtkmm/buttonbox.h
+include/gtkmm-%%API_VERSION%%/gtkmm/calendar.h
+include/gtkmm-%%API_VERSION%%/gtkmm/cellarea.h
+include/gtkmm-%%API_VERSION%%/gtkmm/cellareabox.h
+include/gtkmm-%%API_VERSION%%/gtkmm/cellareacontext.h
+include/gtkmm-%%API_VERSION%%/gtkmm/celleditable.h
+include/gtkmm-%%API_VERSION%%/gtkmm/celllayout.h
+include/gtkmm-%%API_VERSION%%/gtkmm/cellrenderer.h
+include/gtkmm-%%API_VERSION%%/gtkmm/cellrenderer_generation.h
+include/gtkmm-%%API_VERSION%%/gtkmm/cellrendereraccel.h
+include/gtkmm-%%API_VERSION%%/gtkmm/cellrenderercombo.h
+include/gtkmm-%%API_VERSION%%/gtkmm/cellrendererpixbuf.h
+include/gtkmm-%%API_VERSION%%/gtkmm/cellrendererprogress.h
+include/gtkmm-%%API_VERSION%%/gtkmm/cellrendererspin.h
+include/gtkmm-%%API_VERSION%%/gtkmm/cellrendererspinner.h
+include/gtkmm-%%API_VERSION%%/gtkmm/cellrenderertext.h
+include/gtkmm-%%API_VERSION%%/gtkmm/cellrenderertoggle.h
+include/gtkmm-%%API_VERSION%%/gtkmm/cellview.h
+include/gtkmm-%%API_VERSION%%/gtkmm/checkbutton.h
+include/gtkmm-%%API_VERSION%%/gtkmm/checkmenuitem.h
+include/gtkmm-%%API_VERSION%%/gtkmm/clipboard.h
+include/gtkmm-%%API_VERSION%%/gtkmm/colorbutton.h
+include/gtkmm-%%API_VERSION%%/gtkmm/colorselection.h
+include/gtkmm-%%API_VERSION%%/gtkmm/combobox.h
+include/gtkmm-%%API_VERSION%%/gtkmm/comboboxtext.h
+include/gtkmm-%%API_VERSION%%/gtkmm/container.h
+include/gtkmm-%%API_VERSION%%/gtkmm/cssprovider.h
+include/gtkmm-%%API_VERSION%%/gtkmm/dialog.h
+include/gtkmm-%%API_VERSION%%/gtkmm/drawingarea.h
+include/gtkmm-%%API_VERSION%%/gtkmm/editable.h
+include/gtkmm-%%API_VERSION%%/gtkmm/entry.h
+include/gtkmm-%%API_VERSION%%/gtkmm/entrybuffer.h
+include/gtkmm-%%API_VERSION%%/gtkmm/entrycompletion.h
+include/gtkmm-%%API_VERSION%%/gtkmm/enums.h
+include/gtkmm-%%API_VERSION%%/gtkmm/eventbox.h
+include/gtkmm-%%API_VERSION%%/gtkmm/expander.h
+include/gtkmm-%%API_VERSION%%/gtkmm/filechooser.h
+include/gtkmm-%%API_VERSION%%/gtkmm/filechooserbutton.h
+include/gtkmm-%%API_VERSION%%/gtkmm/filechooserdialog.h
+include/gtkmm-%%API_VERSION%%/gtkmm/filechooserwidget.h
+include/gtkmm-%%API_VERSION%%/gtkmm/filefilter.h
+include/gtkmm-%%API_VERSION%%/gtkmm/fixed.h
+include/gtkmm-%%API_VERSION%%/gtkmm/fontbutton.h
+include/gtkmm-%%API_VERSION%%/gtkmm/fontselection.h
+include/gtkmm-%%API_VERSION%%/gtkmm/frame.h
+include/gtkmm-%%API_VERSION%%/gtkmm/grid.h
+include/gtkmm-%%API_VERSION%%/gtkmm/handlebox.h
+include/gtkmm-%%API_VERSION%%/gtkmm/iconfactory.h
+include/gtkmm-%%API_VERSION%%/gtkmm/iconinfo.h
+include/gtkmm-%%API_VERSION%%/gtkmm/iconset.h
+include/gtkmm-%%API_VERSION%%/gtkmm/iconsource.h
+include/gtkmm-%%API_VERSION%%/gtkmm/icontheme.h
+include/gtkmm-%%API_VERSION%%/gtkmm/iconview.h
+include/gtkmm-%%API_VERSION%%/gtkmm/image.h
+include/gtkmm-%%API_VERSION%%/gtkmm/imagemenuitem.h
+include/gtkmm-%%API_VERSION%%/gtkmm/infobar.h
+include/gtkmm-%%API_VERSION%%/gtkmm/invisible.h
+include/gtkmm-%%API_VERSION%%/gtkmm/label.h
+include/gtkmm-%%API_VERSION%%/gtkmm/layout.h
+include/gtkmm-%%API_VERSION%%/gtkmm/linkbutton.h
+include/gtkmm-%%API_VERSION%%/gtkmm/liststore.h
+include/gtkmm-%%API_VERSION%%/gtkmm/listviewtext.h
+include/gtkmm-%%API_VERSION%%/gtkmm/main.h
+include/gtkmm-%%API_VERSION%%/gtkmm/menu.h
+include/gtkmm-%%API_VERSION%%/gtkmm/menubar.h
+include/gtkmm-%%API_VERSION%%/gtkmm/menuitem.h
+include/gtkmm-%%API_VERSION%%/gtkmm/menushell.h
+include/gtkmm-%%API_VERSION%%/gtkmm/menutoolbutton.h
+include/gtkmm-%%API_VERSION%%/gtkmm/messagedialog.h
+include/gtkmm-%%API_VERSION%%/gtkmm/misc.h
+include/gtkmm-%%API_VERSION%%/gtkmm/notebook.h
+include/gtkmm-%%API_VERSION%%/gtkmm/numerableicon.h
+include/gtkmm-%%API_VERSION%%/gtkmm/object.h
+include/gtkmm-%%API_VERSION%%/gtkmm/offscreenwindow.h
+include/gtkmm-%%API_VERSION%%/gtkmm/orientable.h
+include/gtkmm-%%API_VERSION%%/gtkmm/pagesetup.h
+include/gtkmm-%%API_VERSION%%/gtkmm/pagesetupunixdialog.h
+include/gtkmm-%%API_VERSION%%/gtkmm/paned.h
+include/gtkmm-%%API_VERSION%%/gtkmm/papersize.h
+include/gtkmm-%%API_VERSION%%/gtkmm/plug.h
+include/gtkmm-%%API_VERSION%%/gtkmm/printcontext.h
+include/gtkmm-%%API_VERSION%%/gtkmm/printer.h
+include/gtkmm-%%API_VERSION%%/gtkmm/printjob.h
+include/gtkmm-%%API_VERSION%%/gtkmm/printoperation.h
+include/gtkmm-%%API_VERSION%%/gtkmm/printoperationpreview.h
+include/gtkmm-%%API_VERSION%%/gtkmm/printsettings.h
+include/gtkmm-%%API_VERSION%%/gtkmm/printunixdialog.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/aboutdialog_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/accelgroup_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/accellabel_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/action_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/actiongroup_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/activatable_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/adjustment_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/alignment_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/appchooser_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/appchooserbutton_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/appchooserdialog_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/appchooserwidget_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/application_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/arrow_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/aspectframe_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/assistant_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/bin_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/border_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/box_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/buildable_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/builder_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/button_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/buttonbox_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/calendar_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/cellarea_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/cellareabox_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/cellareacontext_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/celleditable_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/celllayout_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/cellrenderer_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/cellrendereraccel_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/cellrenderercombo_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/cellrendererpixbuf_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/cellrendererprogress_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/cellrendererspin_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/cellrendererspinner_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/cellrenderertext_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/cellrenderertoggle_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/cellview_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/checkbutton_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/checkmenuitem_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/clipboard_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/colorbutton_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/colorselection_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/combobox_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/comboboxtext_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/container_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/cssprovider_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/dialog_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/drawingarea_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/editable_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/entry_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/entrybuffer_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/entrycompletion_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/enums_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/eventbox_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/expander_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/filechooser_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/filechooserbutton_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/filechooserdialog_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/filechooserwidget_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/filefilter_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/fixed_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/fontbutton_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/fontselection_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/frame_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/grid_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/handlebox_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/iconfactory_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/iconinfo_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/iconset_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/iconsource_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/icontheme_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/iconview_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/image_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/imagemenuitem_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/infobar_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/invisible_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/label_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/layout_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/linkbutton_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/liststore_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/main_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/menu_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/menubar_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/menuitem_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/menushell_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/menutoolbutton_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/messagedialog_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/misc_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/notebook_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/numerableicon_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/object_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/offscreenwindow_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/orientable_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/pagesetup_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/pagesetupunixdialog_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/paned_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/papersize_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/plug_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/printcontext_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/printer_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/printjob_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/printoperation_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/printoperationpreview_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/printsettings_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/printunixdialog_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/progressbar_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/radioaction_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/radiobutton_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/radiomenuitem_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/radiotoolbutton_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/range_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/recentaction_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/recentchooser_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/recentchooserdialog_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/recentchoosermenu_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/recentchooserwidget_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/recentfilter_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/recentinfo_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/recentmanager_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/requisition_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/scale_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/scalebutton_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/scrollable_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/scrollbar_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/scrolledwindow_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/selectiondata_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/separator_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/separatormenuitem_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/separatortoolitem_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/settings_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/sizegroup_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/socket_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/spinbutton_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/spinner_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/statusbar_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/statusicon_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/stockitem_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/stylecontext_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/styleprovider_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/switch_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/table_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/targetlist_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/tearoffmenuitem_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/textattributes_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/textbuffer_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/textchildanchor_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/textiter_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/textmark_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/texttag_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/texttagtable_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/textview_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/toggleaction_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/togglebutton_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/toggletoolbutton_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/toolbar_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/toolbutton_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/toolitem_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/toolitemgroup_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/toolpalette_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/toolshell_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/tooltip_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/treedragdest_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/treedragsource_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/treeiter_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/treemodel_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/treemodelfilter_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/treemodelsort_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/treepath_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/treerowreference_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/treeselection_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/treesortable_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/treestore_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/treeview_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/treeviewcolumn_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/uimanager_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/viewport_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/volumebutton_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/widget_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/widgetpath_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/private/window_p.h
+include/gtkmm-%%API_VERSION%%/gtkmm/progressbar.h
+include/gtkmm-%%API_VERSION%%/gtkmm/radioaction.h
+include/gtkmm-%%API_VERSION%%/gtkmm/radiobutton.h
+include/gtkmm-%%API_VERSION%%/gtkmm/radiobuttongroup.h
+include/gtkmm-%%API_VERSION%%/gtkmm/radiomenuitem.h
+include/gtkmm-%%API_VERSION%%/gtkmm/radiotoolbutton.h
+include/gtkmm-%%API_VERSION%%/gtkmm/range.h
+include/gtkmm-%%API_VERSION%%/gtkmm/recentaction.h
+include/gtkmm-%%API_VERSION%%/gtkmm/recentchooser.h
+include/gtkmm-%%API_VERSION%%/gtkmm/recentchooserdialog.h
+include/gtkmm-%%API_VERSION%%/gtkmm/recentchoosermenu.h
+include/gtkmm-%%API_VERSION%%/gtkmm/recentchooserwidget.h
+include/gtkmm-%%API_VERSION%%/gtkmm/recentfilter.h
+include/gtkmm-%%API_VERSION%%/gtkmm/recentinfo.h
+include/gtkmm-%%API_VERSION%%/gtkmm/recentmanager.h
+include/gtkmm-%%API_VERSION%%/gtkmm/requisition.h
+include/gtkmm-%%API_VERSION%%/gtkmm/scale.h
+include/gtkmm-%%API_VERSION%%/gtkmm/scalebutton.h
+include/gtkmm-%%API_VERSION%%/gtkmm/scrollable.h
+include/gtkmm-%%API_VERSION%%/gtkmm/scrollbar.h
+include/gtkmm-%%API_VERSION%%/gtkmm/scrolledwindow.h
+include/gtkmm-%%API_VERSION%%/gtkmm/selectiondata.h
+include/gtkmm-%%API_VERSION%%/gtkmm/selectiondata_private.h
+include/gtkmm-%%API_VERSION%%/gtkmm/separator.h
+include/gtkmm-%%API_VERSION%%/gtkmm/separatormenuitem.h
+include/gtkmm-%%API_VERSION%%/gtkmm/separatortoolitem.h
+include/gtkmm-%%API_VERSION%%/gtkmm/settings.h
+include/gtkmm-%%API_VERSION%%/gtkmm/sizegroup.h
+include/gtkmm-%%API_VERSION%%/gtkmm/socket.h
+include/gtkmm-%%API_VERSION%%/gtkmm/spinbutton.h
+include/gtkmm-%%API_VERSION%%/gtkmm/spinner.h
+include/gtkmm-%%API_VERSION%%/gtkmm/statusbar.h
+include/gtkmm-%%API_VERSION%%/gtkmm/statusicon.h
+include/gtkmm-%%API_VERSION%%/gtkmm/stock.h
+include/gtkmm-%%API_VERSION%%/gtkmm/stockid.h
+include/gtkmm-%%API_VERSION%%/gtkmm/stockitem.h
+include/gtkmm-%%API_VERSION%%/gtkmm/stylecontext.h
+include/gtkmm-%%API_VERSION%%/gtkmm/styleprovider.h
+include/gtkmm-%%API_VERSION%%/gtkmm/switch.h
+include/gtkmm-%%API_VERSION%%/gtkmm/table.h
+include/gtkmm-%%API_VERSION%%/gtkmm/targetentry.h
+include/gtkmm-%%API_VERSION%%/gtkmm/targetlist.h
+include/gtkmm-%%API_VERSION%%/gtkmm/tearoffmenuitem.h
+include/gtkmm-%%API_VERSION%%/gtkmm/textattributes.h
+include/gtkmm-%%API_VERSION%%/gtkmm/textbuffer.h
+include/gtkmm-%%API_VERSION%%/gtkmm/textchildanchor.h
+include/gtkmm-%%API_VERSION%%/gtkmm/textiter.h
+include/gtkmm-%%API_VERSION%%/gtkmm/textmark.h
+include/gtkmm-%%API_VERSION%%/gtkmm/texttag.h
+include/gtkmm-%%API_VERSION%%/gtkmm/texttagtable.h
+include/gtkmm-%%API_VERSION%%/gtkmm/textview.h
+include/gtkmm-%%API_VERSION%%/gtkmm/toggleaction.h
+include/gtkmm-%%API_VERSION%%/gtkmm/togglebutton.h
+include/gtkmm-%%API_VERSION%%/gtkmm/toggletoolbutton.h
+include/gtkmm-%%API_VERSION%%/gtkmm/toolbar.h
+include/gtkmm-%%API_VERSION%%/gtkmm/toolbutton.h
+include/gtkmm-%%API_VERSION%%/gtkmm/toolitem.h
+include/gtkmm-%%API_VERSION%%/gtkmm/toolitemgroup.h
+include/gtkmm-%%API_VERSION%%/gtkmm/toolpalette.h
+include/gtkmm-%%API_VERSION%%/gtkmm/toolshell.h
+include/gtkmm-%%API_VERSION%%/gtkmm/tooltip.h
+include/gtkmm-%%API_VERSION%%/gtkmm/treedragdest.h
+include/gtkmm-%%API_VERSION%%/gtkmm/treedragsource.h
+include/gtkmm-%%API_VERSION%%/gtkmm/treeiter.h
+include/gtkmm-%%API_VERSION%%/gtkmm/treemodel.h
+include/gtkmm-%%API_VERSION%%/gtkmm/treemodelcolumn.h
+include/gtkmm-%%API_VERSION%%/gtkmm/treemodelfilter.h
+include/gtkmm-%%API_VERSION%%/gtkmm/treemodelsort.h
+include/gtkmm-%%API_VERSION%%/gtkmm/treepath.h
+include/gtkmm-%%API_VERSION%%/gtkmm/treerowreference.h
+include/gtkmm-%%API_VERSION%%/gtkmm/treeselection.h
+include/gtkmm-%%API_VERSION%%/gtkmm/treesortable.h
+include/gtkmm-%%API_VERSION%%/gtkmm/treestore.h
+include/gtkmm-%%API_VERSION%%/gtkmm/treeview.h
+include/gtkmm-%%API_VERSION%%/gtkmm/treeview_private.h
+include/gtkmm-%%API_VERSION%%/gtkmm/treeviewcolumn.h
+include/gtkmm-%%API_VERSION%%/gtkmm/uimanager.h
+include/gtkmm-%%API_VERSION%%/gtkmm/viewport.h
+include/gtkmm-%%API_VERSION%%/gtkmm/volumebutton.h
+include/gtkmm-%%API_VERSION%%/gtkmm/widget.h
+include/gtkmm-%%API_VERSION%%/gtkmm/widgetpath.h
+include/gtkmm-%%API_VERSION%%/gtkmm/window.h
+include/gtkmm-%%API_VERSION%%/gtkmm/wrap_init.h
+lib/gdkmm-%%API_VERSION%%/include/gdkmmconfig.h
+lib/gtkmm-%%API_VERSION%%/include/gtkmmconfig.h
+lib/gtkmm-%%API_VERSION%%/proc/m4/class_gtkobject.m4
+lib/gtkmm-%%API_VERSION%%/proc/m4/convert.m4
+lib/gtkmm-%%API_VERSION%%/proc/m4/convert_gdk.m4
+lib/gtkmm-%%API_VERSION%%/proc/m4/convert_gtk.m4
+lib/gtkmm-%%API_VERSION%%/proc/m4/convert_gtkmm.m4
+lib/libgdkmm-%%VERSION%%.a
+lib/libgdkmm-%%VERSION%%.la
+lib/libgdkmm-%%VERSION%%.so
+lib/libgdkmm-%%VERSION%%.so.1
+lib/libgtkmm-%%VERSION%%.a
+lib/libgtkmm-%%VERSION%%.la
+lib/libgtkmm-%%VERSION%%.so
+lib/libgtkmm-%%VERSION%%.so.1
+libdata/pkgconfig/gdkmm-%%API_VERSION%%.pc
+libdata/pkgconfig/gtkmm-%%API_VERSION%%.pc
+ at dirrm lib/gtkmm-%%API_VERSION%%/proc/m4
+ at dirrm lib/gtkmm-%%API_VERSION%%/proc
+ at dirrm lib/gtkmm-%%API_VERSION%%/include
+ at dirrm lib/gtkmm-%%API_VERSION%%
+ at dirrm lib/gdkmm-%%API_VERSION%%/include
+ at dirrm lib/gdkmm-%%API_VERSION%%
+ at dirrm include/gtkmm-%%API_VERSION%%/gtkmm/private
+ at dirrm include/gtkmm-%%API_VERSION%%/gtkmm
+ at dirrm include/gtkmm-%%API_VERSION%%
+ at dirrm include/gdkmm-%%API_VERSION%%/gdkmm/private
+ at dirrm include/gdkmm-%%API_VERSION%%/gdkmm
+ at dirrm include/gdkmm-%%API_VERSION%%
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtkmm30-reference/Makefile ./x11-toolkits/gtkmm30-reference/Makefile
--- ../stock/ports/x11-toolkits/gtkmm30-reference/Makefile	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtkmm30-reference/Makefile	2011-02-12 10:46:33.000000000 +0100
@@ -0,0 +1,25 @@
+# New ports collection makefile for:	gtkmm24-reference
+# Date created:				09 May 2006
+# Whom:					Jean-Yves Lefort <jylefort at FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTREVISION=	0
+
+BUILD_DEPENDS=	${LOCALBASE}/libdata/pkgconfig/gtkmm-3.0.pc:${PORTSDIR}/x11-toolkits/gtkmm30 \
+		${LOCALBASE}/share/glibmm-2.4/doctool/doc-install.pl:${PORTSDIR}/devel/glibmm-reference
+
+USE_GMAKE=	yes
+GNU_CONFIGURE=	yes
+
+DOCSDIR=	${PREFIX}/share/doc/gtkmm-3.0
+
+do-install:
+.if !defined(NOPORTDOCS)
+.for d in docs
+	@cd ${WRKSRC}/${d} && ${GMAKE} install
+.endfor
+.endif
+
+.include "${.CURDIR}/../../devel/glib20-reference/bsd.gnome-reference.mk"
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtkmm30-reference/pkg-descr ./x11-toolkits/gtkmm30-reference/pkg-descr
--- ../stock/ports/x11-toolkits/gtkmm30-reference/pkg-descr	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtkmm30-reference/pkg-descr	2011-02-12 10:46:42.000000000 +0100
@@ -0,0 +1,3 @@
+This port contains the programming reference for x11-toolkits/gtkmm30.
+
+WWW: http://gtkmm.sourceforge.net/
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/gtkmm30-reference/pkg-plist ./x11-toolkits/gtkmm30-reference/pkg-plist
--- ../stock/ports/x11-toolkits/gtkmm30-reference/pkg-plist	1970-01-01 01:00:00.000000000 +0100
+++ ./x11-toolkits/gtkmm30-reference/pkg-plist	2011-02-12 10:46:53.000000000 +0100
@@ -0,0 +1,4 @@
+%%PORTDOCS%%share/devhelp/books/gtkmm-3.0/gtkmm-3.0.devhelp2
+%%PORTDOCS%%@dirrm share/devhelp/books/gtkmm-3.0
+%%PORTDOCS%%@dirrmtry share/devhelp/books
+%%PORTDOCS%%@dirrmtry share/devhelp
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/pangomm/Makefile ./x11-toolkits/pangomm/Makefile
--- ../stock/ports/x11-toolkits/pangomm/Makefile	2010-12-12 00:40:21.000000000 +0100
+++ ./x11-toolkits/pangomm/Makefile	2011-02-12 01:49:52.000000000 +0100
@@ -2,12 +2,12 @@
 # Date created:        23 July 2008
 # Whom:                Joe Marcus Clarke <marcus at FreeBSD.org>
 #
-# $FreeBSD: ports/x11-toolkits/pangomm/Makefile,v 1.8 2010/12/11 23:40:21 kwm Exp $
-#   $MCom: ports/x11-toolkits/pangomm/Makefile,v 1.16 2010/05/04 12:49:38 kwm Exp $
+# $FreeBSD$
+#   $MCom: ports/x11-toolkits/pangomm/Makefile,v 1.18 2011/01/12 18:16:30 kwm Exp $
 #
 
 PORTNAME=	pangomm
-PORTVERSION=	2.26.3
+PORTVERSION=	2.27.1
 PORTREVISION?=	0
 CATEGORIES=	x11-toolkits
 MASTER_SITES=	GNOME
@@ -25,7 +25,6 @@
 BUILD_DEPENDS=	gm4:${PORTSDIR}/devel/m4
 
 USE_GMAKE=	yes
-USE_GETTEXT=	yes
 GNU_CONFIGURE=	yes
 USE_LDCONFIG=	yes
 USE_GNOME=	gnomehack pango
diff -ruN --exclude=CVS ../stock/ports/x11-toolkits/pangomm/distinfo ./x11-toolkits/pangomm/distinfo
--- ../stock/ports/x11-toolkits/pangomm/distinfo	2010-12-12 00:40:21.000000000 +0100
+++ ./x11-toolkits/pangomm/distinfo	2011-02-12 01:49:52.000000000 +0100
@@ -1,2 +1,2 @@
-SHA256 (gnome2/pangomm-2.26.3.tar.bz2) = b1aa7a1de1c3eaf149ec0ca4bc962b8bf454f4e484abf34333d387d32c3825e6
-SIZE (gnome2/pangomm-2.26.3.tar.bz2) = 1038428
+SHA256 (gnome2/pangomm-2.27.1.tar.bz2) = be3a0cf41589dab65e2d0ee3896f025179aa3676be70b87c50e1dd769becc79d
+SIZE (gnome2/pangomm-2.27.1.tar.bz2) = 1055035
Index: databases/evolution-data-server/Makefile
===================================================================
RCS file: /home/pcvs/ports/databases/evolution-data-server/Makefile,v
retrieving revision 1.80
diff -a -u -r1.80 Makefile
--- databases/evolution-data-server/Makefile	4 Dec 2010 07:30:42 -0000	1.80
+++ databases/evolution-data-server/Makefile	15 Feb 2011 13:29:53 -0000
@@ -86,6 +86,7 @@
 post-patch:
 	@${REINPLACE_CMD} -e 's|-ldb|-l${BDB_LIB_NAME}|g ; \
 		s|heimlibs=".*"|heimlibs="${KRB5_LIB}"|g ; \
+		s|-DGTK_DISABLE_DEPRECATED||g ; \
 		s|-Wl,--no-undefined||g ; \
 		s|-Wmissing-include-dirs||g' \
 			${WRKSRC}/configure
Index: deskutils/gnome-utils/Makefile
===================================================================
RCS file: /home/pcvs/ports/deskutils/gnome-utils/Makefile,v
retrieving revision 1.108
diff -a -u -r1.108 Makefile
--- deskutils/gnome-utils/Makefile	4 Dec 2010 07:30:54 -0000	1.108
+++ deskutils/gnome-utils/Makefile	15 Feb 2011 13:29:53 -0000
@@ -38,4 +38,8 @@
 		gnome-search-tool.schemas baobab.schemas \
 		gnome-system-log.schemas
 
+post-patch:
+	@${REINPLACE_CMD} -e 's|-DGTK_DISABLE_DEPRECATED||g' \
+		${WRKSRC}/gsearchtool/libgnomeui-deprecated/Makefile.in
+
 .include <bsd.port.mk>
Index: devel/gvfs/Makefile
===================================================================
RCS file: /home/pcvs/ports/devel/gvfs/Makefile,v
retrieving revision 1.33
diff -a -u -r1.33 Makefile
--- devel/gvfs/Makefile	21 Nov 2010 17:25:52 -0000	1.33
+++ devel/gvfs/Makefile	15 Feb 2011 13:29:54 -0000
@@ -18,8 +18,7 @@
 LIB_DEPENDS=	dbus-1.3:${PORTSDIR}/devel/dbus \
     		hal.1:${PORTSDIR}/sysutils/hal \
 		soup-gnome-2.4.1:${PORTSDIR}/devel/libsoup-gnome \
-		gnome-keyring:${PORTSDIR}/security/gnome-keyring \
-		avahi-client.3:${PORTSDIR}/net/avahi-app
+		gnome-keyring:${PORTSDIR}/security/gnome-keyring
 RUN_DEPENDS=	gnome-mount:${PORTSDIR}/sysutils/gnome-mount
 
 USE_BZIP2=	yes
@@ -32,6 +31,7 @@
 		LDFLAGS="-L${LOCALBASE}/lib"
 CONFIGURE_ARGS=	--disable-obexftp
 OPTIONS=	FUSE "Enable fuse" off \
+		AVAHI "Enable AVAHI" on \
 		SAMBA "Enable Samba" on \
 		GPHOTO2 "Enable Gphoto 2 camera support" on \
 		CDDA "Enable CDDA" on
@@ -71,15 +71,16 @@
 PLIST_SUB+=	GPHOTO2="@comment "
 .endif
 
-.if ${OSVERSION} < 602112
-CONFIGURE_ARGS+=	--disable-archive
-PLIST_SUB+=	ARCHIVE="@comment "
+.if defined(WITH_AVAHI)
+LIB_DEPENDS+=	avahi-client.3:${PORTSDIR}/net/avahi-app
+PLIST_SUB+=	AVAHI=""
 .else
-PLIST_SUB+=	ARCHIVE=""
+CONFIGURE_ARGS+=--disable-avahi
+PLIST_SUB+=	AVAHI="@comment "
 .endif
 
-.if ${OSVERSION} < 700000
-BROKEN=		does not configure on 6.X
-.endif
+post-patch:
+	@${REINPLACE_CMD} -e 's|-DG_DISABLE_DEPRECATED||g' \
+		${WRKSRC}/gconf/Makefile.in
 
 .include <bsd.port.post.mk>
Index: devel/gvfs/pkg-plist
===================================================================
RCS file: /home/pcvs/ports/devel/gvfs/pkg-plist,v
retrieving revision 1.12
diff -a -u -r1.12 pkg-plist
--- devel/gvfs/pkg-plist	20 Nov 2010 15:36:34 -0000	1.12
+++ devel/gvfs/pkg-plist	15 Feb 2011 13:29:54 -0000
@@ -24,9 +24,9 @@
 lib/gio/modules/libgioremote-volume-monitor.so
 lib/gio/modules/libgvfsdbus.la
 lib/gio/modules/libgvfsdbus.so
-lib/libgvfscommon-dnssd.la
-lib/libgvfscommon-dnssd.so
-lib/libgvfscommon-dnssd.so.0
+%%AVAHI%%lib/libgvfscommon-dnssd.la
+%%AVAHI%%lib/libgvfscommon-dnssd.so
+%%AVAHI%%lib/libgvfscommon-dnssd.so.0
 lib/libgvfscommon.la
 lib/libgvfscommon.so
 lib/libgvfscommon.so.0
@@ -34,12 +34,12 @@
 %%GPHOTO2%%libexec/gvfs-gphoto2-volume-monitor
 libexec/gvfs-hal-volume-monitor
 libexec/gvfsd
-%%ARCHIVE%%libexec/gvfsd-archive
+libexec/gvfsd-archive
 libexec/gvfsd-burn
 %%CDDA%%libexec/gvfsd-cdda
 libexec/gvfsd-computer
 libexec/gvfsd-dav
-libexec/gvfsd-dnssd
+%%AVAHI%%libexec/gvfsd-dnssd
 libexec/gvfsd-ftp
 %%GPHOTO2%%libexec/gvfsd-gphoto2
 libexec/gvfsd-http
@@ -54,7 +54,7 @@
 share/dbus-1/services/gvfs-metadata.service
 %%GPHOTO2%%share/dbus-1/services/org.gtk.Private.GPhoto2VolumeMonitor.service
 share/dbus-1/services/org.gtk.Private.HalVolumeMonitor.service
-%%ARCHIVE%%share/gvfs/mounts/archive.mount
+share/gvfs/mounts/archive.mount
 share/gvfs/mounts/burn.mount
 %%CDDA%%share/gvfs/mounts/cdda.mount
 share/gvfs/mounts/computer.mount
Index: graphics/evince/Makefile
===================================================================
RCS file: /home/pcvs/ports/graphics/evince/Makefile,v
retrieving revision 1.63
diff -a -u -r1.63 Makefile
--- graphics/evince/Makefile	4 Dec 2010 07:31:56 -0000	1.63
+++ graphics/evince/Makefile	15 Feb 2011 13:29:54 -0000
@@ -29,7 +29,7 @@
 USE_GMAKE=	yes
 INSTALLS_OMF=	yes
 USE_GNOME=	gnomehack intlhack gnomeprefix desktopfileutils \
-		gnomedocutils ltasneededhack
+		gnomedocutils ltasneededhack gconf2
 CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
 		LDFLAGS="-L${LOCALBASE}/lib"
 
Index: graphics/evince/pkg-plist
===================================================================
RCS file: /home/pcvs/ports/graphics/evince/pkg-plist,v
retrieving revision 1.26
diff -a -u -r1.26 pkg-plist
--- graphics/evince/pkg-plist	20 Nov 2010 15:36:39 -0000	1.26
+++ graphics/evince/pkg-plist	15 Feb 2011 13:29:54 -0000
@@ -491,8 +491,6 @@
 @dirrm include/evince
 @exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true
 @unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true
- at dirrmtry share/GConf/gsettings
- at dirrmtry share/GConf
 @dirrmtry share/locale/zh_HK/LC_MESSAGES
 @dirrmtry share/locale/zh_HK
 @dirrmtry share/locale/te/LC_MESSAGES
Index: mail/evolution/Makefile
===================================================================
RCS file: /home/pcvs/ports/mail/evolution/Makefile,v
retrieving revision 1.187
diff -a -u -r1.187 Makefile
--- mail/evolution/Makefile	4 Dec 2010 07:32:29 -0000	1.187
+++ mail/evolution/Makefile	15 Feb 2011 13:29:54 -0000
@@ -106,6 +106,7 @@
 	@${REINPLACE_CMD} -e '/^plugins_standard_always/s/audio-inline//' \
 	    	-e 's|-lkrb5 -lcrypto -lasn1 -lcom_err -lroken -lgssapi|${KRB5_LIB}|g' \
 		-e 's|-Wl,--no-undefined||g' \
+		-e 's|-DGTK_DISABLE_DEPRECATED||g' \
 		-e 's|-Wmissing-include-dirs||g' \
 	    	${WRKSRC}/configure
 	@${REINPLACE_CMD} -e 's|/usr|${LOCALBASE}|g' \
Index: mail/evolution-exchange/Makefile
===================================================================
RCS file: /home/pcvs/ports/mail/evolution-exchange/Makefile,v
retrieving revision 1.66
diff -a -u -r1.66 Makefile
--- mail/evolution-exchange/Makefile	4 Dec 2010 07:32:29 -0000	1.66
+++ mail/evolution-exchange/Makefile	15 Feb 2011 13:29:54 -0000
@@ -63,6 +63,7 @@
 post-patch:
 	@${REINPLACE_CMD} -e 's|-ldb|-l${BDB_LIB_NAME}|g' \
 		-e 's|-lkrb5 -lcrypto -lasn1 -lcom_err -lroken -lgssapi|${KRB5_LIB}|g' \
+		-e 's|-DGTK_DISABLE_DEPRECATED||g' \
 		-e 's|-Wmissing-include-dirs||g' \
 		${WRKSRC}/configure
 
Index: security/gnome-keyring/Makefile
===================================================================
RCS file: /home/pcvs/ports/security/gnome-keyring/Makefile,v
retrieving revision 1.56
diff -a -u -r1.56 Makefile
--- security/gnome-keyring/Makefile	4 Dec 2010 07:33:24 -0000	1.56
+++ security/gnome-keyring/Makefile	15 Feb 2011 13:29:54 -0000
@@ -8,6 +8,7 @@
 
 PORTNAME=	gnome-keyring
 PORTVERSION=	2.32.1
+PORTREVISION=	1
 CATEGORIES=	security gnome
 MASTER_SITES=	GNOME
 DIST_SUBDIR=	gnome2
Index: security/gnome-keyring/pkg-plist
===================================================================
RCS file: /home/pcvs/ports/security/gnome-keyring/pkg-plist,v
retrieving revision 1.23
diff -a -u -r1.23 pkg-plist
--- security/gnome-keyring/pkg-plist	20 Nov 2010 15:36:53 -0000	1.23
+++ security/gnome-keyring/pkg-plist	15 Feb 2011 13:29:54 -0000
@@ -191,8 +191,6 @@
 @dirrm include/gp11
 @dirrm include/gcr/gcr
 @dirrm include/gcr
- at dirrmtry share/GConf/gsettings
- at dirrmtry share/GConf
 @dirrmtry share/locale/zh_HK/LC_MESSAGES
 @dirrmtry share/locale/zh_HK
 @dirrmtry share/locale/xh/LC_MESSAGES
Index: www/gtkhtml3/Makefile
===================================================================
RCS file: /home/pcvs/ports/www/gtkhtml3/Makefile,v
retrieving revision 1.121
diff -a -u -r1.121 Makefile
--- www/gtkhtml3/Makefile	4 Dec 2010 07:33:56 -0000	1.121
+++ www/gtkhtml3/Makefile	15 Feb 2011 13:29:54 -0000
@@ -40,6 +40,7 @@
 	@${REINPLACE_CMD} -e 's|@INTLTOOL_LIBDIR@|${LOCALBASE}/libdata|' \
 	    	${WRKSRC}/intltool-merge.in
 	@${REINPLACE_CMD} -e 's|-Wmissing-include-dirs||g ; \
+		s|-DGTK_DISABLE_DEPRECATED||g ; \
 	    	s|-DGDK_DISABLE_DEPRECATED||g' \
 		${WRKSRC}/configure
 
--- glib+gtk-3.diff ends here ---


>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list