# HG changeset patch # User Niveditha Rau # Date 1465739641 25200 # Node ID 1f0767d254fea626703816f27ac4dc5b6902009b # Parent 4761a444c624543fe6d4a85a07b2be7f9b4c662b 23245320 Move gtk+-3 to Userland and update to 3.18.0 PSARC/2016/320 GTK+3 diff -r 4761a444c624 -r 1f0767d254fe components/gnome/gtk3/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/components/gnome/gtk3/Makefile Sun Jun 12 06:54:01 2016 -0700 @@ -0,0 +1,166 @@ +# +# CDDL HEADER START +# +# The contents of this file are subject to the terms of the +# Common Development and Distribution License (the "License"). +# You may not use this file except in compliance with the License. +# +# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE +# or http://www.opensolaris.org/os/licensing. +# See the License for the specific language governing permissions +# and limitations under the License. +# +# When distributing Covered Code, include this CDDL HEADER in each +# file and include the License file at usr/src/OPENSOLARIS.LICENSE. +# If applicable, add the following below this CDDL HEADER, with the +# fields enclosed by brackets "[]" replaced with your own identifying +# information: Portions Copyright [yyyy] [name of copyright owner] +# +# CDDL HEADER END +# + +# +# Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved. +# + +BUILD_BITS = 32_and_64 +# All components using gobject-introspection must be built with gcc as +# gobject-introspection does not produce correct results when using Studio. +COMPILER = gcc +include ../../../make-rules/shared-macros.mk + +COMPONENT_NAME= gtk3 +COMPONENT_VERSION= 3.18.0 +COMPONENT_PROJECT_URL= https://wiki.gnome.org/Projects/GTK+ +COMPONENT_SRC= gtk+-$(COMPONENT_VERSION) +COMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.xz +COMPONENT_ARCHIVE_HASH= \ + sha256:7fb8ae257403317d3852bad28d064d35f67e978b1fed8b71d5997e87204271b9 +COMPONENT_ARCHIVE_URL= https://download.gnome.org/sources/gtk+/3.18/$(COMPONENT_ARCHIVE) +COMPONENT_BUGDB= gnome/gtk+ + +TPNO= 24779 + +ETCDIR.64="$(ETCDIR)/$(MACH64)" + +# Enable tests once all dependencies are install on the build server +TEST_TARGET = $(SKIP_TEST) + +# Needs gobject-introspection, not available on S11. +ifeq ($(BUILD_TYPE), evaluation) +BUILD_32_and_64= +INSTALL_32_and_64= +PUBLISH_STAMP= +endif + +include $(WS_MAKE_RULES)/gnome-component.mk + +# Uses isinf, etc. only available in c99 and newer. The GNU variant is chosen +# due to use of M_PI, etc. dropped in C99 and newer. +CFLAGS.gcc += -std=gnu11 + +# 32-bit gcc builds cause segfaults in gtk3; see bug 21393975. +gcc_OPT.i386.32 = -O2 + +# Generate and install architecture-specific configuration files. +PROTOETCGTKDIR.32= $(PROTO_DIR)/$(ETCDIR.32)/gtk-3.0 +PROTOETCGTKDIR.64= $(PROTO_DIR)/$(ETCDIR.64)/gtk-3.0 +PROTOETCIMMCONF.32= $(PROTOETCGTKDIR.32)/gtk.immodules +PROTOETCIMMCONF.64= $(PROTOETCGTKDIR.64)/gtk.immodules + +$(PROTOETCIMMCONF.32): + $(MKDIR) $(PROTOETCGTKDIR.32); \ + LD_LIBRARY_PATH=$(PROTO_DIR)/$(USRLIB.32) \ + $(PROTOUSRBINDIR)/gtk-query-immodules-3.0 \ + $(PROTOUSRLIBDIR)/gtk-3.0/*/immodules/*.so | \ + $(GSED) -e "s#$(PROTO_DIR)/##" > $(PROTOETCIMMCONF.32) + +$(PROTOETCIMMCONF.64): + $(MKDIR) $(PROTOETCGTKDIR.64); \ + LD_LIBRARY_PATH=$(PROTO_DIR)/$(USRLIB.64) \ + $(PROTOUSRBINDIR64)/gtk-query-immodules-3.0 \ + $(PROTOUSRLIBDIR64)/gtk-3.0/*/immodules/*.so | \ + $(GSED) -e "s#$(PROTO_DIR)/##" > $(PROTOETCIMMCONF.64) + +install: $(PROTOETCIMMCONF.32) $(PROTOETCIMMCONF.64) + +CONFIGURE_ENV += PATH=$(GNUBIN):$(PATH) +CONFIGURE_OPTIONS += --enable-cloudprint +# Required for other components. +CONFIGURE_OPTIONS += --enable-introspection +CONFIGURE_OPTIONS += --enable-libcanberra +# Generate man pages +CONFIGURE_OPTIONS += --enable-man +CONFIGURE_OPTIONS += --with-x + +# Delete this when build servers are installed with an updated at-spi2-atk +ATK_BASE = $(WS_COMPONENTS)/gnome/at-spi2-atk/build/prototype/$(MACH) +PKG_CONFIG_PATHS.32 += $(ATK_BASE)/usr/lib/pkgconfig/ +PKG_CONFIG_PATHS.64 += $(ATK_BASE)/usr/lib/$(MACH64)/pkgconfig/ +PKG_CONFIG_PATHS += $(PKG_CONFIG_PATHS.$(BITS)) + +LD_OPTIONS.32 += -L $(ATK_BASE)/usr/lib +LD_OPTIONS.64 += -L $(ATK_BASE)/usr/lib/$(MACH64) +LD_OPTIONS += $(LD_OPTIONS.$(BITS)) + +CPPFLAGS += -I$(ATK_BASE)/usr/include/at-spi2-atk/2.0 + +REST_BASE = $(WS_COMPONENTS)/gnome/rest/build/prototype/$(MACH) +PKG_CONFIG_PATHS.32 += $(REST_BASE)/usr/lib/pkgconfig/ +PKG_CONFIG_PATHS.64 += $(REST_BASE)/usr/lib/$(MACH64)/pkgconfig/ +PKG_CONFIG_PATHS += $(PKG_CONFIG_PATHS.$(BITS)) + +LD_OPTIONS.32 += -L $(REST_BASE)/usr/lib +LD_OPTIONS.64 += -L $(REST_BASE)/usr/lib/$(MACH64) +LD_OPTIONS += $(LD_OPTIONS.$(BITS)) + +CPPFLAGS += -I$(REST_BASE)/usr/include/rest-0.7 + +# Work around pkgdepend bug which doesn't resolve dependencies from +# the local workspace repo. +DEPENDED += $(WS_TOP)/components/gnome/rest/build/manifest-$(MACH)-rest.depend +DEPENDED += $(WS_TOP)/components/gnome/at-spi2-atk/build/manifest-$(MACH)-at-spi2-atk.depend + +# Temporary until dependencies are all on build machines +REQUIRED_PACKAGES += $(shell $(GSED) -n 's/REQUIRED_PACKAGES +=//p' ../at-spi2-atk/Makefile) +REQUIRED_PACKAGES += $(shell $(GSED) -n 's/REQUIRED_PACKAGES +=//p' ../rest/Makefile) +#end Delete + +# Needed due to patch to configure.ac. +COMPONENT_PREP_ACTION += (cd $(@D); autoreconf -fiv); + +REQUIRED_PACKAGES += data/docbook/docbook-dtds +REQUIRED_PACKAGES += data/docbook/docbook-style-dsssl +REQUIRED_PACKAGES += data/docbook/docbook-style-xsl +REQUIRED_PACKAGES += developer/documentation-tool/gtk-doc +REQUIRED_PACKAGES += developer/gnu-indent +REQUIRED_PACKAGES += library/desktop/at-spi2-atk +REQUIRED_PACKAGES += library/desktop/atk +REQUIRED_PACKAGES += library/desktop/cairo +REQUIRED_PACKAGES += library/desktop/gdk-pixbuf +REQUIRED_PACKAGES += library/desktop/gobject/gobject-introspection +REQUIRED_PACKAGES += library/desktop/librest +REQUIRED_PACKAGES += library/desktop/pango +REQUIRED_PACKAGES += library/desktop/xdg/libcanberra +REQUIRED_PACKAGES += library/glib2 +REQUIRED_PACKAGES += library/json-glib +REQUIRED_PACKAGES += library/print/cups-libs +REQUIRED_PACKAGES += print/cups +REQUIRED_PACKAGES += runtime/perl-522 +REQUIRED_PACKAGES += runtime/python-27 +REQUIRED_PACKAGES += service/image/colord +REQUIRED_PACKAGES += system/library/fontconfig +REQUIRED_PACKAGES += system/library/freetype-2 +REQUIRED_PACKAGES += system/library/gcc/gcc-c-runtime +REQUIRED_PACKAGES += system/library/math +REQUIRED_PACKAGES += x11/library/libepoxy +REQUIRED_PACKAGES += x11/library/libx11 +REQUIRED_PACKAGES += x11/library/libxcomposite +REQUIRED_PACKAGES += x11/library/libxcursor +REQUIRED_PACKAGES += x11/library/libxdamage +REQUIRED_PACKAGES += x11/library/libxext +REQUIRED_PACKAGES += x11/library/libxfixes +REQUIRED_PACKAGES += x11/library/libxi +REQUIRED_PACKAGES += x11/library/libxinerama +REQUIRED_PACKAGES += x11/library/libxrandr +REQUIRED_PACKAGES += x11/library/libxrender diff -r 4761a444c624 -r 1f0767d254fe components/gnome/gtk3/depend.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/components/gnome/gtk3/depend.mk Sun Jun 12 06:54:01 2016 -0700 @@ -0,0 +1,1 @@ +gnome/gtk3: gnome/at-spi2-atk gnome/rest diff -r 4761a444c624 -r 1f0767d254fe components/gnome/gtk3/gtk3-backend-cloudprint.p5m --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/components/gnome/gtk3/gtk3-backend-cloudprint.p5m Sun Jun 12 06:54:01 2016 -0700 @@ -0,0 +1,40 @@ +# +# CDDL HEADER START +# +# The contents of this file are subject to the terms of the +# Common Development and Distribution License (the "License"). +# You may not use this file except in compliance with the License. +# +# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE +# or http://www.opensolaris.org/os/licensing. +# See the License for the specific language governing permissions +# and limitations under the License. +# +# When distributing Covered Code, include this CDDL HEADER in each +# file and include the License file at usr/src/OPENSOLARIS.LICENSE. +# If applicable, add the following below this CDDL HEADER, with the +# fields enclosed by brackets "[]" replaced with your own identifying +# information: Portions Copyright [yyyy] [name of copyright owner] +# +# CDDL HEADER END +# + +# +# Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. +# + +set name=pkg.fmri \ + value=pkg:/library/desktop/gtk3/gtk-backend-cloudprint@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION) +set name=pkg.summary \ + value="GTK+ 3.x - GIMP toolkit libraries - CloudPrint Print Backend" +set name=com.oracle.info.description value=gtk3 +set name=com.oracle.info.tpno value=$(TPNO) +set name=info.classification \ + value="org.opensolaris.category.2008:Desktop (GNOME)/Libraries" +set name=info.source-url value=$(COMPONENT_ARCHIVE_URL) +set name=info.upstream-url value=$(COMPONENT_PROJECT_URL) +set name=org.opensolaris.arc-caseid value=PSARC/2016/320 +set name=org.opensolaris.consolidation value=$(CONSOLIDATION) +file path=usr/lib/$(MACH64)/gtk-3.0/3.0.0/printbackends/libprintbackend-cloudprint.so +file path=usr/lib/gtk-3.0/3.0.0/printbackends/libprintbackend-cloudprint.so +license COPYING license=LGPLv2 diff -r 4761a444c624 -r 1f0767d254fe components/gnome/gtk3/gtk3-backend-cups.p5m --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/components/gnome/gtk3/gtk3-backend-cups.p5m Sun Jun 12 06:54:01 2016 -0700 @@ -0,0 +1,42 @@ +# +# CDDL HEADER START +# +# The contents of this file are subject to the terms of the +# Common Development and Distribution License (the "License"). +# You may not use this file except in compliance with the License. +# +# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE +# or http://www.opensolaris.org/os/licensing. +# See the License for the specific language governing permissions +# and limitations under the License. +# +# When distributing Covered Code, include this CDDL HEADER in each +# file and include the License file at usr/src/OPENSOLARIS.LICENSE. +# If applicable, add the following below this CDDL HEADER, with the +# fields enclosed by brackets "[]" replaced with your own identifying +# information: Portions Copyright [yyyy] [name of copyright owner] +# +# CDDL HEADER END +# + +# +# Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. +# + +set name=pkg.fmri \ + value=pkg:/library/desktop/gtk3/gtk-backend-cups@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION) +set name=pkg.summary \ + value="GTK+ 3.x - GIMP toolkit libraries - CUPS Print Backend" +# This package name conflicts with the gtk2 version of this package +set name=pkg.linted.pkglint.manifest004 value=true +set name=com.oracle.info.description value=gtk3 +set name=com.oracle.info.tpno value=$(TPNO) +set name=info.classification \ + value="org.opensolaris.category.2008:Desktop (GNOME)/Libraries" +set name=info.source-url value=$(COMPONENT_ARCHIVE_URL) +set name=info.upstream-url value=$(COMPONENT_PROJECT_URL) +set name=org.opensolaris.arc-caseid value=PSARC/2016/320 +set name=org.opensolaris.consolidation value=$(CONSOLIDATION) +file path=usr/lib/$(MACH64)/gtk-3.0/3.0.0/printbackends/libprintbackend-cups.so +file path=usr/lib/gtk-3.0/3.0.0/printbackends/libprintbackend-cups.so +license COPYING license=LGPLv2 diff -r 4761a444c624 -r 1f0767d254fe components/gnome/gtk3/gtk3.p5m --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/components/gnome/gtk3/gtk3.p5m Sun Jun 12 06:54:01 2016 -0700 @@ -0,0 +1,781 @@ +# +# CDDL HEADER START +# +# The contents of this file are subject to the terms of the +# Common Development and Distribution License (the "License"). +# You may not use this file except in compliance with the License. +# +# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE +# or http://www.opensolaris.org/os/licensing. +# See the License for the specific language governing permissions +# and limitations under the License. +# +# When distributing Covered Code, include this CDDL HEADER in each +# file and include the License file at usr/src/OPENSOLARIS.LICENSE. +# If applicable, add the following below this CDDL HEADER, with the +# fields enclosed by brackets "[]" replaced with your own identifying +# information: Portions Copyright [yyyy] [name of copyright owner] +# +# CDDL HEADER END +# + +# +# Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. +# + + \ + default mangler.man.stability "pass-through volatile"> +set name=pkg.fmri \ + value=pkg:/library/desktop/gtk3@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION) +set name=pkg.summary \ + value="GTK+, or the GIMP Toolkit, is a multi-platform toolkit for creating graphical user interfaces" +set name=pkg.description \ + value="GTK+, or the GIMP Toolkit, 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." +set name=com.oracle.info.description value=gtk3 +set name=com.oracle.info.tpno value=$(TPNO) +set name=info.classification \ + value="org.opensolaris.category.2008:Desktop (GNOME)/Libraries" +set name=info.source-url value=$(COMPONENT_ARCHIVE_URL) +set name=info.upstream-url value=$(COMPONENT_PROJECT_URL) +set name=org.opensolaris.arc-caseid value=PSARC/2016/320 +set name=org.opensolaris.consolidation value=$(CONSOLIDATION) +file path=etc/$(MACH64)/gtk-3.0/gtk.immodules \ + original_name=SUNWgtk3:etc/$(MACH64)/gtk-3.0/gtk.immodules preserve=true +file path=etc/$(MACH64)/gtk-3.0/im-multipress.conf \ + original_name=SUNWgtk3:etc/$(MACH64)/gtk-3.0/im-multipress.conf \ + preserve=true +file path=etc/gtk-3.0/gtk.immodules \ + original_name=SUNWgtk3:etc/gtk-3.0/gtk.immodules preserve=true +file path=etc/gtk-3.0/im-multipress.conf \ + original_name=SUNWgtk3:etc/gtk-3.0/im-multipress.conf preserve=true +file path=usr/bin/$(MACH64)/gtk-encode-symbolic-svg +file path=usr/bin/$(MACH64)/gtk-launch +file path=usr/bin/$(MACH64)/gtk-query-immodules-3.0 +file path=usr/bin/$(MACH64)/gtk3-demo +file path=usr/bin/$(MACH64)/gtk3-demo-application +file path=usr/bin/$(MACH64)/gtk3-icon-browser +file path=usr/bin/$(MACH64)/gtk3-widget-factory +file path=usr/bin/gtk-encode-symbolic-svg +file path=usr/bin/gtk-launch +file path=usr/bin/gtk-query-immodules-3.0 +file usr/bin/$(MACH64)/gtk-update-icon-cache \ + path=usr/bin/gtk-update-icon-cache-3.0 +file path=usr/bin/gtk3-demo +file path=usr/bin/gtk3-demo-application +file path=usr/bin/gtk3-icon-browser +file path=usr/bin/gtk3-widget-factory +file path=usr/include/gail-3.0/libgail-util/gail-util.h +file path=usr/include/gail-3.0/libgail-util/gailmisc.h +file path=usr/include/gail-3.0/libgail-util/gailtextutil.h +file path=usr/include/gtk-3.0/gdk/deprecated/gdkcolor.h +file path=usr/include/gtk-3.0/gdk/gdk-autocleanup.h +file path=usr/include/gtk-3.0/gdk/gdk.h +file path=usr/include/gtk-3.0/gdk/gdkapplaunchcontext.h +file path=usr/include/gtk-3.0/gdk/gdkcairo.h +file path=usr/include/gtk-3.0/gdk/gdkconfig.h +file path=usr/include/gtk-3.0/gdk/gdkcursor.h +file path=usr/include/gtk-3.0/gdk/gdkdevice.h +file path=usr/include/gtk-3.0/gdk/gdkdevicemanager.h +file path=usr/include/gtk-3.0/gdk/gdkdisplay.h +file path=usr/include/gtk-3.0/gdk/gdkdisplaymanager.h +file path=usr/include/gtk-3.0/gdk/gdkdnd.h +file path=usr/include/gtk-3.0/gdk/gdkenumtypes.h +file path=usr/include/gtk-3.0/gdk/gdkevents.h +file path=usr/include/gtk-3.0/gdk/gdkframeclock.h +file path=usr/include/gtk-3.0/gdk/gdkframetimings.h +file path=usr/include/gtk-3.0/gdk/gdkglcontext.h +file path=usr/include/gtk-3.0/gdk/gdkkeys.h +file path=usr/include/gtk-3.0/gdk/gdkkeysyms-compat.h +file path=usr/include/gtk-3.0/gdk/gdkkeysyms.h +file path=usr/include/gtk-3.0/gdk/gdkmain.h +file path=usr/include/gtk-3.0/gdk/gdkpango.h +file path=usr/include/gtk-3.0/gdk/gdkpixbuf.h +file path=usr/include/gtk-3.0/gdk/gdkprivate.h +file path=usr/include/gtk-3.0/gdk/gdkproperty.h +file path=usr/include/gtk-3.0/gdk/gdkrectangle.h +file path=usr/include/gtk-3.0/gdk/gdkrgba.h +file path=usr/include/gtk-3.0/gdk/gdkscreen.h +file path=usr/include/gtk-3.0/gdk/gdkselection.h +file path=usr/include/gtk-3.0/gdk/gdktestutils.h +file path=usr/include/gtk-3.0/gdk/gdkthreads.h +file path=usr/include/gtk-3.0/gdk/gdktypes.h +file path=usr/include/gtk-3.0/gdk/gdkversionmacros.h +file path=usr/include/gtk-3.0/gdk/gdkvisual.h +file path=usr/include/gtk-3.0/gdk/gdkwindow.h +file path=usr/include/gtk-3.0/gdk/gdkx.h +file path=usr/include/gtk-3.0/gdk/x11/gdkx-autocleanups.h +file path=usr/include/gtk-3.0/gdk/x11/gdkx11applaunchcontext.h +file path=usr/include/gtk-3.0/gdk/x11/gdkx11cursor.h +file path=usr/include/gtk-3.0/gdk/x11/gdkx11device-core.h +file path=usr/include/gtk-3.0/gdk/x11/gdkx11device-xi2.h +file path=usr/include/gtk-3.0/gdk/x11/gdkx11device.h +file path=usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-core.h +file path=usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager-xi2.h +file path=usr/include/gtk-3.0/gdk/x11/gdkx11devicemanager.h +file path=usr/include/gtk-3.0/gdk/x11/gdkx11display.h +file path=usr/include/gtk-3.0/gdk/x11/gdkx11displaymanager.h +file path=usr/include/gtk-3.0/gdk/x11/gdkx11dnd.h +file path=usr/include/gtk-3.0/gdk/x11/gdkx11glcontext.h +file path=usr/include/gtk-3.0/gdk/x11/gdkx11keys.h +file path=usr/include/gtk-3.0/gdk/x11/gdkx11property.h +file path=usr/include/gtk-3.0/gdk/x11/gdkx11screen.h +file path=usr/include/gtk-3.0/gdk/x11/gdkx11selection.h +file path=usr/include/gtk-3.0/gdk/x11/gdkx11utils.h +file path=usr/include/gtk-3.0/gdk/x11/gdkx11visual.h +file path=usr/include/gtk-3.0/gdk/x11/gdkx11window.h +file path=usr/include/gtk-3.0/gtk/a11y/gtk-a11y-autocleanups.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkarrowaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkbooleancellaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkbuttonaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkcellaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkcellaccessibleparent.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkcheckmenuitemaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkcomboboxaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkcontaineraccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkcontainercellaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkentryaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkexpanderaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkflowboxaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkflowboxchildaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkframeaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkiconviewaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkimageaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkimagecellaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtklabelaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtklevelbaraccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtklinkbuttonaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtklistboxaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtklistboxrowaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtklockbuttonaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkmenuaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkmenubuttonaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkmenuitemaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkmenushellaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtknotebookaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtknotebookpageaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkpanedaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkpopoveraccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkprogressbaraccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkradiobuttonaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkradiomenuitemaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkrangeaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkrenderercellaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkscaleaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkscalebuttonaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkscrolledwindowaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkspinbuttonaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkspinneraccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkstatusbaraccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkswitchaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtktextcellaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtktextviewaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtktogglebuttonaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtktoplevelaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtktreeviewaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkwidgetaccessible.h +file path=usr/include/gtk-3.0/gtk/a11y/gtkwindowaccessible.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkaction.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkactiongroup.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkactivatable.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkalignment.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkarrow.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkcolorsel.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkfontsel.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkgradient.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkhandlebox.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkhbbox.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkhbox.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkhpaned.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkhscale.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkhseparator.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkhsv.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkiconfactory.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkmisc.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtknumerableicon.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkradioaction.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkrc.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkrecentaction.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkstatusicon.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkstock.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkstyle.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkstyleproperties.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtksymboliccolor.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtktable.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkthemingengine.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtktoggleaction.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkuimanager.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkvbbox.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkvbox.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkvpaned.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkvscale.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkvscrollbar.h +file path=usr/include/gtk-3.0/gtk/deprecated/gtkvseparator.h +file path=usr/include/gtk-3.0/gtk/gtk-a11y.h +file path=usr/include/gtk-3.0/gtk/gtk-autocleanups.h +file path=usr/include/gtk-3.0/gtk/gtk.h +file path=usr/include/gtk-3.0/gtk/gtkaboutdialog.h +file path=usr/include/gtk-3.0/gtk/gtkaccelgroup.h +file path=usr/include/gtk-3.0/gtk/gtkaccellabel.h +file path=usr/include/gtk-3.0/gtk/gtkaccelmap.h +file path=usr/include/gtk-3.0/gtk/gtkaccessible.h +file path=usr/include/gtk-3.0/gtk/gtkactionable.h +file path=usr/include/gtk-3.0/gtk/gtkactionbar.h +file path=usr/include/gtk-3.0/gtk/gtkadjustment.h +file path=usr/include/gtk-3.0/gtk/gtkappchooser.h +file path=usr/include/gtk-3.0/gtk/gtkappchooserbutton.h +file path=usr/include/gtk-3.0/gtk/gtkappchooserdialog.h +file path=usr/include/gtk-3.0/gtk/gtkappchooserwidget.h +file path=usr/include/gtk-3.0/gtk/gtkapplication.h +file path=usr/include/gtk-3.0/gtk/gtkapplicationwindow.h +file path=usr/include/gtk-3.0/gtk/gtkaspectframe.h +file path=usr/include/gtk-3.0/gtk/gtkassistant.h +file path=usr/include/gtk-3.0/gtk/gtkbbox.h +file path=usr/include/gtk-3.0/gtk/gtkbin.h +file path=usr/include/gtk-3.0/gtk/gtkbindings.h +file path=usr/include/gtk-3.0/gtk/gtkborder.h +file path=usr/include/gtk-3.0/gtk/gtkbox.h +file path=usr/include/gtk-3.0/gtk/gtkbuildable.h +file path=usr/include/gtk-3.0/gtk/gtkbuilder.h +file path=usr/include/gtk-3.0/gtk/gtkbutton.h +file path=usr/include/gtk-3.0/gtk/gtkcalendar.h +file path=usr/include/gtk-3.0/gtk/gtkcellarea.h +file path=usr/include/gtk-3.0/gtk/gtkcellareabox.h +file path=usr/include/gtk-3.0/gtk/gtkcellareacontext.h +file path=usr/include/gtk-3.0/gtk/gtkcelleditable.h +file path=usr/include/gtk-3.0/gtk/gtkcelllayout.h +file path=usr/include/gtk-3.0/gtk/gtkcellrenderer.h +file path=usr/include/gtk-3.0/gtk/gtkcellrendereraccel.h +file path=usr/include/gtk-3.0/gtk/gtkcellrenderercombo.h +file path=usr/include/gtk-3.0/gtk/gtkcellrendererpixbuf.h +file path=usr/include/gtk-3.0/gtk/gtkcellrendererprogress.h +file path=usr/include/gtk-3.0/gtk/gtkcellrendererspin.h +file path=usr/include/gtk-3.0/gtk/gtkcellrendererspinner.h +file path=usr/include/gtk-3.0/gtk/gtkcellrenderertext.h +file path=usr/include/gtk-3.0/gtk/gtkcellrenderertoggle.h +file path=usr/include/gtk-3.0/gtk/gtkcellview.h +file path=usr/include/gtk-3.0/gtk/gtkcheckbutton.h +file path=usr/include/gtk-3.0/gtk/gtkcheckmenuitem.h +file path=usr/include/gtk-3.0/gtk/gtkclipboard.h +file path=usr/include/gtk-3.0/gtk/gtkcolorbutton.h +file path=usr/include/gtk-3.0/gtk/gtkcolorchooser.h +file path=usr/include/gtk-3.0/gtk/gtkcolorchooserdialog.h +file path=usr/include/gtk-3.0/gtk/gtkcolorchooserwidget.h +file path=usr/include/gtk-3.0/gtk/gtkcolorutils.h +file path=usr/include/gtk-3.0/gtk/gtkcombobox.h +file path=usr/include/gtk-3.0/gtk/gtkcomboboxtext.h +file path=usr/include/gtk-3.0/gtk/gtkcontainer.h +file path=usr/include/gtk-3.0/gtk/gtkcssprovider.h +file path=usr/include/gtk-3.0/gtk/gtkcsssection.h +file path=usr/include/gtk-3.0/gtk/gtkdebug.h +file path=usr/include/gtk-3.0/gtk/gtkdialog.h +file path=usr/include/gtk-3.0/gtk/gtkdnd.h +file path=usr/include/gtk-3.0/gtk/gtkdrawingarea.h +file path=usr/include/gtk-3.0/gtk/gtkeditable.h +file path=usr/include/gtk-3.0/gtk/gtkentry.h +file path=usr/include/gtk-3.0/gtk/gtkentrybuffer.h +file path=usr/include/gtk-3.0/gtk/gtkentrycompletion.h +file path=usr/include/gtk-3.0/gtk/gtkenums.h +file path=usr/include/gtk-3.0/gtk/gtkeventbox.h +file path=usr/include/gtk-3.0/gtk/gtkeventcontroller.h +file path=usr/include/gtk-3.0/gtk/gtkexpander.h +file path=usr/include/gtk-3.0/gtk/gtkfilechooser.h +file path=usr/include/gtk-3.0/gtk/gtkfilechooserbutton.h +file path=usr/include/gtk-3.0/gtk/gtkfilechooserdialog.h +file path=usr/include/gtk-3.0/gtk/gtkfilechooserwidget.h +file path=usr/include/gtk-3.0/gtk/gtkfilefilter.h +file path=usr/include/gtk-3.0/gtk/gtkfixed.h +file path=usr/include/gtk-3.0/gtk/gtkflowbox.h +file path=usr/include/gtk-3.0/gtk/gtkfontbutton.h +file path=usr/include/gtk-3.0/gtk/gtkfontchooser.h +file path=usr/include/gtk-3.0/gtk/gtkfontchooserdialog.h +file path=usr/include/gtk-3.0/gtk/gtkfontchooserwidget.h +file path=usr/include/gtk-3.0/gtk/gtkframe.h +file path=usr/include/gtk-3.0/gtk/gtkgesture.h +file path=usr/include/gtk-3.0/gtk/gtkgesturedrag.h +file path=usr/include/gtk-3.0/gtk/gtkgesturelongpress.h +file path=usr/include/gtk-3.0/gtk/gtkgesturemultipress.h +file path=usr/include/gtk-3.0/gtk/gtkgesturepan.h +file path=usr/include/gtk-3.0/gtk/gtkgesturerotate.h +file path=usr/include/gtk-3.0/gtk/gtkgesturesingle.h +file path=usr/include/gtk-3.0/gtk/gtkgestureswipe.h +file path=usr/include/gtk-3.0/gtk/gtkgesturezoom.h +file path=usr/include/gtk-3.0/gtk/gtkglarea.h +file path=usr/include/gtk-3.0/gtk/gtkgrid.h +file path=usr/include/gtk-3.0/gtk/gtkheaderbar.h +file path=usr/include/gtk-3.0/gtk/gtkicontheme.h +file path=usr/include/gtk-3.0/gtk/gtkiconview.h +file path=usr/include/gtk-3.0/gtk/gtkimage.h +file path=usr/include/gtk-3.0/gtk/gtkimcontext.h +file path=usr/include/gtk-3.0/gtk/gtkimcontextinfo.h +file path=usr/include/gtk-3.0/gtk/gtkimcontextsimple.h +file path=usr/include/gtk-3.0/gtk/gtkimmodule.h +file path=usr/include/gtk-3.0/gtk/gtkimmulticontext.h +file path=usr/include/gtk-3.0/gtk/gtkinfobar.h +file path=usr/include/gtk-3.0/gtk/gtkinvisible.h +file path=usr/include/gtk-3.0/gtk/gtklabel.h +file path=usr/include/gtk-3.0/gtk/gtklayout.h +file path=usr/include/gtk-3.0/gtk/gtklevelbar.h +file path=usr/include/gtk-3.0/gtk/gtklinkbutton.h +file path=usr/include/gtk-3.0/gtk/gtklistbox.h +file path=usr/include/gtk-3.0/gtk/gtkliststore.h +file path=usr/include/gtk-3.0/gtk/gtklockbutton.h +file path=usr/include/gtk-3.0/gtk/gtkmain.h +file path=usr/include/gtk-3.0/gtk/gtkmenu.h +file path=usr/include/gtk-3.0/gtk/gtkmenubar.h +file path=usr/include/gtk-3.0/gtk/gtkmenubutton.h +file path=usr/include/gtk-3.0/gtk/gtkmenuitem.h +file path=usr/include/gtk-3.0/gtk/gtkmenushell.h +file path=usr/include/gtk-3.0/gtk/gtkmenutoolbutton.h +file path=usr/include/gtk-3.0/gtk/gtkmessagedialog.h +file path=usr/include/gtk-3.0/gtk/gtkmodelbutton.h +file path=usr/include/gtk-3.0/gtk/gtkmodules.h +file path=usr/include/gtk-3.0/gtk/gtkmountoperation.h +file path=usr/include/gtk-3.0/gtk/gtknotebook.h +file path=usr/include/gtk-3.0/gtk/gtkoffscreenwindow.h +file path=usr/include/gtk-3.0/gtk/gtkorientable.h +file path=usr/include/gtk-3.0/gtk/gtkoverlay.h +file path=usr/include/gtk-3.0/gtk/gtkpagesetup.h +file path=usr/include/gtk-3.0/gtk/gtkpaned.h +file path=usr/include/gtk-3.0/gtk/gtkpapersize.h +file path=usr/include/gtk-3.0/gtk/gtkplacessidebar.h +file path=usr/include/gtk-3.0/gtk/gtkplug.h +file path=usr/include/gtk-3.0/gtk/gtkpopover.h +file path=usr/include/gtk-3.0/gtk/gtkpopovermenu.h +file path=usr/include/gtk-3.0/gtk/gtkprintcontext.h +file path=usr/include/gtk-3.0/gtk/gtkprintoperation.h +file path=usr/include/gtk-3.0/gtk/gtkprintoperationpreview.h +file path=usr/include/gtk-3.0/gtk/gtkprintsettings.h +file path=usr/include/gtk-3.0/gtk/gtkprogressbar.h +file path=usr/include/gtk-3.0/gtk/gtkradiobutton.h +file path=usr/include/gtk-3.0/gtk/gtkradiomenuitem.h +file path=usr/include/gtk-3.0/gtk/gtkradiotoolbutton.h +file path=usr/include/gtk-3.0/gtk/gtkrange.h +file path=usr/include/gtk-3.0/gtk/gtkrecentchooser.h +file path=usr/include/gtk-3.0/gtk/gtkrecentchooserdialog.h +file path=usr/include/gtk-3.0/gtk/gtkrecentchoosermenu.h +file path=usr/include/gtk-3.0/gtk/gtkrecentchooserwidget.h +file path=usr/include/gtk-3.0/gtk/gtkrecentfilter.h +file path=usr/include/gtk-3.0/gtk/gtkrecentmanager.h +file path=usr/include/gtk-3.0/gtk/gtkrender.h +file path=usr/include/gtk-3.0/gtk/gtkrevealer.h +file path=usr/include/gtk-3.0/gtk/gtkscale.h +file path=usr/include/gtk-3.0/gtk/gtkscalebutton.h +file path=usr/include/gtk-3.0/gtk/gtkscrollable.h +file path=usr/include/gtk-3.0/gtk/gtkscrollbar.h +file path=usr/include/gtk-3.0/gtk/gtkscrolledwindow.h +file path=usr/include/gtk-3.0/gtk/gtksearchbar.h +file path=usr/include/gtk-3.0/gtk/gtksearchentry.h +file path=usr/include/gtk-3.0/gtk/gtkselection.h +file path=usr/include/gtk-3.0/gtk/gtkseparator.h +file path=usr/include/gtk-3.0/gtk/gtkseparatormenuitem.h +file path=usr/include/gtk-3.0/gtk/gtkseparatortoolitem.h +file path=usr/include/gtk-3.0/gtk/gtksettings.h +file path=usr/include/gtk-3.0/gtk/gtkshow.h +file path=usr/include/gtk-3.0/gtk/gtksizegroup.h +file path=usr/include/gtk-3.0/gtk/gtksizerequest.h +file path=usr/include/gtk-3.0/gtk/gtksocket.h +file path=usr/include/gtk-3.0/gtk/gtkspinbutton.h +file path=usr/include/gtk-3.0/gtk/gtkspinner.h +file path=usr/include/gtk-3.0/gtk/gtkstack.h +file path=usr/include/gtk-3.0/gtk/gtkstacksidebar.h +file path=usr/include/gtk-3.0/gtk/gtkstackswitcher.h +file path=usr/include/gtk-3.0/gtk/gtkstatusbar.h +file path=usr/include/gtk-3.0/gtk/gtkstylecontext.h +file path=usr/include/gtk-3.0/gtk/gtkstyleprovider.h +file path=usr/include/gtk-3.0/gtk/gtkswitch.h +file path=usr/include/gtk-3.0/gtk/gtktestutils.h +file path=usr/include/gtk-3.0/gtk/gtktextattributes.h +file path=usr/include/gtk-3.0/gtk/gtktextbuffer.h +file path=usr/include/gtk-3.0/gtk/gtktextbufferrichtext.h +file path=usr/include/gtk-3.0/gtk/gtktextchild.h +file path=usr/include/gtk-3.0/gtk/gtktextdisplay.h +file path=usr/include/gtk-3.0/gtk/gtktextiter.h +file path=usr/include/gtk-3.0/gtk/gtktextlayout.h +file path=usr/include/gtk-3.0/gtk/gtktextmark.h +file path=usr/include/gtk-3.0/gtk/gtktexttag.h +file path=usr/include/gtk-3.0/gtk/gtktexttagtable.h +file path=usr/include/gtk-3.0/gtk/gtktextview.h +file path=usr/include/gtk-3.0/gtk/gtktogglebutton.h +file path=usr/include/gtk-3.0/gtk/gtktoggletoolbutton.h +file path=usr/include/gtk-3.0/gtk/gtktoolbar.h +file path=usr/include/gtk-3.0/gtk/gtktoolbutton.h +file path=usr/include/gtk-3.0/gtk/gtktoolitem.h +file path=usr/include/gtk-3.0/gtk/gtktoolitemgroup.h +file path=usr/include/gtk-3.0/gtk/gtktoolpalette.h +file path=usr/include/gtk-3.0/gtk/gtktoolshell.h +file path=usr/include/gtk-3.0/gtk/gtktooltip.h +file path=usr/include/gtk-3.0/gtk/gtktreednd.h +file path=usr/include/gtk-3.0/gtk/gtktreemodel.h +file path=usr/include/gtk-3.0/gtk/gtktreemodelfilter.h +file path=usr/include/gtk-3.0/gtk/gtktreemodelsort.h +file path=usr/include/gtk-3.0/gtk/gtktreeselection.h +file path=usr/include/gtk-3.0/gtk/gtktreesortable.h +file path=usr/include/gtk-3.0/gtk/gtktreestore.h +file path=usr/include/gtk-3.0/gtk/gtktreeview.h +file path=usr/include/gtk-3.0/gtk/gtktreeviewcolumn.h +file path=usr/include/gtk-3.0/gtk/gtktypebuiltins.h +file path=usr/include/gtk-3.0/gtk/gtktypes.h +file path=usr/include/gtk-3.0/gtk/gtkversion.h +file path=usr/include/gtk-3.0/gtk/gtkviewport.h +file path=usr/include/gtk-3.0/gtk/gtkvolumebutton.h +file path=usr/include/gtk-3.0/gtk/gtkwidget.h +file path=usr/include/gtk-3.0/gtk/gtkwidgetpath.h +file path=usr/include/gtk-3.0/gtk/gtkwindow.h +file path=usr/include/gtk-3.0/gtk/gtkwindowgroup.h +file path=usr/include/gtk-3.0/gtk/gtkx-autocleanups.h +file path=usr/include/gtk-3.0/gtk/gtkx.h +file path=usr/include/gtk-3.0/unix-print/gtk/gtkpagesetupunixdialog.h +file path=usr/include/gtk-3.0/unix-print/gtk/gtkprinter.h +file path=usr/include/gtk-3.0/unix-print/gtk/gtkprintjob.h +file path=usr/include/gtk-3.0/unix-print/gtk/gtkprintunixdialog.h +file path=usr/include/gtk-3.0/unix-print/gtk/gtkunixprint-autocleanups.h +file path=usr/include/gtk-3.0/unix-print/gtk/gtkunixprint.h +file path=usr/lib/$(MACH64)/girepository-1.0/Gdk-3.0.typelib +file path=usr/lib/$(MACH64)/girepository-1.0/GdkX11-3.0.typelib +file path=usr/lib/$(MACH64)/girepository-1.0/Gtk-3.0.typelib +file path=usr/lib/$(MACH64)/gtk-3.0/3.0.0/immodules/im-am-et.so +file path=usr/lib/$(MACH64)/gtk-3.0/3.0.0/immodules/im-cedilla.so +file path=usr/lib/$(MACH64)/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.so +file path=usr/lib/$(MACH64)/gtk-3.0/3.0.0/immodules/im-inuktitut.so +file path=usr/lib/$(MACH64)/gtk-3.0/3.0.0/immodules/im-ipa.so +file path=usr/lib/$(MACH64)/gtk-3.0/3.0.0/immodules/im-multipress.so +file path=usr/lib/$(MACH64)/gtk-3.0/3.0.0/immodules/im-thai.so +file path=usr/lib/$(MACH64)/gtk-3.0/3.0.0/immodules/im-ti-er.so +file path=usr/lib/$(MACH64)/gtk-3.0/3.0.0/immodules/im-ti-et.so +file path=usr/lib/$(MACH64)/gtk-3.0/3.0.0/immodules/im-viqr.so +file path=usr/lib/$(MACH64)/gtk-3.0/3.0.0/immodules/im-xim.so +file path=usr/lib/$(MACH64)/gtk-3.0/3.0.0/printbackends/libprintbackend-file.so +file path=usr/lib/$(MACH64)/gtk-3.0/3.0.0/printbackends/libprintbackend-lpr.so +link path=usr/lib/$(MACH64)/libgailutil-3.so target=libgailutil-3.so.0.0.0 +link path=usr/lib/$(MACH64)/libgailutil-3.so.0 target=libgailutil-3.so.0.0.0 +file path=usr/lib/$(MACH64)/libgailutil-3.so.0.0.0 +link path=usr/lib/$(MACH64)/libgdk-3.so target=libgdk-3.so.0.1800.0 +link path=usr/lib/$(MACH64)/libgdk-3.so.0 target=libgdk-3.so.0.1800.0 +file path=usr/lib/$(MACH64)/libgdk-3.so.0.1800.0 +link path=usr/lib/$(MACH64)/libgtk-3.so target=libgtk-3.so.0.1800.0 +link path=usr/lib/$(MACH64)/libgtk-3.so.0 target=libgtk-3.so.0.1800.0 +file path=usr/lib/$(MACH64)/libgtk-3.so.0.1800.0 +file path=usr/lib/$(MACH64)/pkgconfig/gail-3.0.pc +file path=usr/lib/$(MACH64)/pkgconfig/gdk-3.0.pc +file path=usr/lib/$(MACH64)/pkgconfig/gdk-x11-3.0.pc +file path=usr/lib/$(MACH64)/pkgconfig/gtk+-3.0.pc +file path=usr/lib/$(MACH64)/pkgconfig/gtk+-unix-print-3.0.pc +file path=usr/lib/$(MACH64)/pkgconfig/gtk+-x11-3.0.pc +file path=usr/lib/girepository-1.0/Gdk-3.0.typelib +file path=usr/lib/girepository-1.0/GdkX11-3.0.typelib +file path=usr/lib/girepository-1.0/Gtk-3.0.typelib +file path=usr/lib/gtk-3.0/3.0.0/immodules/im-am-et.so +file path=usr/lib/gtk-3.0/3.0.0/immodules/im-cedilla.so +file path=usr/lib/gtk-3.0/3.0.0/immodules/im-cyrillic-translit.so +file path=usr/lib/gtk-3.0/3.0.0/immodules/im-inuktitut.so +file path=usr/lib/gtk-3.0/3.0.0/immodules/im-ipa.so +file path=usr/lib/gtk-3.0/3.0.0/immodules/im-multipress.so +file path=usr/lib/gtk-3.0/3.0.0/immodules/im-thai.so +file path=usr/lib/gtk-3.0/3.0.0/immodules/im-ti-er.so +file path=usr/lib/gtk-3.0/3.0.0/immodules/im-ti-et.so +file path=usr/lib/gtk-3.0/3.0.0/immodules/im-viqr.so +file path=usr/lib/gtk-3.0/3.0.0/immodules/im-xim.so +file path=usr/lib/gtk-3.0/3.0.0/printbackends/libprintbackend-file.so +file path=usr/lib/gtk-3.0/3.0.0/printbackends/libprintbackend-lpr.so +link path=usr/lib/libgailutil-3.so target=libgailutil-3.so.0.0.0 +link path=usr/lib/libgailutil-3.so.0 target=libgailutil-3.so.0.0.0 +file path=usr/lib/libgailutil-3.so.0.0.0 +link path=usr/lib/libgdk-3.so target=libgdk-3.so.0.1800.0 +link path=usr/lib/libgdk-3.so.0 target=libgdk-3.so.0.1800.0 +file path=usr/lib/libgdk-3.so.0.1800.0 +link path=usr/lib/libgtk-3.so target=libgtk-3.so.0.1800.0 +link path=usr/lib/libgtk-3.so.0 target=libgtk-3.so.0.1800.0 +file path=usr/lib/libgtk-3.so.0.1800.0 +file path=usr/lib/pkgconfig/gail-3.0.pc +file path=usr/lib/pkgconfig/gdk-3.0.pc +file path=usr/lib/pkgconfig/gdk-x11-3.0.pc +file path=usr/lib/pkgconfig/gtk+-3.0.pc +file path=usr/lib/pkgconfig/gtk+-unix-print-3.0.pc +file path=usr/lib/pkgconfig/gtk+-x11-3.0.pc +file path=usr/share/aclocal/gtk-3.0.m4 +file path=usr/share/applications/gtk3-demo.desktop +file path=usr/share/applications/gtk3-icon-browser.desktop +file path=usr/share/applications/gtk3-widget-factory.desktop +file path=usr/share/gir-1.0/Gdk-3.0.gir +file path=usr/share/gir-1.0/GdkX11-3.0.gir +file path=usr/share/gir-1.0/Gtk-3.0.gir +file path=usr/share/glib-2.0/schemas/org.gtk.Demo.gschema.xml +file path=usr/share/glib-2.0/schemas/org.gtk.Settings.ColorChooser.gschema.xml +file path=usr/share/glib-2.0/schemas/org.gtk.Settings.Debug.gschema.xml +file path=usr/share/glib-2.0/schemas/org.gtk.Settings.FileChooser.gschema.xml +file path=usr/share/glib-2.0/schemas/org.gtk.exampleapp.gschema.xml +file path=usr/share/gtk-3.0/gtkbuilder.rng +file path=usr/share/icons/hicolor/16x16/apps/gtk3-demo-symbolic.symbolic.png +file path=usr/share/icons/hicolor/16x16/apps/gtk3-demo.png +file path=usr/share/icons/hicolor/16x16/apps/gtk3-widget-factory-symbolic.symbolic.png +file path=usr/share/icons/hicolor/16x16/apps/gtk3-widget-factory.png +file path=usr/share/icons/hicolor/22x22/apps/gtk3-demo-symbolic.symbolic.png +file path=usr/share/icons/hicolor/22x22/apps/gtk3-demo.png +file path=usr/share/icons/hicolor/22x22/apps/gtk3-widget-factory-symbolic.symbolic.png +file path=usr/share/icons/hicolor/22x22/apps/gtk3-widget-factory.png +file path=usr/share/icons/hicolor/24x24/apps/gtk3-demo-symbolic.symbolic.png +file path=usr/share/icons/hicolor/24x24/apps/gtk3-demo.png +file path=usr/share/icons/hicolor/24x24/apps/gtk3-widget-factory-symbolic.symbolic.png +file path=usr/share/icons/hicolor/24x24/apps/gtk3-widget-factory.png +file path=usr/share/icons/hicolor/256x256/apps/gtk3-demo-symbolic.symbolic.png +file path=usr/share/icons/hicolor/256x256/apps/gtk3-demo.png +file path=usr/share/icons/hicolor/256x256/apps/gtk3-widget-factory-symbolic.symbolic.png +file path=usr/share/icons/hicolor/256x256/apps/gtk3-widget-factory.png +file path=usr/share/icons/hicolor/32x32/apps/gtk3-demo-symbolic.symbolic.png +file path=usr/share/icons/hicolor/32x32/apps/gtk3-demo.png +file path=usr/share/icons/hicolor/32x32/apps/gtk3-widget-factory-symbolic.symbolic.png +file path=usr/share/icons/hicolor/32x32/apps/gtk3-widget-factory.png +file path=usr/share/icons/hicolor/48x48/apps/gtk3-demo-symbolic.symbolic.png +file path=usr/share/icons/hicolor/48x48/apps/gtk3-demo.png +file path=usr/share/icons/hicolor/48x48/apps/gtk3-widget-factory-symbolic.symbolic.png +file path=usr/share/icons/hicolor/48x48/apps/gtk3-widget-factory.png +file path=usr/share/locale/af/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/af/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/am/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/am/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/an/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/an/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ang/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ang/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ar/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ar/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/as/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/as/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ast/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ast/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/az/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/az/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/az_IR/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/az_IR/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/be/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/be/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/be@latin/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/be@latin/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/bg/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/bg/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/bn/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/bn/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/bn_IN/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/bn_IN/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/br/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/br/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/bs/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/bs/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ca/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ca/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ca@valencia/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ca@valencia/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/crh/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/crh/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/cs/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/cs/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/cy/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/cy/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/da/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/da/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/de/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/de/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/dz/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/dz/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/el/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/el/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/en/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/en/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/en@shaw/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/en@shaw/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/en_CA/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/en_CA/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/en_GB/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/en_GB/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/eo/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/eo/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/es/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/es/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/et/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/et/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/eu/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/eu/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/fa/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/fa/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/fi/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/fi/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/fr/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/fr/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ga/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ga/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/gd/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/gd/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/gl/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/gl/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/gu/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/gu/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/he/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/he/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/hi/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/hi/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/hr/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/hr/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/hu/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/hu/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/hy/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/hy/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ia/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ia/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/id/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/id/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/io/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/io/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/is/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/is/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/it/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/it/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ja/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ja/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ka/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ka/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/kg/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/kg/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/kk/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/kk/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/km/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/km/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/kn/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/kn/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ko/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ko/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ku/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ku/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ky/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ky/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/lg/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/lg/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/li/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/li/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/lt/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/lt/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/lv/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/lv/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/mai/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/mai/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/mi/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/mi/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/mk/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/mk/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ml/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ml/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/mn/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/mn/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/mr/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/mr/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ms/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ms/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/my/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/my/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/nb/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/nb/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/nds/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/nds/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ne/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ne/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/nl/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/nl/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/nn/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/nn/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/nso/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/nso/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/oc/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/oc/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/or/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/or/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/pa/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/pa/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/pl/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/pl/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ps/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ps/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/pt/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/pt/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/pt_BR/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/pt_BR/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ro/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ro/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ru/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ru/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/rw/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/rw/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/si/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/si/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/sk/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/sk/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/sl/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/sl/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/sq/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/sq/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/sr/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/sr/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/sr@ije/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/sr@ije/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/sr@latin/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/sr@latin/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/sv/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/sv/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ta/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ta/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/te/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/te/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/tg/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/tg/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/th/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/th/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/tk/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/tk/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/tr/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/tr/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/tt/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/tt/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ug/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ug/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/uk/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/uk/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/ur/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/ur/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/uz/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/uz/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/uz@cyrillic/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/uz@cyrillic/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/vi/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/vi/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/wa/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/wa/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/xh/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/xh/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/yi/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/yi/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/zh_CN/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/zh_CN/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/zh_HK/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/zh_HK/LC_MESSAGES/gtk30.mo +file path=usr/share/locale/zh_TW/LC_MESSAGES/gtk30-properties.mo +file path=usr/share/locale/zh_TW/LC_MESSAGES/gtk30.mo +file path=usr/share/man/man1/broadwayd.1 +file path=usr/share/man/man1/gtk-encode-symbolic-svg.1 +file path=usr/share/man/man1/gtk-launch.1 +file path=usr/share/man/man1/gtk-query-immodules-3.0.1 +file usr/share/man/man1/gtk-update-icon-cache.1 \ + path=usr/share/man/man1/gtk-update-icon-cache-3.0.1 +file path=usr/share/man/man1/gtk3-demo-application.1 +file path=usr/share/man/man1/gtk3-demo.1 +file path=usr/share/man/man1/gtk3-icon-browser.1 +file path=usr/share/man/man1/gtk3-widget-factory.1 +file path=usr/share/themes/Default/gtk-3.0/gtk-keys.css +file path=usr/share/themes/Emacs/gtk-3.0/gtk-keys.css +license COPYING license=LGPLv2 + + +depend type=conditional \ + fmri=pkg:/library/desktop/gtk3/gtk-backend-cups@$(IPS_COMPONENT_VERSION) \ + predicate=library/print/cups-libs diff -r 4761a444c624 -r 1f0767d254fe components/gnome/gtk3/patches/01-libcanberra-configure.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/components/gnome/gtk3/patches/01-libcanberra-configure.patch Sun Jun 12 06:54:01 2016 -0700 @@ -0,0 +1,17 @@ +Likely not appropriate for upstream in current form; needs further +investigation to see if there is a fix needed to libtool. + +--- gtk+-3.16.3/configure.ac 2015-07-02 15:01:30.544630866 -0700 ++++ gtk+-3.16.3/configure.ac 2015-07-02 15:18:42.000041546 -0700 +@@ -1681,6 +1681,11 @@ + if test "$have_libcanberra" = "no"; then + AC_MSG_ERROR([--enable-libcanberra specified, but not available]) + fi ++ ++ # Ensure gtk-3 and gdk-3 are omitted so that no attempt is made to link ++ # to any system-installed versions causing a multiple inclusion build ++ # failure. ++ LIBCANBERRA_LIBS=$(echo "$LIBCANBERRA_LIBS" | $SED -e 's/-lgtk-3//' -e 's/-lgdk-3//') + fi + fi +