From d16b65922e558953ba64c07ac2ab80eb57efcea4 Mon Sep 17 00:00:00 2001 From: drochner Date: Fri, 18 Mar 2011 17:06:08 +0000 Subject: first cut on a pkg for gtk3, the successor of the gtk2 toolkit: add gtk3-3.0.3 --- x11/gtk3/DESCR | 9 + x11/gtk3/Makefile | 88 ++++ x11/gtk3/PLIST | 1168 +++++++++++++++++++++++++++++++++++++++++ x11/gtk3/buildlink3.mk | 36 ++ x11/gtk3/distinfo | 8 + x11/gtk3/files/immodules.tmpl | 22 + x11/gtk3/modules.mk | 35 ++ x11/gtk3/options.mk | 55 ++ x11/gtk3/patches/patch-ab | 20 + x11/gtk3/patches/patch-af | 58 ++ x11/gtk3/patches/patch-aj | 13 + 11 files changed, 1512 insertions(+) create mode 100644 x11/gtk3/DESCR create mode 100644 x11/gtk3/Makefile create mode 100644 x11/gtk3/PLIST create mode 100644 x11/gtk3/buildlink3.mk create mode 100644 x11/gtk3/distinfo create mode 100644 x11/gtk3/files/immodules.tmpl create mode 100644 x11/gtk3/modules.mk create mode 100644 x11/gtk3/options.mk create mode 100644 x11/gtk3/patches/patch-ab create mode 100644 x11/gtk3/patches/patch-af create mode 100644 x11/gtk3/patches/patch-aj diff --git a/x11/gtk3/DESCR b/x11/gtk3/DESCR new file mode 100644 index 00000000000..e1707ba806e --- /dev/null +++ b/x11/gtk3/DESCR @@ -0,0 +1,9 @@ +GTK+ is a multi-platform toolkit for creating graphical user +interfaces. Offering a complete set of widgets, GTK+ is suitable for +projects ranging from small one-off tools to complete application +suites. + +GTK+ has been designed from the ground up to support a range of +languages, not only C/C++. Using GTK+ from languages such as Perl and +Python (especially in combination with the Glade GUI builder) provides +an effective method of rapid application development. diff --git a/x11/gtk3/Makefile b/x11/gtk3/Makefile new file mode 100644 index 00000000000..1407fedfa7d --- /dev/null +++ b/x11/gtk3/Makefile @@ -0,0 +1,88 @@ +# $NetBSD: Makefile,v 1.1.1.1 2011/03/18 17:06:08 drochner Exp $ + +DISTNAME= gtk+-3.0.3 +PKGNAME= ${DISTNAME:S/gtk/gtk3/} +CATEGORIES= x11 +MASTER_SITES= ftp://ftp.gtk.org/pub/gtk/3.0/ \ + ${MASTER_SITE_GNOME:=sources/gtk+/3.0/} +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.gtk.org/ +COMMENT= GIMP Toolkit v3 - libraries for building X11 user interfaces +LICENSE= gnu-lgpl-v2.1 + +PKG_DESTDIR_SUPPORT= user-destdir + +USE_PKGLOCALEDIR= yes +USE_TOOLS+= gmake msgfmt perl pkg-config bash +USE_LANGUAGES= c c++ +USE_LIBTOOL= yes +PTHREAD_AUTO_VARS= yes + +GNU_CONFIGURE= yes +# XXX there is a subtle bashism in "configure" or a bug in NetBSD's sh +CONFIG_SHELL= bash +CONFIGURE_ARGS+= --sysconfdir=${PREFIX}/libdata +# Work around build problems, disable unstable PAPI, PR #41608: +CONFIGURE_ARGS+= --disable-papi +# XXX for now, to avoid conflict +CONFIGURE_ARGS+= --enable-gtk2-dependency +DEPENDS+= gtk2+-[0-9]*:../../x11/gtk2 +MAKE_ENV+= PKGLOCALEDIR=${PKGLOCALEDIR:Q} +TEST_TARGET= check + +PKGCONFIG_OVERRIDE+= gdk-3.0.pc.in +PKGCONFIG_OVERRIDE+= gtk+-3.0-uninstalled.pc.in +PKGCONFIG_OVERRIDE+= gtk+-3.0.pc.in +PKGCONFIG_OVERRIDE+= gtk+-unix-print-3.0.pc.in +PKGCONFIG_OVERRIDE+= gail-3.0-uninstalled.pc.in +PKGCONFIG_OVERRIDE+= gail-3.0.pc.in + +INSTALLATION_DIRS+= lib/gtk-3.0/immodules +INSTALLATION_DIRS+= lib/gtk-3.0/modules +INSTALLATION_DIRS+= lib/gtk-3.0/3.0.0/filesystems + +#REQD_DIRS+= ${PREFIX}/libdata/gtk-2.0 + +BUILD_DIRS= . demos/gtk-demo + +.include "../../mk/bsd.prefs.mk" + +# gtk/Makefile.am hardcodes 'grep -o' so require GNU grep on platforms +# which do not have it. +.if ${OPSYS} == "SunOS" +BUILD_DEPENDS+= grep-[0-9]*:../../textproc/grep +TOOLS_PATH.grep= ${LOCALBASE}/bin/${GNU_PROGRAM_PREFIX}grep +.endif + +CPPFLAGS+= -DPREFIX="\"${PREFIX}\"" + +# We remove the module databases during post-install since we create them +# anew in the +INSTALL script as part of the POST-INSTALL action. +# +post-install: + ${RM} -f ${DESTDIR}${GTK_IMMODULES_DB} + +_BUILDING_GTK3= yes +.include "modules.mk" + +.include "../../databases/shared-mime-info/buildlink3.mk" +BUILDLINK_API_DEPENDS.atk+= atk>=1.30.0 +.include "../../devel/atk/buildlink3.mk" +.include "../../devel/gettext-lib/buildlink3.mk" +BUILDLINK_API_DEPENDS.glib2+= glib2>=2.28.0 +.include "../../devel/glib2/buildlink3.mk" +.include "../../graphics/gdk-pixbuf2/buildlink3.mk" + +.include "options.mk" + +BUILDLINK_API_DEPENDS.pango+= pango>=1.24.0 +.include "../../devel/pango/buildlink3.mk" +.include "../../fonts/fontconfig/buildlink3.mk" +BUILDLINK_API_DEPENDS.cairo+= cairo>=1.10.0 +.include "../../graphics/cairo/buildlink3.mk" +.include "../../graphics/cairo-gobject/buildlink3.mk" +.include "../../graphics/freetype2/buildlink3.mk" + +.include "../../mk/bsd.pkg.mk" diff --git a/x11/gtk3/PLIST b/x11/gtk3/PLIST new file mode 100644 index 00000000000..3a47f87ac5f --- /dev/null +++ b/x11/gtk3/PLIST @@ -0,0 +1,1168 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2011/03/18 17:06:10 drochner Exp $ +bin/gtk-query-immodules-3.0 +bin/gtk3-demo +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/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/gtkcellarea.h +include/gtk-3.0/gtk/gtkcellareabox.h +include/gtk-3.0/gtk/gtkcellareacontext.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/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/gtkinfobar.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/gtk-3.0/3.0.0/immodules/im-am-et.la +lib/gtk-3.0/3.0.0/immodules/im-cedilla.la +lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.la +lib/gtk-3.0/3.0.0/immodules/im-inuktitut.la +lib/gtk-3.0/3.0.0/immodules/im-ipa.la +lib/gtk-3.0/3.0.0/immodules/im-multipress.la +lib/gtk-3.0/3.0.0/immodules/im-thai.la +lib/gtk-3.0/3.0.0/immodules/im-ti-er.la +lib/gtk-3.0/3.0.0/immodules/im-ti-et.la +lib/gtk-3.0/3.0.0/immodules/im-viqr.la +lib/gtk-3.0/3.0.0/immodules/im-xim.la +lib/gtk-3.0/3.0.0/printbackends/libprintbackend-cups.la +lib/gtk-3.0/3.0.0/printbackends/libprintbackend-file.la +lib/gtk-3.0/3.0.0/printbackends/libprintbackend-lpr.la +lib/gtk-3.0/modules/libferret.la +lib/gtk-3.0/modules/libgail.la +lib/libgailutil-3.la +lib/libgdk-3.la +lib/libgtk-3.la +lib/pkgconfig/gail-3.0.pc +lib/pkgconfig/gdk-3.0.pc +lib/pkgconfig/gdk-x11-3.0.pc +lib/pkgconfig/gtk+-3.0.pc +lib/pkgconfig/gtk+-unix-print-3.0.pc +lib/pkgconfig/gtk+-x11-3.0.pc +libdata/gtk-3.0/im-multipress.conf +man/man1/gtk-query-immodules-3.0.1 +man/man1/gtk-update-icon-cache.1 +share/aclocal/gtk-3.0.m4 +share/glib-2.0/schemas/org.gtk.Settings.FileChooser.gschema.xml +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/links.c +share/gtk-3.0/demo/list_store.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/gtk-doc/html/gail-libgail-util3/gail-libgail-util3-GailMisc.html +share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3-GailTextUtil.html +share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3.devhelp +share/gtk-doc/html/gail-libgail-util3/gail-libgail-util3.devhelp2 +share/gtk-doc/html/gail-libgail-util3/home.png +share/gtk-doc/html/gail-libgail-util3/index.html +share/gtk-doc/html/gail-libgail-util3/index.sgml +share/gtk-doc/html/gail-libgail-util3/left.png +share/gtk-doc/html/gail-libgail-util3/libgail-util-main.html +share/gtk-doc/html/gail-libgail-util3/right.png +share/gtk-doc/html/gail-libgail-util3/style.css +share/gtk-doc/html/gail-libgail-util3/up.png +share/gtk-doc/html/gdk3/GdkDevice.html +share/gtk-doc/html/gdk3/GdkDeviceManager.html +share/gtk-doc/html/gdk3/GdkDisplay.html +share/gtk-doc/html/gdk3/GdkDisplayManager.html +share/gtk-doc/html/gdk3/GdkScreen.html +share/gtk-doc/html/gdk3/X_cursor.png +share/gtk-doc/html/gdk3/annotation-glossary.html +share/gtk-doc/html/gdk3/api-index-3-0.html +share/gtk-doc/html/gdk3/api-index-deprecated.html +share/gtk-doc/html/gdk3/api-index-full.html +share/gtk-doc/html/gdk3/arrow.png +share/gtk-doc/html/gdk3/based_arrow_down.png +share/gtk-doc/html/gdk3/based_arrow_up.png +share/gtk-doc/html/gdk3/boat.png +share/gtk-doc/html/gdk3/bogosity.png +share/gtk-doc/html/gdk3/bottom_left_corner.png +share/gtk-doc/html/gdk3/bottom_right_corner.png +share/gtk-doc/html/gdk3/bottom_side.png +share/gtk-doc/html/gdk3/bottom_tee.png +share/gtk-doc/html/gdk3/box_spiral.png +share/gtk-doc/html/gdk3/center_ptr.png +share/gtk-doc/html/gdk3/circle.png +share/gtk-doc/html/gdk3/clock.png +share/gtk-doc/html/gdk3/coffee_mug.png +share/gtk-doc/html/gdk3/cross.png +share/gtk-doc/html/gdk3/cross_reverse.png +share/gtk-doc/html/gdk3/crosshair.png +share/gtk-doc/html/gdk3/diamond_cross.png +share/gtk-doc/html/gdk3/dot.png +share/gtk-doc/html/gdk3/dotbox.png +share/gtk-doc/html/gdk3/double_arrow.png +share/gtk-doc/html/gdk3/draft_large.png +share/gtk-doc/html/gdk3/draft_small.png +share/gtk-doc/html/gdk3/draped_box.png +share/gtk-doc/html/gdk3/exchange.png +share/gtk-doc/html/gdk3/fleur.png +share/gtk-doc/html/gdk3/gdk3-Application-launching.html +share/gtk-doc/html/gdk3/gdk3-Cairo-Interaction.html +share/gtk-doc/html/gdk3/gdk3-Colors.html +share/gtk-doc/html/gdk3/gdk3-Cursors.html +share/gtk-doc/html/gdk3/gdk3-Drag-and-Drop.html +share/gtk-doc/html/gdk3/gdk3-Event-Structures.html +share/gtk-doc/html/gdk3/gdk3-Events.html +share/gtk-doc/html/gdk3/gdk3-General.html +share/gtk-doc/html/gdk3/gdk3-Keyboard-Handling.html +share/gtk-doc/html/gdk3/gdk3-Pango-Interaction.html +share/gtk-doc/html/gdk3/gdk3-Pixbufs.html +share/gtk-doc/html/gdk3/gdk3-Points-Rectangles-and-Regions.html +share/gtk-doc/html/gdk3/gdk3-Properties-and-Atoms.html +share/gtk-doc/html/gdk3/gdk3-RGBA-Colors.html +share/gtk-doc/html/gdk3/gdk3-Selections.html +share/gtk-doc/html/gdk3/gdk3-Testing.html +share/gtk-doc/html/gdk3/gdk3-Threads.html +share/gtk-doc/html/gdk3/gdk3-Visuals.html +share/gtk-doc/html/gdk3/gdk3-Windows.html +share/gtk-doc/html/gdk3/gdk3-X-Window-System-Interaction.html +share/gtk-doc/html/gdk3/gdk3.devhelp +share/gtk-doc/html/gdk3/gdk3.devhelp2 +share/gtk-doc/html/gdk3/gobbler.png +share/gtk-doc/html/gdk3/gumby.png +share/gtk-doc/html/gdk3/hand1.png +share/gtk-doc/html/gdk3/hand2.png +share/gtk-doc/html/gdk3/heart.png +share/gtk-doc/html/gdk3/home.png +share/gtk-doc/html/gdk3/icon.png +share/gtk-doc/html/gdk3/index.html +share/gtk-doc/html/gdk3/index.sgml +share/gtk-doc/html/gdk3/iron_cross.png +share/gtk-doc/html/gdk3/left.png +share/gtk-doc/html/gdk3/left_ptr.png +share/gtk-doc/html/gdk3/left_side.png +share/gtk-doc/html/gdk3/left_tee.png +share/gtk-doc/html/gdk3/leftbutton.png +share/gtk-doc/html/gdk3/ll_angle.png +share/gtk-doc/html/gdk3/lr_angle.png +share/gtk-doc/html/gdk3/man.png +share/gtk-doc/html/gdk3/middlebutton.png +share/gtk-doc/html/gdk3/mouse.png +share/gtk-doc/html/gdk3/pencil.png +share/gtk-doc/html/gdk3/pirate.png +share/gtk-doc/html/gdk3/plus.png +share/gtk-doc/html/gdk3/question_arrow.png +share/gtk-doc/html/gdk3/reference.html +share/gtk-doc/html/gdk3/right.png +share/gtk-doc/html/gdk3/right_ptr.png +share/gtk-doc/html/gdk3/right_side.png +share/gtk-doc/html/gdk3/right_tee.png +share/gtk-doc/html/gdk3/rightbutton.png +share/gtk-doc/html/gdk3/rotated-text.png +share/gtk-doc/html/gdk3/rtl_logo.png +share/gtk-doc/html/gdk3/sailboat.png +share/gtk-doc/html/gdk3/sb_down_arrow.png +share/gtk-doc/html/gdk3/sb_h_double_arrow.png +share/gtk-doc/html/gdk3/sb_left_arrow.png +share/gtk-doc/html/gdk3/sb_right_arrow.png +share/gtk-doc/html/gdk3/sb_up_arrow.png +share/gtk-doc/html/gdk3/sb_v_double_arrow.png +share/gtk-doc/html/gdk3/shuttle.png +share/gtk-doc/html/gdk3/sizing.png +share/gtk-doc/html/gdk3/spider.png +share/gtk-doc/html/gdk3/spraycan.png +share/gtk-doc/html/gdk3/star.png +share/gtk-doc/html/gdk3/style.css +share/gtk-doc/html/gdk3/target.png +share/gtk-doc/html/gdk3/tcross.png +share/gtk-doc/html/gdk3/top_left_arrow.png +share/gtk-doc/html/gdk3/top_left_corner.png +share/gtk-doc/html/gdk3/top_right_corner.png +share/gtk-doc/html/gdk3/top_side.png +share/gtk-doc/html/gdk3/top_tee.png +share/gtk-doc/html/gdk3/trek.png +share/gtk-doc/html/gdk3/ul_angle.png +share/gtk-doc/html/gdk3/umbrella.png +share/gtk-doc/html/gdk3/up.png +share/gtk-doc/html/gdk3/ur_angle.png +share/gtk-doc/html/gdk3/watch.png +share/gtk-doc/html/gdk3/xterm.png +share/gtk-doc/html/gtk3/AbstractObjects.html +share/gtk-doc/html/gtk3/Actions.html +share/gtk-doc/html/gtk3/Application.html +share/gtk-doc/html/gtk3/ApplicationChoosing.html +share/gtk-doc/html/gtk3/Builder.html +share/gtk-doc/html/gtk3/ButtonWidgets.html +share/gtk-doc/html/gtk3/DisplayWidgets.html +share/gtk-doc/html/gtk3/GtkAboutDialog.html +share/gtk-doc/html/gtk3/GtkAccelLabel.html +share/gtk-doc/html/gtk3/GtkAccessible.html +share/gtk-doc/html/gtk3/GtkAction.html +share/gtk-doc/html/gtk3/GtkActionGroup.html +share/gtk-doc/html/gtk3/GtkActivatable.html +share/gtk-doc/html/gtk3/GtkAdjustment.html +share/gtk-doc/html/gtk3/GtkAlignment.html +share/gtk-doc/html/gtk3/GtkAppChooser.html +share/gtk-doc/html/gtk3/GtkAppChooserButton.html +share/gtk-doc/html/gtk3/GtkAppChooserDialog.html +share/gtk-doc/html/gtk3/GtkAppChooserWidget.html +share/gtk-doc/html/gtk3/GtkApplication.html +share/gtk-doc/html/gtk3/GtkArrow.html +share/gtk-doc/html/gtk3/GtkAspectFrame.html +share/gtk-doc/html/gtk3/GtkAssistant.html +share/gtk-doc/html/gtk3/GtkBin.html +share/gtk-doc/html/gtk3/GtkBox.html +share/gtk-doc/html/gtk3/GtkBuildable.html +share/gtk-doc/html/gtk3/GtkBuilder.html +share/gtk-doc/html/gtk3/GtkButton.html +share/gtk-doc/html/gtk3/GtkButtonBox.html +share/gtk-doc/html/gtk3/GtkCalendar.html +share/gtk-doc/html/gtk3/GtkCellArea.html +share/gtk-doc/html/gtk3/GtkCellAreaBox.html +share/gtk-doc/html/gtk3/GtkCellAreaContext.html +share/gtk-doc/html/gtk3/GtkCellEditable.html +share/gtk-doc/html/gtk3/GtkCellLayout.html +share/gtk-doc/html/gtk3/GtkCellRenderer.html +share/gtk-doc/html/gtk3/GtkCellRendererAccel.html +share/gtk-doc/html/gtk3/GtkCellRendererCombo.html +share/gtk-doc/html/gtk3/GtkCellRendererPixbuf.html +share/gtk-doc/html/gtk3/GtkCellRendererProgress.html +share/gtk-doc/html/gtk3/GtkCellRendererSpin.html +share/gtk-doc/html/gtk3/GtkCellRendererSpinner.html +share/gtk-doc/html/gtk3/GtkCellRendererText.html +share/gtk-doc/html/gtk3/GtkCellRendererToggle.html +share/gtk-doc/html/gtk3/GtkCellView.html +share/gtk-doc/html/gtk3/GtkCheckButton.html +share/gtk-doc/html/gtk3/GtkColorButton.html +share/gtk-doc/html/gtk3/GtkColorSelection.html +share/gtk-doc/html/gtk3/GtkColorSelectionDialog.html +share/gtk-doc/html/gtk3/GtkComboBox.html +share/gtk-doc/html/gtk3/GtkComboBoxText.html +share/gtk-doc/html/gtk3/GtkContainer.html +share/gtk-doc/html/gtk3/GtkCssProvider.html +share/gtk-doc/html/gtk3/GtkDialog.html +share/gtk-doc/html/gtk3/GtkDrawingArea.html +share/gtk-doc/html/gtk3/GtkEditable.html +share/gtk-doc/html/gtk3/GtkEntry.html +share/gtk-doc/html/gtk3/GtkEntryBuffer.html +share/gtk-doc/html/gtk3/GtkEntryCompletion.html +share/gtk-doc/html/gtk3/GtkEventBox.html +share/gtk-doc/html/gtk3/GtkExpander.html +share/gtk-doc/html/gtk3/GtkFileChooser.html +share/gtk-doc/html/gtk3/GtkFileChooserButton.html +share/gtk-doc/html/gtk3/GtkFileChooserDialog.html +share/gtk-doc/html/gtk3/GtkFileChooserWidget.html +share/gtk-doc/html/gtk3/GtkFileFilter.html +share/gtk-doc/html/gtk3/GtkFixed.html +share/gtk-doc/html/gtk3/GtkFontButton.html +share/gtk-doc/html/gtk3/GtkFontSelection.html +share/gtk-doc/html/gtk3/GtkFontSelectionDialog.html +share/gtk-doc/html/gtk3/GtkFrame.html +share/gtk-doc/html/gtk3/GtkGrid.html +share/gtk-doc/html/gtk3/GtkHBox.html +share/gtk-doc/html/gtk3/GtkHButtonBox.html +share/gtk-doc/html/gtk3/GtkHPaned.html +share/gtk-doc/html/gtk3/GtkHSV.html +share/gtk-doc/html/gtk3/GtkHScale.html +share/gtk-doc/html/gtk3/GtkHScrollbar.html +share/gtk-doc/html/gtk3/GtkHSeparator.html +share/gtk-doc/html/gtk3/GtkHandleBox.html +share/gtk-doc/html/gtk3/GtkIMContext.html +share/gtk-doc/html/gtk3/GtkIMContextSimple.html +share/gtk-doc/html/gtk3/GtkIMMulticontext.html +share/gtk-doc/html/gtk3/GtkIconTheme.html +share/gtk-doc/html/gtk3/GtkIconView.html +share/gtk-doc/html/gtk3/GtkImage.html +share/gtk-doc/html/gtk3/GtkImageMenuItem.html +share/gtk-doc/html/gtk3/GtkInfoBar.html +share/gtk-doc/html/gtk3/GtkInvisible.html +share/gtk-doc/html/gtk3/GtkLabel.html +share/gtk-doc/html/gtk3/GtkLayout.html +share/gtk-doc/html/gtk3/GtkLinkButton.html +share/gtk-doc/html/gtk3/GtkListStore.html +share/gtk-doc/html/gtk3/GtkMenu.html +share/gtk-doc/html/gtk3/GtkMenuBar.html +share/gtk-doc/html/gtk3/GtkMenuItem.html +share/gtk-doc/html/gtk3/GtkMenuShell.html +share/gtk-doc/html/gtk3/GtkMenuToolButton.html +share/gtk-doc/html/gtk3/GtkMessageDialog.html +share/gtk-doc/html/gtk3/GtkMisc.html +share/gtk-doc/html/gtk3/GtkNotebook.html +share/gtk-doc/html/gtk3/GtkNumerableIcon.html +share/gtk-doc/html/gtk3/GtkOffscreenWindow.html +share/gtk-doc/html/gtk3/GtkPageSetup.html +share/gtk-doc/html/gtk3/GtkPageSetupUnixDialog.html +share/gtk-doc/html/gtk3/GtkPaned.html +share/gtk-doc/html/gtk3/GtkPaperSize.html +share/gtk-doc/html/gtk3/GtkPlug.html +share/gtk-doc/html/gtk3/GtkPrintContext.html +share/gtk-doc/html/gtk3/GtkPrintJob.html +share/gtk-doc/html/gtk3/GtkPrintSettings.html +share/gtk-doc/html/gtk3/GtkPrintUnixDialog.html +share/gtk-doc/html/gtk3/GtkPrinter.html +share/gtk-doc/html/gtk3/GtkProgressBar.html +share/gtk-doc/html/gtk3/GtkRadioAction.html +share/gtk-doc/html/gtk3/GtkRadioButton.html +share/gtk-doc/html/gtk3/GtkRadioMenuItem.html +share/gtk-doc/html/gtk3/GtkRadioToolButton.html +share/gtk-doc/html/gtk3/GtkRange.html +share/gtk-doc/html/gtk3/GtkRecentAction.html +share/gtk-doc/html/gtk3/GtkRecentChooser.html +share/gtk-doc/html/gtk3/GtkRecentChooserDialog.html +share/gtk-doc/html/gtk3/GtkRecentChooserMenu.html +share/gtk-doc/html/gtk3/GtkRecentChooserWidget.html +share/gtk-doc/html/gtk3/GtkRecentFilter.html +share/gtk-doc/html/gtk3/GtkRecentManager.html +share/gtk-doc/html/gtk3/GtkScale.html +share/gtk-doc/html/gtk3/GtkScaleButton.html +share/gtk-doc/html/gtk3/GtkScrollable.html +share/gtk-doc/html/gtk3/GtkScrollbar.html +share/gtk-doc/html/gtk3/GtkScrolledWindow.html +share/gtk-doc/html/gtk3/GtkSeparator.html +share/gtk-doc/html/gtk3/GtkSeparatorMenuItem.html +share/gtk-doc/html/gtk3/GtkSeparatorToolItem.html +share/gtk-doc/html/gtk3/GtkSettings.html +share/gtk-doc/html/gtk3/GtkSizeGroup.html +share/gtk-doc/html/gtk3/GtkSocket.html +share/gtk-doc/html/gtk3/GtkSpinButton.html +share/gtk-doc/html/gtk3/GtkSpinner.html +share/gtk-doc/html/gtk3/GtkStatusIcon.html +share/gtk-doc/html/gtk3/GtkStatusbar.html +share/gtk-doc/html/gtk3/GtkStyle.html +share/gtk-doc/html/gtk3/GtkStyleContext.html +share/gtk-doc/html/gtk3/GtkStyleProvider.html +share/gtk-doc/html/gtk3/GtkSwitch.html +share/gtk-doc/html/gtk3/GtkTable.html +share/gtk-doc/html/gtk3/GtkTearoffMenuItem.html +share/gtk-doc/html/gtk3/GtkTextBuffer.html +share/gtk-doc/html/gtk3/GtkTextIter.html +share/gtk-doc/html/gtk3/GtkTextMark.html +share/gtk-doc/html/gtk3/GtkTextTag.html +share/gtk-doc/html/gtk3/GtkTextTagTable.html +share/gtk-doc/html/gtk3/GtkTextView.html +share/gtk-doc/html/gtk3/GtkThemingEngine.html +share/gtk-doc/html/gtk3/GtkToggleAction.html +share/gtk-doc/html/gtk3/GtkToggleButton.html +share/gtk-doc/html/gtk3/GtkToggleToolButton.html +share/gtk-doc/html/gtk3/GtkToolButton.html +share/gtk-doc/html/gtk3/GtkToolItem.html +share/gtk-doc/html/gtk3/GtkToolItemGroup.html +share/gtk-doc/html/gtk3/GtkToolPalette.html +share/gtk-doc/html/gtk3/GtkToolShell.html +share/gtk-doc/html/gtk3/GtkToolbar.html +share/gtk-doc/html/gtk3/GtkTooltip.html +share/gtk-doc/html/gtk3/GtkTreeModel.html +share/gtk-doc/html/gtk3/GtkTreeModelFilter.html +share/gtk-doc/html/gtk3/GtkTreeModelSort.html +share/gtk-doc/html/gtk3/GtkTreeSelection.html +share/gtk-doc/html/gtk3/GtkTreeSortable.html +share/gtk-doc/html/gtk3/GtkTreeStore.html +share/gtk-doc/html/gtk3/GtkTreeView.html +share/gtk-doc/html/gtk3/GtkTreeViewColumn.html +share/gtk-doc/html/gtk3/GtkUIManager.html +share/gtk-doc/html/gtk3/GtkVBox.html +share/gtk-doc/html/gtk3/GtkVButtonBox.html +share/gtk-doc/html/gtk3/GtkVPaned.html +share/gtk-doc/html/gtk3/GtkVScale.html +share/gtk-doc/html/gtk3/GtkVScrollbar.html +share/gtk-doc/html/gtk3/GtkVSeparator.html +share/gtk-doc/html/gtk3/GtkViewport.html +share/gtk-doc/html/gtk3/GtkVolumeButton.html +share/gtk-doc/html/gtk3/GtkWidget.html +share/gtk-doc/html/gtk3/GtkWindow.html +share/gtk-doc/html/gtk3/GtkWindowGroup.html +share/gtk-doc/html/gtk3/LayoutContainers.html +share/gtk-doc/html/gtk3/MenusAndCombos.html +share/gtk-doc/html/gtk3/MiscObjects.html +share/gtk-doc/html/gtk3/NumericEntry.html +share/gtk-doc/html/gtk3/Ornaments.html +share/gtk-doc/html/gtk3/PlugSocket.html +share/gtk-doc/html/gtk3/Printing.html +share/gtk-doc/html/gtk3/RecentDocuments.html +share/gtk-doc/html/gtk3/ScrollingWidgets.html +share/gtk-doc/html/gtk3/SelectorWidgets.html +share/gtk-doc/html/gtk3/TextWidget.html +share/gtk-doc/html/gtk3/TextWidgetObjects.html +share/gtk-doc/html/gtk3/TreeWidget.html +share/gtk-doc/html/gtk3/TreeWidgetObjects.html +share/gtk-doc/html/gtk3/WindowWidgets.html +share/gtk-doc/html/gtk3/aboutdialog.png +share/gtk-doc/html/gtk3/accel-label.png +share/gtk-doc/html/gtk3/annotation-glossary.html +share/gtk-doc/html/gtk3/api-index-3-0.html +share/gtk-doc/html/gtk3/api-index-deprecated.html +share/gtk-doc/html/gtk3/api-index-full.html +share/gtk-doc/html/gtk3/appchooserbutton.png +share/gtk-doc/html/gtk3/appchooserdialog.png +share/gtk-doc/html/gtk3/application-exit.png +share/gtk-doc/html/gtk3/arrows.png +share/gtk-doc/html/gtk3/assistant.png +share/gtk-doc/html/gtk3/background.png +share/gtk-doc/html/gtk3/border1.png +share/gtk-doc/html/gtk3/border2.png +share/gtk-doc/html/gtk3/border3.png +share/gtk-doc/html/gtk3/button.png +share/gtk-doc/html/gtk3/ch02.html +share/gtk-doc/html/gtk3/ch03.html +share/gtk-doc/html/gtk3/ch25s02.html +share/gtk-doc/html/gtk3/ch26s02.html +share/gtk-doc/html/gtk3/chap-drawing-model.html +share/gtk-doc/html/gtk3/check-button.png +share/gtk-doc/html/gtk3/checklist-gdkeventexpose-region.html +share/gtk-doc/html/gtk3/checklist-modifiers.html +share/gtk-doc/html/gtk3/checklist-named-icons.html +share/gtk-doc/html/gtk3/checks.png +share/gtk-doc/html/gtk3/color-button.png +share/gtk-doc/html/gtk3/colorsel.png +share/gtk-doc/html/gtk3/combo-box-entry.png +share/gtk-doc/html/gtk3/combo-box.png +share/gtk-doc/html/gtk3/dialog-error.png +share/gtk-doc/html/gtk3/dialog-information.png +share/gtk-doc/html/gtk3/dialog-password.png +share/gtk-doc/html/gtk3/dialog-question.png +share/gtk-doc/html/gtk3/dialog-warning.png +share/gtk-doc/html/gtk3/document-new.png +share/gtk-doc/html/gtk3/document-open.png +share/gtk-doc/html/gtk3/document-print-preview.png +share/gtk-doc/html/gtk3/document-print.png +share/gtk-doc/html/gtk3/document-properties.png +share/gtk-doc/html/gtk3/document-revert-ltr.png +share/gtk-doc/html/gtk3/document-revert-rtl.png +share/gtk-doc/html/gtk3/document-save-as.png +share/gtk-doc/html/gtk3/document-save.png +share/gtk-doc/html/gtk3/drawing.png +share/gtk-doc/html/gtk3/drive-harddisk.png +share/gtk-doc/html/gtk3/ease-in-out.png +share/gtk-doc/html/gtk3/ease-in.png +share/gtk-doc/html/gtk3/ease-out.png +share/gtk-doc/html/gtk3/ease.png +share/gtk-doc/html/gtk3/edit-clear.png +share/gtk-doc/html/gtk3/edit-copy.png +share/gtk-doc/html/gtk3/edit-cut.png +share/gtk-doc/html/gtk3/edit-delete.png +share/gtk-doc/html/gtk3/edit-find-replace.png +share/gtk-doc/html/gtk3/edit-find.png +share/gtk-doc/html/gtk3/edit-paste.png +share/gtk-doc/html/gtk3/edit-redo-ltr.png +share/gtk-doc/html/gtk3/edit-redo-rtl.png +share/gtk-doc/html/gtk3/edit-select-all.png +share/gtk-doc/html/gtk3/edit-undo-ltr.png +share/gtk-doc/html/gtk3/edit-undo-rtl.png +share/gtk-doc/html/gtk3/entry.png +share/gtk-doc/html/gtk3/expanders.png +share/gtk-doc/html/gtk3/extensions.png +share/gtk-doc/html/gtk3/figure-hierarchical-drawing.png +share/gtk-doc/html/gtk3/figure-windowed-label.png +share/gtk-doc/html/gtk3/file-button.png +share/gtk-doc/html/gtk3/filechooser.png +share/gtk-doc/html/gtk3/focus.png +share/gtk-doc/html/gtk3/folder.png +share/gtk-doc/html/gtk3/font-button.png +share/gtk-doc/html/gtk3/fontsel.png +share/gtk-doc/html/gtk3/format-indent-less-ltr.png +share/gtk-doc/html/gtk3/format-indent-less-rtl.png +share/gtk-doc/html/gtk3/format-indent-more-ltr.png +share/gtk-doc/html/gtk3/format-indent-more-rtl.png +share/gtk-doc/html/gtk3/format-justify-center.png +share/gtk-doc/html/gtk3/format-justify-fill.png +share/gtk-doc/html/gtk3/format-justify-left.png +share/gtk-doc/html/gtk3/format-justify-right.png +share/gtk-doc/html/gtk3/format-text-bold.png +share/gtk-doc/html/gtk3/format-text-italic.png +share/gtk-doc/html/gtk3/format-text-strikethrough.png +share/gtk-doc/html/gtk3/format-text-underline.png +share/gtk-doc/html/gtk3/frame-gap.png +share/gtk-doc/html/gtk3/frame.png +share/gtk-doc/html/gtk3/frames.png +share/gtk-doc/html/gtk3/glossary.html +share/gtk-doc/html/gtk3/go-bottom.png +share/gtk-doc/html/gtk3/go-down.png +share/gtk-doc/html/gtk3/go-first-ltr.png +share/gtk-doc/html/gtk3/go-first-rtl.png +share/gtk-doc/html/gtk3/go-home.png +share/gtk-doc/html/gtk3/go-jump-ltr.png +share/gtk-doc/html/gtk3/go-jump-rtl.png +share/gtk-doc/html/gtk3/go-last-ltr.png +share/gtk-doc/html/gtk3/go-last-rtl.png +share/gtk-doc/html/gtk3/go-next-ltr.png +share/gtk-doc/html/gtk3/go-next-rtl.png +share/gtk-doc/html/gtk3/go-previous-ltr.png +share/gtk-doc/html/gtk3/go-previous-rtl.png +share/gtk-doc/html/gtk3/go-top.png +share/gtk-doc/html/gtk3/go-up.png +share/gtk-doc/html/gtk3/gradient1.png +share/gtk-doc/html/gtk3/gradient2.png +share/gtk-doc/html/gtk3/gradient3.png +share/gtk-doc/html/gtk3/gradient4.png +share/gtk-doc/html/gtk3/grid-packing.png +share/gtk-doc/html/gtk3/gtk-apply.png +share/gtk-doc/html/gtk3/gtk-building.html +share/gtk-doc/html/gtk3/gtk-cancel.png +share/gtk-doc/html/gtk3/gtk-caps-lock-warning.png +share/gtk-doc/html/gtk3/gtk-color-picker.png +share/gtk-doc/html/gtk3/gtk-compiling.html +share/gtk-doc/html/gtk3/gtk-connect.png +share/gtk-doc/html/gtk3/gtk-convert.png +share/gtk-doc/html/gtk3/gtk-disconnect.png +share/gtk-doc/html/gtk3/gtk-dnd-multiple.png +share/gtk-doc/html/gtk3/gtk-dnd.png +share/gtk-doc/html/gtk3/gtk-edit.png +share/gtk-doc/html/gtk3/gtk-font.png +share/gtk-doc/html/gtk3/gtk-getting-started.html +share/gtk-doc/html/gtk3/gtk-index.png +share/gtk-doc/html/gtk3/gtk-migrating-2-to-3.html +share/gtk-doc/html/gtk3/gtk-migrating-GtkApplication.html +share/gtk-doc/html/gtk3/gtk-migrating-checklist.html +share/gtk-doc/html/gtk3/gtk-no.png +share/gtk-doc/html/gtk3/gtk-ok.png +share/gtk-doc/html/gtk3/gtk-orientation-landscape.png +share/gtk-doc/html/gtk3/gtk-orientation-portrait.png +share/gtk-doc/html/gtk3/gtk-orientation-reverse-landscape.png +share/gtk-doc/html/gtk3/gtk-orientation-reverse-portrait.png +share/gtk-doc/html/gtk3/gtk-osx.html +share/gtk-doc/html/gtk3/gtk-page-setup.png +share/gtk-doc/html/gtk3/gtk-preferences.png +share/gtk-doc/html/gtk3/gtk-query-immodules-3.0.html +share/gtk-doc/html/gtk3/gtk-question-index.html +share/gtk-doc/html/gtk3/gtk-resources.html +share/gtk-doc/html/gtk3/gtk-running.html +share/gtk-doc/html/gtk3/gtk-select-color.png +share/gtk-doc/html/gtk3/gtk-undelete-ltr.png +share/gtk-doc/html/gtk3/gtk-undelete-rtl.png +share/gtk-doc/html/gtk3/gtk-update-icon-cache.html +share/gtk-doc/html/gtk3/gtk-windows.html +share/gtk-doc/html/gtk3/gtk-x11.html +share/gtk-doc/html/gtk3/gtk-yes.png +share/gtk-doc/html/gtk3/gtk.html +share/gtk-doc/html/gtk3/gtk3-Accelerator-Maps.html +share/gtk-doc/html/gtk3/gtk3-Bindings.html +share/gtk-doc/html/gtk3/gtk3-Clipboards.html +share/gtk-doc/html/gtk3/gtk3-Drag-and-Drop.html +share/gtk-doc/html/gtk3/gtk3-Feature-Test-Macros.html +share/gtk-doc/html/gtk3/gtk3-Filesystem-utilities.html +share/gtk-doc/html/gtk3/gtk3-General.html +share/gtk-doc/html/gtk3/gtk3-GtkGradient.html +share/gtk-doc/html/gtk3/gtk3-GtkStyleProperties.html +share/gtk-doc/html/gtk3/gtk3-GtkSymbolicColor.html +share/gtk-doc/html/gtk3/gtk3-GtkTreeView-drag-and-drop.html +share/gtk-doc/html/gtk3/gtk3-GtkWidgetPath.html +share/gtk-doc/html/gtk3/gtk3-High-level-Printing-API.html +share/gtk-doc/html/gtk3/gtk3-Keyboard-Accelerators.html +share/gtk-doc/html/gtk3/gtk3-Orientable.html +share/gtk-doc/html/gtk3/gtk3-Resource-Files.html +share/gtk-doc/html/gtk3/gtk3-Selections.html +share/gtk-doc/html/gtk3/gtk3-Standard-Enumerations.html +share/gtk-doc/html/gtk3/gtk3-Stock-Items.html +share/gtk-doc/html/gtk3/gtk3-Testing.html +share/gtk-doc/html/gtk3/gtk3-Themeable-Stock-Images.html +share/gtk-doc/html/gtk3/gtk3-gtkcheckmenuitem.html +share/gtk-doc/html/gtk3/gtk3.devhelp +share/gtk-doc/html/gtk3/gtk3.devhelp2 +share/gtk-doc/html/gtk3/gtkbase.html +share/gtk-doc/html/gtk3/gtkobjects.html +share/gtk-doc/html/gtk3/handles.png +share/gtk-doc/html/gtk3/hello-world.png +share/gtk-doc/html/gtk3/help-about.png +share/gtk-doc/html/gtk3/help-contents.png +share/gtk-doc/html/gtk3/home.png +share/gtk-doc/html/gtk3/icon-view.png +share/gtk-doc/html/gtk3/image-missing.png +share/gtk-doc/html/gtk3/image.png +share/gtk-doc/html/gtk3/index.html +share/gtk-doc/html/gtk3/index.sgml +share/gtk-doc/html/gtk3/label.png +share/gtk-doc/html/gtk3/layout-btlr.png +share/gtk-doc/html/gtk3/layout-btrl.png +share/gtk-doc/html/gtk3/layout-lrbt.png +share/gtk-doc/html/gtk3/layout-lrtb.png +share/gtk-doc/html/gtk3/layout-rlbt.png +share/gtk-doc/html/gtk3/layout-rltb.png +share/gtk-doc/html/gtk3/layout-tblr.png +share/gtk-doc/html/gtk3/layout-tbrl.png +share/gtk-doc/html/gtk3/left.png +share/gtk-doc/html/gtk3/linear.png +share/gtk-doc/html/gtk3/link-button.png +share/gtk-doc/html/gtk3/list-add.png +share/gtk-doc/html/gtk3/list-and-tree.png +share/gtk-doc/html/gtk3/list-remove.png +share/gtk-doc/html/gtk3/media-floppy.png +share/gtk-doc/html/gtk3/media-optical.png +share/gtk-doc/html/gtk3/media-playback-pause.png +share/gtk-doc/html/gtk3/media-playback-start-ltr.png +share/gtk-doc/html/gtk3/media-playback-start-rtl.png +share/gtk-doc/html/gtk3/media-playback-stop.png +share/gtk-doc/html/gtk3/media-record.png +share/gtk-doc/html/gtk3/media-seek-backward-ltr.png +share/gtk-doc/html/gtk3/media-seek-backward-rtl.png +share/gtk-doc/html/gtk3/media-seek-forward-ltr.png +share/gtk-doc/html/gtk3/media-seek-forward-rtl.png +share/gtk-doc/html/gtk3/media-skip-backward-ltr.png +share/gtk-doc/html/gtk3/media-skip-backward-rtl.png +share/gtk-doc/html/gtk3/media-skip-forward-ltr.png +share/gtk-doc/html/gtk3/media-skip-forward-rtl.png +share/gtk-doc/html/gtk3/menubar.png +share/gtk-doc/html/gtk3/messagedialog.png +share/gtk-doc/html/gtk3/migrating.html +share/gtk-doc/html/gtk3/multiline-text.png +share/gtk-doc/html/gtk3/network-idle.png +share/gtk-doc/html/gtk3/notebook.png +share/gtk-doc/html/gtk3/numerableicon.png +share/gtk-doc/html/gtk3/numerableicon2.png +share/gtk-doc/html/gtk3/options.png +share/gtk-doc/html/gtk3/pagesetupdialog.png +share/gtk-doc/html/gtk3/panes.png +share/gtk-doc/html/gtk3/printdialog.png +share/gtk-doc/html/gtk3/printer-error.png +share/gtk-doc/html/gtk3/printer-info.png +share/gtk-doc/html/gtk3/printer-paused.png +share/gtk-doc/html/gtk3/printer-warning.png +share/gtk-doc/html/gtk3/process-stop.png +share/gtk-doc/html/gtk3/progressbar.png +share/gtk-doc/html/gtk3/pt06.html +share/gtk-doc/html/gtk3/radio-group.png +share/gtk-doc/html/gtk3/recentchooserdialog.png +share/gtk-doc/html/gtk3/right.png +share/gtk-doc/html/gtk3/scales.png +share/gtk-doc/html/gtk3/scrolledwindow.png +share/gtk-doc/html/gtk3/separator.png +share/gtk-doc/html/gtk3/slices.png +share/gtk-doc/html/gtk3/sliders.png +share/gtk-doc/html/gtk3/spinbutton.png +share/gtk-doc/html/gtk3/spinner.png +share/gtk-doc/html/gtk3/statusbar.png +share/gtk-doc/html/gtk3/style.css +share/gtk-doc/html/gtk3/switch.png +share/gtk-doc/html/gtk3/system-run.png +share/gtk-doc/html/gtk3/theming.html +share/gtk-doc/html/gtk3/toggle-button.png +share/gtk-doc/html/gtk3/toolbar.png +share/gtk-doc/html/gtk3/toolpalette.png +share/gtk-doc/html/gtk3/tools-check-spelling.png +share/gtk-doc/html/gtk3/tree-view-coordinates.png +share/gtk-doc/html/gtk3/up.png +share/gtk-doc/html/gtk3/view-fullscreen.png +share/gtk-doc/html/gtk3/view-refresh.png +share/gtk-doc/html/gtk3/view-restore.png +share/gtk-doc/html/gtk3/view-sort-ascending.png +share/gtk-doc/html/gtk3/view-sort-descending.png +share/gtk-doc/html/gtk3/volumebutton.png +share/gtk-doc/html/gtk3/window-close.png +share/gtk-doc/html/gtk3/window-default.png +share/gtk-doc/html/gtk3/window.png +share/gtk-doc/html/gtk3/zoom-fit-best.png +share/gtk-doc/html/gtk3/zoom-in.png +share/gtk-doc/html/gtk3/zoom-original.png +share/gtk-doc/html/gtk3/zoom-out.png +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@latin/LC_MESSAGES/gtk30-properties.mo +share/locale/be@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@valencia/LC_MESSAGES/gtk30-properties.mo +share/locale/ca@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@ije/LC_MESSAGES/gtk30-properties.mo +share/locale/sr@ije/LC_MESSAGES/gtk30.mo +share/locale/sr@latin/LC_MESSAGES/gtk30-properties.mo +share/locale/sr@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@cyrillic/LC_MESSAGES/gtk30-properties.mo +share/locale/uz@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 +@pkgdir lib/gtk-3.0/immodules +@pkgdir lib/gtk-3.0/3.0.0/filesystems diff --git a/x11/gtk3/buildlink3.mk b/x11/gtk3/buildlink3.mk new file mode 100644 index 00000000000..c34ad60cf9f --- /dev/null +++ b/x11/gtk3/buildlink3.mk @@ -0,0 +1,36 @@ +# $NetBSD: buildlink3.mk,v 1.1.1.1 2011/03/18 17:06:10 drochner Exp $ + +BUILDLINK_TREE+= gtk3 + +.if !defined(GTK3_BUILDLINK3_MK) +GTK3_BUILDLINK3_MK:= + +BUILDLINK_API_DEPENDS.gtk3+= gtk3+>=3.0.0 +BUILDLINK_ABI_DEPENDS.gtk3+= gtk3+>=3.0.0 +BUILDLINK_PKGSRCDIR.gtk3?= ../../x11/gtk3 + +.include "../../mk/bsd.fast.prefs.mk" + +pkgbase := gtk3 +.include "../../mk/pkg-build-options.mk" + +.include "../../devel/atk/buildlink3.mk" +.include "../../devel/gettext-lib/buildlink3.mk" +.include "../../devel/glib2/buildlink3.mk" +.include "../../devel/pango/buildlink3.mk" +.include "../../fonts/fontconfig/buildlink3.mk" +.include "../../graphics/cairo/buildlink3.mk" +.include "../../graphics/cairo-gobject/buildlink3.mk" +.include "../../graphics/freetype2/buildlink3.mk" +.include "../../graphics/gdk-pixbuf2/buildlink3.mk" +.if !empty(PKG_BUILD_OPTIONS.gtk3:Mx11) +.include "../../x11/libXcursor/buildlink3.mk" +.include "../../x11/libXft/buildlink3.mk" +.include "../../x11/libXrandr/buildlink3.mk" +.include "../../x11/libXinerama/buildlink3.mk" +.include "../../x11/libXi/buildlink3.mk" +.include "../../x11/libXcomposite/buildlink3.mk" +.endif +.endif # GTK3_BUILDLINK3_MK + +BUILDLINK_TREE+= -gtk3 diff --git a/x11/gtk3/distinfo b/x11/gtk3/distinfo new file mode 100644 index 00000000000..eef90649d71 --- /dev/null +++ b/x11/gtk3/distinfo @@ -0,0 +1,8 @@ +$NetBSD: distinfo,v 1.1.1.1 2011/03/18 17:06:08 drochner Exp $ + +SHA1 (gtk+-3.0.3.tar.bz2) = cb11c861a89805fdeb81f726c6f9396a3ce1fb29 +RMD160 (gtk+-3.0.3.tar.bz2) = 3c9991d011b51b62a0ee3b417bc415cae62b5c2a +Size (gtk+-3.0.3.tar.bz2) = 16804576 bytes +SHA1 (patch-ab) = 9c82cc60f3825d377a197c876fcc6faa379cbde3 +SHA1 (patch-af) = 36f1c0d736e495f7caea291f9f1d89ccbb688110 +SHA1 (patch-aj) = b7c5bc214987435762c88ab8b9438bda5ee6ddd5 diff --git a/x11/gtk3/files/immodules.tmpl b/x11/gtk3/files/immodules.tmpl new file mode 100644 index 00000000000..9a5fbc3b844 --- /dev/null +++ b/x11/gtk3/files/immodules.tmpl @@ -0,0 +1,22 @@ +# $NetBSD: immodules.tmpl,v 1.1.1.1 2011/03/18 17:06:10 drochner Exp $ +# +# Rebuild the GTK3 immodules database. +# + +GTK_IMMODULES_DB="@GTK_IMMODULES_DB@" +GTK_QUERY_IMMODULES="@GTK_QUERY_IMMODULES@" + +case ${STAGE} in +POST-INSTALL) + ${GTK_QUERY_IMMODULES} > ${GTK_IMMODULES_DB} + ;; +DEINSTALL) + [ "${PKGBASE}" = "gtk3+" ] && ${RM} -f ${GTK_IMMODULES_DB} + ;; +POST-DEINSTALL) + [ "${PKGBASE}" != "gtk3+" ] && \ + ${GTK_QUERY_IMMODULES} > ${GTK_IMMODULES_DB} + ;; +*) + ;; +esac diff --git a/x11/gtk3/modules.mk b/x11/gtk3/modules.mk new file mode 100644 index 00000000000..16db9ce205c --- /dev/null +++ b/x11/gtk3/modules.mk @@ -0,0 +1,35 @@ +# $NetBSD: modules.mk,v 1.1.1.1 2011/03/18 17:06:10 drochner Exp $ +# +# This Makefile fragment is intended to be included by packages that install +# GTK3 modules. It takes care of rebuilding the corresponding databases at +# (de)installation time. +# +# The following variables can be defined: +# GTK3_IMMODULES - Set to YES if the package installs immodules. +# + +.if !defined(GTK3_MODULES_MK) +GTK3_MODULES_MK= # defined + +GTK_QUERY_IMMODULES= ${BUILDLINK_PREFIX.gtk3}/bin/gtk-query-immodules-3.0 + +.if defined(_BUILDING_GTK3) +BUILDLINK_PREFIX.gtk3= ${PREFIX} +GTK3_IMMODULES= YES +.endif + +.if defined(GTK3_IMMODULES) && !empty(GTK3_IMMODULES:M[Yy][Ee][Ss]) +FILES_SUBST+= GTK_IMMODULES_DB=${GTK_IMMODULES_DB:Q} +FILES_SUBST+= GTK_QUERY_IMMODULES=${GTK_QUERY_IMMODULES:Q} +GTK_IMMODULES_DB= ${BUILDLINK_PREFIX.gtk3}/libdata/gtk-3.0/gtk.immodules +INSTALL_TEMPLATES+= ../../x11/gtk3/files/immodules.tmpl +DEINSTALL_TEMPLATES+= ../../x11/gtk3/files/immodules.tmpl +.endif + +PRINT_PLIST_AWK+= /^libdata\/gtk-3.0/ { next; } + +.if !defined(_BUILDING_GTK3) +. include "../../x11/gtk3/buildlink3.mk" +.endif + +.endif # GTK3_MODULES_MK diff --git a/x11/gtk3/options.mk b/x11/gtk3/options.mk new file mode 100644 index 00000000000..4d1a9ef70f0 --- /dev/null +++ b/x11/gtk3/options.mk @@ -0,0 +1,55 @@ +# $NetBSD: options.mk,v 1.1.1.1 2011/03/18 17:06:10 drochner Exp $ + +PKG_OPTIONS_VAR= PKG_OPTIONS.gtk3 +PKG_SUPPORTED_OPTIONS= cups debug +PKG_OPTIONS_REQUIRED_GROUPS= gdk-target +PKG_OPTIONS_GROUP.gdk-target= x11 +.if exists(/System/Library/Frameworks/Quartz.framework) +PKG_OPTIONS_GROUP.gdk-target+= quartz +.endif +PKG_SUGGESTED_OPTIONS= x11 + +.include "../../mk/bsd.options.mk" + +PLIST_VARS+= cups +.if !empty(PKG_OPTIONS:Mcups) +.include "../../print/cups/buildlink3.mk" +PLIST.cups= yes +.else +CONFIGURE_ENV+= ac_cv_path_CUPS_CONFIG=no +.endif + +.if !empty(PKG_OPTIONS:Mdebug) +CONFIGURE_ARGS+= --enable-debug=yes +.endif + +### +### GDK target +### +PLIST_VARS+= quartz x11 +.if !empty(PKG_OPTIONS:Mquartz) +CONFIGURE_ARGS+= --without-x +CONFIGURE_ARGS+= --with-gdktarget=quartz +PLIST.quartz= yes +.else +CONFIGURE_ARGS+= --with-xinput=xfree +CONFIGURE_ENV+= ac_cv_header_X11_extensions_Xinerama_h=no +CONFIGURE_ENV+= ac_cv_lib_Xinerama_XineramaQueryExtension=no +PLIST.x11= yes + +BUILDLINK_API_DEPENDS.Xft2+= Xft2>=2.1.2nb2 + +.include "../../x11/libX11/buildlink3.mk" +.include "../../x11/libXcursor/buildlink3.mk" +.include "../../x11/libXft/buildlink3.mk" +.include "../../x11/libXfixes/buildlink3.mk" +.include "../../x11/libXinerama/buildlink3.mk" +.include "../../x11/libXi/buildlink3.mk" +.include "../../x11/libXrandr/buildlink3.mk" +.include "../../x11/libXrender/buildlink3.mk" +.include "../../x11/libXt/buildlink3.mk" +.include "../../x11/xextproto/buildlink3.mk" +.include "../../x11/libXext/buildlink3.mk" +.include "../../x11/libXcomposite/buildlink3.mk" + +.endif diff --git a/x11/gtk3/patches/patch-ab b/x11/gtk3/patches/patch-ab new file mode 100644 index 00000000000..8a3e797ee67 --- /dev/null +++ b/x11/gtk3/patches/patch-ab @@ -0,0 +1,20 @@ +$NetBSD: patch-ab,v 1.1.1.1 2011/03/18 17:06:10 drochner Exp $ + +http://mail.gnome.org/archives/gtk-devel-list/2010-March/msg00113.html + +--- gtk/gtkentry.c.orig 2010-05-02 03:14:28.000000000 +0000 ++++ gtk/gtkentry.c +@@ -6712,8 +6712,11 @@ gtk_entry_set_buffer (GtkEntry *en + g_object_notify (obj, "invisible-char-set"); + g_object_thaw_notify (obj); + +- gtk_editable_set_position (GTK_EDITABLE (entry), 0); +- gtk_entry_recompute (entry); ++ if (priv->buffer) ++ { ++ gtk_editable_set_position (GTK_EDITABLE (entry), 0); ++ gtk_entry_recompute (entry); ++ } + } + + /** diff --git a/x11/gtk3/patches/patch-af b/x11/gtk3/patches/patch-af new file mode 100644 index 00000000000..39b00f9024d --- /dev/null +++ b/x11/gtk3/patches/patch-af @@ -0,0 +1,58 @@ +$NetBSD: patch-af,v 1.1.1.1 2011/03/18 17:06:10 drochner Exp $ + +--- configure.orig 2011-03-14 16:33:02.000000000 +0000 ++++ configure +@@ -18725,7 +18725,7 @@ GDK_WINDOWING= + 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" +@@ -18738,7 +18738,7 @@ if test "x$enable_x11_backend" == xyes; + #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" +@@ -18765,7 +18765,7 @@ fi + + 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 +@@ -21503,7 +21503,7 @@ GTK_DEP_PACKAGES_FOR_X= + 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 + + # +@@ -21765,7 +21765,7 @@ _ACEOF + if ac_fn_c_try_link "$LINENO"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 + $as_echo "no" >&6; } +- X_LIBS="$X_LIBS -R$x_libraries" ++ X_LIBS="$X_LIBS ${COMPILER_RPATH_FLAG}$x_libraries" + else + LIBS="$ac_xsave_LIBS -R $x_libraries" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +@@ -22849,7 +22849,7 @@ rm -f core conftest.err conftest.$ac_obj + 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= diff --git a/x11/gtk3/patches/patch-aj b/x11/gtk3/patches/patch-aj new file mode 100644 index 00000000000..e1d19618a09 --- /dev/null +++ b/x11/gtk3/patches/patch-aj @@ -0,0 +1,13 @@ +$NetBSD: patch-aj,v 1.1.1.1 2011/03/18 17:06:10 drochner Exp $ + +--- Makefile.in.orig 2011-03-14 16:33:16.000000000 +0000 ++++ Makefile.in +@@ -419,7 +419,7 @@ XVFB_START = \ + || { 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 + SUBDIRS = po po-properties $(SRC_SUBDIRS) docs m4macros build + ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} + MAINTAINERCLEANFILES = \ -- cgit v1.2.3