[Midnightbsd-cvs] mports [19278] trunk/x11-toolkits/gtk30: update gtk3 to 3.14.12
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Mon Jun 1 20:37:59 EDT 2015
Revision: 19278
http://svnweb.midnightbsd.org/mports/?rev=19278
Author: laffer1
Date: 2015-06-01 20:37:58 -0400 (Mon, 01 Jun 2015)
Log Message:
-----------
update gtk3 to 3.14.12
Modified Paths:
--------------
trunk/x11-toolkits/gtk30/Makefile
trunk/x11-toolkits/gtk30/distinfo
trunk/x11-toolkits/gtk30/files/patch-Makefile.in
trunk/x11-toolkits/gtk30/files/patch-docs_reference_gtk_Makefile.in
trunk/x11-toolkits/gtk30/pkg-plist
Modified: trunk/x11-toolkits/gtk30/Makefile
===================================================================
--- trunk/x11-toolkits/gtk30/Makefile 2015-06-02 00:37:42 UTC (rev 19277)
+++ trunk/x11-toolkits/gtk30/Makefile 2015-06-02 00:37:58 UTC (rev 19278)
@@ -1,11 +1,10 @@
# $MidnightBSD$
PORTNAME= gtk
-PORTVERSION= 3.8.8
-PORTREVISION?= 1
+PORTVERSION= 3.14.12
+PORTREVISION?= 0
CATEGORIES= x11-toolkits
-MASTER_SITES= GNOME
-MASTER_SITE_SUBDIR= sources/gtk+/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
+MASTER_SITES= GNOME/sources/gtk+/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
PKGNAMESUFFIX= 3
DISTNAME= gtk+-${PORTVERSION}
DIST_SUBDIR= gnome3
@@ -17,11 +16,16 @@
USES= tar:xz
-.if !defined(REFERENCE_PORT)
-BUILD_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/atk-bridge-2.0.pc:${PORTSDIR}/accessibility/at-spi2-atk
-RUN_DEPENDS+= ${LOCALBASE}/share/icons/hicolor/index.theme:${PORTSDIR}/misc/hicolor-icon-theme \
- ${LOCALBASE}/libdata/pkgconfig/atk-bridge-2.0.pc:${PORTSDIR}/accessibility/at-spi2-atk
+.if defined(REFERENCE_PORT)
+PORTSCOUT= ignore:1
+.else
+PORTSCOUT= limit:1,even
+BUILD_DEPENDS+= at-spi2-atk>=0:${PORTSDIR}/accessibility/at-spi2-atk
+RUN_DEPENDS+= hicolor-icon-theme>=0:${PORTSDIR}/misc/hicolor-icon-theme \
+ adwaita-icon-theme>=0:${PORTSDIR}/x11-themes/adwaita-icon-theme \
+ at-spi2-atk>=0:${PORTSDIR}/accessibility/at-spi2-atk
+
USE_PERL5= build
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
@@ -30,45 +34,39 @@
USES+= gettext gmake libtool pathfix perl5 pkgconfig
USE_XORG= xext xrender x11 xinerama xi xrandr xcursor xfixes xdamage \
xcomposite
-CONFIGURE_ARGS= --enable-gtk2-dependency --disable-packagekit
+CONFIGURE_ARGS= --enable-gtk2-dependency --disable-packagekit \
+ --enable-introspection
CPPFLAGS+= -I${LOCALBASE}/include -fno-omit-frame-pointer
-LDFLAGS+= -L${LOCALBASE}/lib
-CONFIGURE_ENV= INTROSPECTION_GIRDIR=`pkg-config --variable=girdir gobject-introspection-1.0`
+LIBS+= -L${LOCALBASE}/lib
+INSTALLS_ICONS= yes
INSTALL_TARGET= install-strip
-LIBVERSION= 0.800.8
+LIBVERSION= 0.1400.12
PLIST_SUB+= LIBVERSION=${LIBVERSION}
GLIB_SCHEMAS= org.gtk.Demo.gschema.xml \
org.gtk.Settings.ColorChooser.gschema.xml \
- org.gtk.Settings.FileChooser.gschema.xml
+ org.gtk.Settings.Debug.gschema.xml \
+ org.gtk.Settings.FileChooser.gschema.xml \
+ org.gtk.exampleapp.gschema.xml
-OPTIONS_DEFINE= CUPS COLORD DEBUG
+OPTIONS_DEFINE= CUPS CLOUDPRINT COLORD DEBUG
OPTIONS_DEFAULT=CUPS COLORD
+OPTIONS_SUB= yes
COLORD_DESC= Color profile support
+COLORD_LIB_DEPENDS= libcolord.so:${PORTSDIR}/graphics/colord
+COLORD_CONFIGURE_ENABLE=colord
+CUPS_LIB_DEPENDS= libcups.so:${PORTSDIR}/print/cups-client
+CUPS_CONFIGURE_ENABLE= cups
+CLOUDPRINT_DESC= Cloud printing support
+CLOUDPRINT_CONFIGURE_ENABLE= cloudprint
+CLOUDPRINT_LIB_DEPENDS= librest-0.7.so:${PORTSDIR}/devel/librest \
+ libjson-glib-1.0.so:${PORTSDIR}/devel/json-glib
+DEBUG_CONFIGURE_ENABLE=debug
+# needed for the exists() check, booo
.include <bsd.mport.options.mk>
-.if ${PORT_OPTIONS:MCUPS}
-LIB_DEPENDS+= libcups.so:${PORTSDIR}/print/cups-client
-CONFIGURE_ARGS+=--enable-cups=auto
-PLIST_SUB+= CUPS=""
-.else
-CONFIGURE_ARGS+=--disable-cups
-PLIST_SUB+= CUPS="@comment "
-.endif
-
-.if ${PORT_OPTIONS:MDEBUG}
-CONFIGURE_ARGS+= --enable-debug=yes
-.endif
-
-.if ${PORT_OPTIONS:MCOLORD}
-LIB_DEPENDS+= libcolord.so:${PORTSDIR}/graphics/colord
-CONFIGURE_ARGS+=--enable-colord
-.else
-CONFIGURE_ARGS+=--disable-colord
-.endif
-
post-patch:
@${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${GREP} -l lgmodule | \
${XARGS} ${REINPLACE_CMD} -e 's|-lgmodule|@GMODULE_LIBS@|g'
@@ -77,6 +75,8 @@
@${REINPLACE_CMD} -e 's|@LN_S@|${LN} -sf|' ${WRKSRC}/gtk/Makefile.in
@${REINPLACE_CMD} -e 's|file,cups|file,cups,lpr|' \
${WRKSRC}/gtk/Makefile.in
+ @${REINPLACE_CMD} -e 's|-DG_DISABLE_CHECKS||' \
+ ${WRKSRC}/configure
pre-configure:
.if !exists(${LOCALBASE}/libdata/pkgconfig/cairo-xlib.pc)
Modified: trunk/x11-toolkits/gtk30/distinfo
===================================================================
--- trunk/x11-toolkits/gtk30/distinfo 2015-06-02 00:37:42 UTC (rev 19277)
+++ trunk/x11-toolkits/gtk30/distinfo 2015-06-02 00:37:58 UTC (rev 19278)
@@ -1,2 +1,2 @@
-SHA256 (gnome3/gtk+-3.8.8.tar.xz) = d9299ab06e1e3feb19d16fc217de441ded0280eda433b718d9705024f7de19a6
-SIZE (gnome3/gtk+-3.8.8.tar.xz) = 13851660
+SHA256 (gnome3/gtk+-3.14.12.tar.xz) = 3aaf1f04b6393695a726b4bbe09ed9c9ddb0f779edc8238f803d5a4f10a2f549
+SIZE (gnome3/gtk+-3.14.12.tar.xz) = 15784084
Modified: trunk/x11-toolkits/gtk30/files/patch-Makefile.in
===================================================================
--- trunk/x11-toolkits/gtk30/files/patch-Makefile.in 2015-06-02 00:37:42 UTC (rev 19277)
+++ trunk/x11-toolkits/gtk30/files/patch-Makefile.in 2015-06-02 00:37:58 UTC (rev 19278)
@@ -1,11 +1,11 @@
---- Makefile.in.orig 2011-09-15 18:04:34.000000000 +0200
-+++ Makefile.in 2011-09-15 18:05:12.000000000 +0200
-@@ -422,7 +422,7 @@
+--- Makefile.in.orig 2014-10-14 15:48:07.903444240 +0200
++++ Makefile.in 2014-10-14 15:49:51.089555876 +0200
+@@ -540,7 +540,7 @@
|| { echo "Gtk+Tests:ERROR: Failed to start Xvfb environment for X11 target tests."; exit 1; } \
&& DISPLAY=:$$XID && export DISPLAY
--SRC_SUBDIRS = gdk gtk libgail-util modules demos tests perf examples
-+SRC_SUBDIRS = gdk gtk libgail-util modules demos perf examples
+-SRC_SUBDIRS = util gdk gtk libgail-util modules demos tests testsuite examples
++SRC_SUBDIRS = util gdk gtk libgail-util modules demos examples
SUBDIRS = po po-properties $(SRC_SUBDIRS) docs m4macros build
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
MAINTAINERCLEANFILES = \
Modified: trunk/x11-toolkits/gtk30/files/patch-docs_reference_gtk_Makefile.in
===================================================================
--- trunk/x11-toolkits/gtk30/files/patch-docs_reference_gtk_Makefile.in 2015-06-02 00:37:42 UTC (rev 19277)
+++ trunk/x11-toolkits/gtk30/files/patch-docs_reference_gtk_Makefile.in 2015-06-02 00:37:58 UTC (rev 19278)
@@ -1,10 +1,10 @@
---- docs/reference/gtk/Makefile.in.orig 2013-03-28 10:39:58.000000000 +0000
-+++ docs/reference/gtk/Makefile.in 2013-03-28 10:43:09.000000000 +0000
-@@ -852,7 +852,6 @@
+--- docs/reference/gtk/Makefile.in.orig 2014-10-14 15:50:07.675435846 +0200
++++ docs/reference/gtk/Makefile.in 2014-10-14 15:50:49.218431589 +0200
+@@ -820,7 +820,6 @@
########################################################################
man_MANS = \
gtk-query-immodules-3.0.1 \
- gtk-update-icon-cache.1 \
+ gtk-encode-symbolic-svg.1 \
gtk-launch.1 \
- broadwayd.1
-
+ gtk3-demo.1 \
Modified: trunk/x11-toolkits/gtk30/pkg-plist
===================================================================
--- trunk/x11-toolkits/gtk30/pkg-plist 2015-06-02 00:37:42 UTC (rev 19277)
+++ trunk/x11-toolkits/gtk30/pkg-plist 2015-06-02 00:37:58 UTC (rev 19278)
@@ -1,7 +1,9 @@
+bin/gtk-encode-symbolic-svg
bin/gtk-launch
bin/gtk-query-immodules-3.0
bin/gtk3-demo
bin/gtk3-demo-application
+bin/gtk3-icon-browser
bin/gtk3-widget-factory
etc/gtk-3.0/im-multipress.conf
include/gail-3.0/libgail-util/gail-util.h
@@ -10,7 +12,6 @@
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
@@ -70,6 +71,8 @@
include/gtk-3.0/gtk/a11y/gtkcontainercellaccessible.h
include/gtk-3.0/gtk/a11y/gtkentryaccessible.h
include/gtk-3.0/gtk/a11y/gtkexpanderaccessible.h
+include/gtk-3.0/gtk/a11y/gtkflowboxaccessible.h
+include/gtk-3.0/gtk/a11y/gtkflowboxchildaccessible.h
include/gtk-3.0/gtk/a11y/gtkframeaccessible.h
include/gtk-3.0/gtk/a11y/gtkiconviewaccessible.h
include/gtk-3.0/gtk/a11y/gtkimageaccessible.h
@@ -77,13 +80,17 @@
include/gtk-3.0/gtk/a11y/gtklabelaccessible.h
include/gtk-3.0/gtk/a11y/gtklevelbaraccessible.h
include/gtk-3.0/gtk/a11y/gtklinkbuttonaccessible.h
+include/gtk-3.0/gtk/a11y/gtklistboxaccessible.h
+include/gtk-3.0/gtk/a11y/gtklistboxrowaccessible.h
include/gtk-3.0/gtk/a11y/gtklockbuttonaccessible.h
include/gtk-3.0/gtk/a11y/gtkmenuaccessible.h
+include/gtk-3.0/gtk/a11y/gtkmenubuttonaccessible.h
include/gtk-3.0/gtk/a11y/gtkmenuitemaccessible.h
include/gtk-3.0/gtk/a11y/gtkmenushellaccessible.h
include/gtk-3.0/gtk/a11y/gtknotebookaccessible.h
include/gtk-3.0/gtk/a11y/gtknotebookpageaccessible.h
include/gtk-3.0/gtk/a11y/gtkpanedaccessible.h
+include/gtk-3.0/gtk/a11y/gtkpopoveraccessible.h
include/gtk-3.0/gtk/a11y/gtkprogressbaraccessible.h
include/gtk-3.0/gtk/a11y/gtkradiobuttonaccessible.h
include/gtk-3.0/gtk/a11y/gtkradiomenuitemaccessible.h
@@ -103,6 +110,12 @@
include/gtk-3.0/gtk/a11y/gtktreeviewaccessible.h
include/gtk-3.0/gtk/a11y/gtkwidgetaccessible.h
include/gtk-3.0/gtk/a11y/gtkwindowaccessible.h
+include/gtk-3.0/gdk/deprecated/gdkcolor.h
+include/gtk-3.0/gtk/deprecated/gtkaction.h
+include/gtk-3.0/gtk/deprecated/gtkactiongroup.h
+include/gtk-3.0/gtk/deprecated/gtkactivatable.h
+include/gtk-3.0/gtk/deprecated/gtkalignment.h
+include/gtk-3.0/gtk/deprecated/gtkarrow.h
include/gtk-3.0/gtk/deprecated/gtkcolorsel.h
include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h
include/gtk-3.0/gtk/deprecated/gtkfontsel.h
@@ -115,11 +128,22 @@
include/gtk-3.0/gtk/deprecated/gtkhscrollbar.h
include/gtk-3.0/gtk/deprecated/gtkhseparator.h
include/gtk-3.0/gtk/deprecated/gtkhsv.h
+include/gtk-3.0/gtk/deprecated/gtkiconfactory.h
+include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h
+include/gtk-3.0/gtk/deprecated/gtkmisc.h
+include/gtk-3.0/gtk/deprecated/gtknumerableicon.h
+include/gtk-3.0/gtk/deprecated/gtkradioaction.h
include/gtk-3.0/gtk/deprecated/gtkrc.h
+include/gtk-3.0/gtk/deprecated/gtkrecentaction.h
+include/gtk-3.0/gtk/deprecated/gtkstock.h
include/gtk-3.0/gtk/deprecated/gtkstyle.h
+include/gtk-3.0/gtk/deprecated/gtkstatusicon.h
include/gtk-3.0/gtk/deprecated/gtksymboliccolor.h
include/gtk-3.0/gtk/deprecated/gtktable.h
include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.h
+include/gtk-3.0/gtk/deprecated/gtkthemingengine.h
+include/gtk-3.0/gtk/deprecated/gtktoggleaction.h
+include/gtk-3.0/gtk/deprecated/gtkuimanager.h
include/gtk-3.0/gtk/deprecated/gtkvbbox.h
include/gtk-3.0/gtk/deprecated/gtkvbox.h
include/gtk-3.0/gtk/deprecated/gtkvpaned.h
@@ -133,12 +157,9 @@
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/gtkactionable.h
-include/gtk-3.0/gtk/gtkactiongroup.h
-include/gtk-3.0/gtk/gtkactivatable.h
+include/gtk-3.0/gtk/gtkactionbar.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
@@ -145,7 +166,6 @@
include/gtk-3.0/gtk/gtkappchooserwidget.h
include/gtk-3.0/gtk/gtkapplication.h
include/gtk-3.0/gtk/gtkapplicationwindow.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
@@ -195,6 +215,7 @@
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/gtkeventcontroller.h
include/gtk-3.0/gtk/gtkexpander.h
include/gtk-3.0/gtk/gtkfilechooser.h
include/gtk-3.0/gtk/gtkfilechooserbutton.h
@@ -202,17 +223,26 @@
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/gtkflowbox.h
include/gtk-3.0/gtk/gtkfontbutton.h
include/gtk-3.0/gtk/gtkfontchooser.h
include/gtk-3.0/gtk/gtkfontchooserdialog.h
include/gtk-3.0/gtk/gtkfontchooserwidget.h
include/gtk-3.0/gtk/gtkframe.h
+include/gtk-3.0/gtk/gtkgesture.h
+include/gtk-3.0/gtk/gtkgesturedrag.h
+include/gtk-3.0/gtk/gtkgesturelongpress.h
+include/gtk-3.0/gtk/gtkgesturemultipress.h
+include/gtk-3.0/gtk/gtkgesturepan.h
+include/gtk-3.0/gtk/gtkgesturerotate.h
+include/gtk-3.0/gtk/gtkgesturesingle.h
+include/gtk-3.0/gtk/gtkgestureswipe.h
+include/gtk-3.0/gtk/gtkgesturezoom.h
include/gtk-3.0/gtk/gtkgrid.h
-include/gtk-3.0/gtk/gtkiconfactory.h
+include/gtk-3.0/gtk/gtkheaderbar.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/gtkimcontextinfo.h
include/gtk-3.0/gtk/gtkimcontextsimple.h
@@ -224,6 +254,7 @@
include/gtk-3.0/gtk/gtklayout.h
include/gtk-3.0/gtk/gtklevelbar.h
include/gtk-3.0/gtk/gtklinkbutton.h
+include/gtk-3.0/gtk/gtklistbox.h
include/gtk-3.0/gtk/gtkliststore.h
include/gtk-3.0/gtk/gtklockbutton.h
include/gtk-3.0/gtk/gtkmain.h
@@ -234,11 +265,9 @@
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/gtkoverlay.h
@@ -245,18 +274,18 @@
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/gtkplacessidebar.h
include/gtk-3.0/gtk/gtkplug.h
+include/gtk-3.0/gtk/gtkpopover.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/gtkrecentaction.h
include/gtk-3.0/gtk/gtkrecentchooser.h
include/gtk-3.0/gtk/gtkrecentchooserdialog.h
include/gtk-3.0/gtk/gtkrecentchoosermenu.h
@@ -263,11 +292,13 @@
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/gtkrevealer.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/gtksearchbar.h
include/gtk-3.0/gtk/gtksearchentry.h
include/gtk-3.0/gtk/gtkselection.h
include/gtk-3.0/gtk/gtkseparator.h
@@ -281,8 +312,8 @@
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/gtkstack.h
+include/gtk-3.0/gtk/gtkstackswitcher.h
include/gtk-3.0/gtk/gtkstylecontext.h
include/gtk-3.0/gtk/gtkstyleproperties.h
include/gtk-3.0/gtk/gtkstyleprovider.h
@@ -299,8 +330,6 @@
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
@@ -321,7 +350,6 @@
include/gtk-3.0/gtk/gtktreeviewcolumn.h
include/gtk-3.0/gtk/gtktypebuiltins.h
include/gtk-3.0/gtk/gtktypes.h
-include/gtk-3.0/gtk/gtkuimanager.h
include/gtk-3.0/gtk/gtkversion.h
include/gtk-3.0/gtk/gtkviewport.h
include/gtk-3.0/gtk/gtkvolumebutton.h
@@ -328,6 +356,7 @@
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/gtkwindowgroup.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
@@ -337,43 +366,30 @@
lib/girepository-1.0/Gdk-3.0.typelib
lib/girepository-1.0/GdkX11-3.0.typelib
lib/girepository-1.0/Gtk-3.0.typelib
-lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-am-et.la
lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-am-et.so
-lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-cedilla.la
lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-cedilla.so
-lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-cyrillic-translit.la
lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-cyrillic-translit.so
-lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-inuktitut.la
lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-inuktitut.so
-lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-ipa.la
lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-ipa.so
-lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-multipress.la
lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-multipress.so
-lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-thai.la
lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-thai.so
-lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-ti-er.la
lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-ti-er.so
-lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-ti-et.la
lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-ti-et.so
-lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-viqr.la
lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-viqr.so
-lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-xim.la
lib/gtk-3.0/%%GTK3_VERSION%%/immodules/im-xim.so
-%%CUPS%%lib/gtk-3.0/%%GTK3_VERSION%%/printbackends/libprintbackend-cups.la
+%%CLOUDPRINT%%lib/gtk-3.0/%%GTK3_VERSION%%/printbackends/libprintbackend-cloudprint.so
%%CUPS%%lib/gtk-3.0/%%GTK3_VERSION%%/printbackends/libprintbackend-cups.so
-lib/gtk-3.0/%%GTK3_VERSION%%/printbackends/libprintbackend-file.la
lib/gtk-3.0/%%GTK3_VERSION%%/printbackends/libprintbackend-file.so
-lib/gtk-3.0/%%GTK3_VERSION%%/printbackends/libprintbackend-lpr.la
lib/gtk-3.0/%%GTK3_VERSION%%/printbackends/libprintbackend-lpr.so
-lib/libgailutil-3.la
lib/libgailutil-3.so
lib/libgailutil-3.so.0
-lib/libgdk-3.la
+lib/libgailutil-3.so.0.0.0
lib/libgdk-3.so
lib/libgdk-3.so.0
-lib/libgtk-3.la
+lib/libgdk-3.so.%%LIBVERSION%%
lib/libgtk-3.so
lib/libgtk-3.so.0
+lib/libgtk-3.so.%%LIBVERSION%%
libdata/pkgconfig/gail-3.0.pc
libdata/pkgconfig/gdk-3.0.pc
libdata/pkgconfig/gdk-x11-3.0.pc
@@ -382,10 +398,25 @@
libdata/pkgconfig/gtk+-x11-3.0.pc
man/man1/gtk-query-immodules-3.0.1.gz
share/aclocal/gtk-3.0.m4
+share/applications/gtk3-demo.desktop
+share/applications/gtk3-icon-browser.desktop
+share/applications/gtk3-widget-factory.desktop
share/gir-1.0/Gdk-3.0.gir
share/gir-1.0/GdkX11-3.0.gir
share/gir-1.0/Gtk-3.0.gir
share/gtk-3.0/gtkbuilder.rng
+share/icons/hicolor/16x16/apps/gtk3-demo.png
+share/icons/hicolor/16x16/apps/gtk3-widget-factory.png
+share/icons/hicolor/22x22/apps/gtk3-demo.png
+share/icons/hicolor/22x22/apps/gtk3-widget-factory.png
+share/icons/hicolor/24x24/apps/gtk3-demo.png
+share/icons/hicolor/24x24/apps/gtk3-widget-factory.png
+share/icons/hicolor/256x256/apps/gtk3-demo.png
+share/icons/hicolor/256x256/apps/gtk3-widget-factory.png
+share/icons/hicolor/32x32/apps/gtk3-demo.png
+share/icons/hicolor/32x32/apps/gtk3-widget-factory.png
+share/icons/hicolor/48x48/apps/gtk3-demo.png
+share/icons/hicolor/48x48/apps/gtk3-widget-factory.png
share/locale/af/LC_MESSAGES/gtk30-properties.mo
share/locale/af/LC_MESSAGES/gtk30.mo
share/locale/am/LC_MESSAGES/gtk30-properties.mo
@@ -580,6 +611,8 @@
share/locale/ta/LC_MESSAGES/gtk30.mo
share/locale/te/LC_MESSAGES/gtk30-properties.mo
share/locale/te/LC_MESSAGES/gtk30.mo
+share/locale/tg/LC_MESSAGES/gtk30-properties.mo
+share/locale/tg/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
@@ -614,116 +647,13 @@
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
- at exec /usr/bin/find %%LOCALBASE%%/share/icons -type d -depth 1 -exec %D/bin/gtk-update-icon-cache -q -f {} \; 2>/dev/null || /usr/bin/true
- at unexec /usr/bin/find %%LOCALBASE%%/share/icons -type f -depth 2 -name icon-theme.cache -delete 2>/dev/null || /usr/bin/true
- at dirrm share/themes/Emacs/gtk-3.0
- at dirrmtry share/themes/Emacs
- at dirrm share/themes/Default/gtk-3.0
- at dirrmtry share/themes/Default
- at dirrmtry share/themes
- at dirrmtry share/locale/zh_HK/LC_MESSAGES
- at dirrmtry share/locale/zh_HK
- at dirrmtry share/locale/yi/LC_MESSAGES
- at dirrmtry share/locale/yi
- at dirrmtry share/locale/xh/LC_MESSAGES
- at dirrmtry share/locale/xh
- at dirrmtry share/locale/uz at cyrillic/LC_MESSAGES
- at dirrmtry share/locale/uz at cyrillic
- at dirrmtry share/locale/ur/LC_MESSAGES
- at dirrmtry share/locale/ur
- at dirrmtry share/locale/ug/LC_MESSAGES
- at dirrmtry share/locale/ug
- at dirrmtry share/locale/tt/LC_MESSAGES
- at dirrmtry share/locale/tt
- at dirrmtry share/locale/te/LC_MESSAGES
- at dirrmtry share/locale/te
- at dirrmtry share/locale/sr at latin/LC_MESSAGES
- at dirrmtry share/locale/sr at latin
- at dirrmtry share/locale/sr at ije/LC_MESSAGES
- at dirrmtry share/locale/sr at ije
- at dirrmtry share/locale/si/LC_MESSAGES
- at dirrmtry share/locale/si
- at dirrmtry share/locale/rw/LC_MESSAGES
- at dirrmtry share/locale/rw
- at dirrmtry share/locale/ps/LC_MESSAGES
- at dirrmtry share/locale/ps
- at dirrmtry share/locale/oc/LC_MESSAGES
- at dirrmtry share/locale/oc
- at dirrmtry share/locale/nso/LC_MESSAGES
- at dirrmtry share/locale/nso
- at dirrmtry share/locale/nds/LC_MESSAGES
- at dirrmtry share/locale/nds
- at dirrmtry share/locale/my/LC_MESSAGES
- at dirrmtry share/locale/my
- at dirrmtry share/locale/mr/LC_MESSAGES
- at dirrmtry share/locale/mr
- at dirrmtry share/locale/mi/LC_MESSAGES
- at dirrmtry share/locale/mi
- at dirrmtry share/locale/mai/LC_MESSAGES
- at dirrmtry share/locale/mai
- at dirrmtry share/locale/lg/LC_MESSAGES
- at dirrmtry share/locale/lg
- at dirrmtry share/locale/ky/LC_MESSAGES
- at dirrmtry share/locale/ky
- at dirrmtry share/locale/ku/LC_MESSAGES
- at dirrmtry share/locale/ku
- at dirrmtry share/locale/km/LC_MESSAGES
- at dirrmtry share/locale/km
- at dirrmtry share/locale/kk/LC_MESSAGES
- at dirrmtry share/locale/kk
- at dirrmtry share/locale/kg/LC_MESSAGES
- at dirrmtry share/locale/kg
- at dirrmtry share/locale/io/LC_MESSAGES
- at dirrmtry share/locale/io
- at dirrmtry share/locale/ia/LC_MESSAGES
- at dirrmtry share/locale/ia
- at dirrmtry share/locale/hy/LC_MESSAGES
- at dirrmtry share/locale/hy
- at dirrmtry share/locale/gd/LC_MESSAGES
- at dirrmtry share/locale/gd
- at dirrmtry share/locale/en at shaw/LC_MESSAGES
- at dirrmtry share/locale/en at shaw
- at dirrmtry share/locale/dz/LC_MESSAGES
- at dirrmtry share/locale/dz
- at dirrmtry share/locale/crh/LC_MESSAGES
- at dirrmtry share/locale/crh
- at dirrmtry share/locale/ca at valencia/LC_MESSAGES
- at dirrmtry share/locale/ca at valencia
- at dirrmtry share/locale/bn_IN/LC_MESSAGES
- at dirrmtry share/locale/bn_IN
- at dirrmtry share/locale/be at latin/LC_MESSAGES
- at dirrmtry share/locale/be at latin
- at dirrmtry share/locale/az_IR/LC_MESSAGES
- at dirrmtry share/locale/az_IR
- at dirrmtry share/locale/ast/LC_MESSAGES
- at dirrmtry share/locale/ast
- at dirrmtry share/locale/as/LC_MESSAGES
- at dirrmtry share/locale/as
- at dirrmtry share/locale/ang/LC_MESSAGES
- at dirrmtry share/locale/ang
- at dirrmtry share/locale/an/LC_MESSAGES
- at dirrmtry share/locale/an
- at dirrm share/gtk-3.0
@exec %D/bin/gtk-query-immodules-3.0 --update-cache > /dev/null 2>&1 || /usr/bin/true
- at unexec /bin/rm -f %D/lib/gtk-3.0/%%GTK3_VERSION%%/immodules.cache
+ at rmtry lib/gtk-3.0/%%GTK3_VERSION%%/immodules.cache
@exec /bin/mkdir -p %D/lib/gtk-3.0/modules
@exec /bin/mkdir -p %D/lib/gtk-3.0/%%GTK3_VERSION%%/engines
@exec /bin/mkdir -p %D/lib/gtk-3.0/%%GTK3_VERSION%%/loaders
- at dirrm lib/gtk-3.0/modules
- at dirrm lib/gtk-3.0/%%GTK3_VERSION%%/printbackends
- at dirrm lib/gtk-3.0/%%GTK3_VERSION%%/loaders
- at dirrm lib/gtk-3.0/%%GTK3_VERSION%%/immodules
- at dirrm lib/gtk-3.0/%%GTK3_VERSION%%/engines
- at dirrm lib/gtk-3.0/%%GTK3_VERSION%%
- at dirrm lib/gtk-3.0
- at dirrm include/gtk-3.0/unix-print/gtk
- at dirrm include/gtk-3.0/unix-print
- at dirrm include/gtk-3.0/gtk/deprecated
- at dirrm include/gtk-3.0/gtk/a11y
- at dirrm include/gtk-3.0/gtk
- at dirrm include/gtk-3.0/gdk/x11
- at dirrm include/gtk-3.0/gdk
- at dirrm include/gtk-3.0
- at dirrm include/gail-3.0/libgail-util
- at dirrm include/gail-3.0
- at dirrm etc/gtk-3.0
+ at dir lib/gtk-3.0
+ at dir lib/gtk-3.0/%%GTK3_VERSION%%
+ at dir lib/gtk-3.0/%%GTK3_VERSION%%/engines
+ at dir lib/gtk-3.0/%%GTK3_VERSION%%/loaders
+ at dir lib/gtk-3.0/modules
More information about the Midnightbsd-cvs
mailing list