diff options
author | prlw1 <prlw1> | 2013-12-08 14:21:37 +0000 |
---|---|---|
committer | prlw1 <prlw1> | 2013-12-08 14:21:37 +0000 |
commit | 0115bfefc56e54b1c9844ce28c6e1b6a420dd67f (patch) | |
tree | f227c0168280058dcc7e1817cd5c729728ad303f /x11/gtk3 | |
parent | d70104d92410d9bc521098d8a7ecc33a4e9ea6d4 (diff) | |
download | pkgsrc-0115bfefc56e54b1c9844ce28c6e1b6a420dd67f.tar.gz |
Update gtk3 to 3.10.6
This is causing problems (3.9.6 to 3.9.8):
* We've started deprecating GtkStock apis. These apis will continue
working until GTK+ 4, so there is no need to rush to replace them.
For more information, see
https://mail.gnome.org/archives/gtk-devel-list/2013-July/msg00000.html
Wholly deprecated as part of this effort:
GtkIconFactory, GtkIconSet, GtkIconSource, GtkImageMenuItem,
GtkAction, GtkUIManager
Other highlights:
* Theme support
- Always fall back to 'gnome' icon theme in addition to 'hicolor'
- Respect deprecated gtk-button-images setting
- Respect deprecated gtk-menu-images setting
* Accessibility improvements
- Add accessible names to csd window buttons
- Mark GtkLinkButton as visited when appropriate
- Add a GtkListBoxRow accessible
* GtkLabel can now ellipsize just the last line,
ellipsized in multi-line labels.
* GtkInfoBar now uses a GtkRevealer internally to slide in place.
It is no longer necessary to do that manually.
* GtkHeaderBar can now add a window close button
* The fine adjustment mode for scrolling has been revamped to be
easier discoverable, and visual feedback and autoscrolling has
been added.
* GtkIconTheme now supports 2x scaled icons for hi-dpi displays.
* The Wayland and X11 clipboard implementations can now coexist
* GtkInfoBar updates
- Turn action area horizontal
- Fix spacing
- Add an easy way to add a close button
* Documentation
- Modernize many screenshots
- Redo the widget gallery
- Improve 'Getting Started' tutorial
- Add new application examples to tutorial
* Deprecations:
tear-off menuitems,
gtk-button-images,
gtk-show-unicode-menu,
gtk-show-input-method-menu,
gtk-enable-mnemonics,
gtk-auto-mnemonics,
gtk-color-palette,
gtk-can-change-accels,
cursor blink settings,
gtk-fallback-icon-theme,
gtk-scrolled-window-placement,
menu popup delay settings,
gtk-menu-bar-accel,
keynav tweaks,
gtk-touchscreen-mode,
gtk-icon-sizes,
im style tweaks,
gtk-file-chooser-backend,
gtk-enable-tooltips,
gtk-visible-focus,
tooltip timeout tweaks,
toolbar style tweaks
* Initial support for scaled output (on high-dpi screens) has been
added. While this can be built with cairo 1.12, it needs a cairo
branch to work. Support for this has been added to the Wayland,
OS X and Windows backends.
* GtkListBox:
- handle double-clicks properly
- add an example in gtk3-demo
* GtkSearchBar: a toolbar that will popup automatically when
searches should be started, and dismissed when they are finished
* GtkListBox a vertical container that can sort and filter its
children
* GtkStack has gained position dependent transitions (left-right
and up-down)
* The Broadway GDK backend can be built on Windows now
* The GDK initialization code has been refactored. GdkDisplayManager
is no longer backend-specific.
* The symbol exporting functionality has been refactored. We no longer
use .symbols files, and instead rely on explicit header annotations
for every exported symbol. the abicheck scripts are no longer used.
* The GDK drawing and scrolling has been simplified. We no longer use
XCopyArea for scrolling, instead an offscreen cache is used. There
is a new debug flag, GTK_DEBUG=pixel-cache for this.
* Window sizing issues have been addressed.
* Implement height-for-width for GtkEventBox and GtkCheckButton
* Custom titlebars can now be set from GtkBuilder files
* Optionally install tests, when configured with --enable-installed-tests.
To run these tests, gnome-desktop-testing-runner can be used.
* Native input methods are supported on OS X now.
Many bug fixes and translation updates. For full details see:
https://git.gnome.org/browse/gtk+/tree/NEWS?id=3.10.6
Diffstat (limited to 'x11/gtk3')
-rw-r--r-- | x11/gtk3/Makefile | 9 | ||||
-rw-r--r-- | x11/gtk3/PLIST | 91 | ||||
-rw-r--r-- | x11/gtk3/distinfo | 12 | ||||
-rw-r--r-- | x11/gtk3/patches/patch-aj | 8 | ||||
-rw-r--r-- | x11/gtk3/patches/patch-gtk_a11y_gtkaccessibility.c | 19 |
5 files changed, 89 insertions, 50 deletions
diff --git a/x11/gtk3/Makefile b/x11/gtk3/Makefile index 0c51f9972b7..e2dfbd65231 100644 --- a/x11/gtk3/Makefile +++ b/x11/gtk3/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.44 2013/10/10 14:41:46 ryoon Exp $ +# $NetBSD: Makefile,v 1.45 2013/12/08 14:21:37 prlw1 Exp $ -DISTNAME= gtk+-3.8.4 +DISTNAME= gtk+-3.10.6 PKGNAME= ${DISTNAME:S/gtk/gtk3/} -PKGREVISION= 1 CATEGORIES= x11 gnome MASTER_SITES= ftp://ftp.gtk.org/pub/gtk/${PKGVERSION_NOREV:R}/ \ ${MASTER_SITE_GNOME:=sources/gtk+/${PKGVERSION_NOREV:R}/} @@ -78,7 +77,7 @@ _BUILDING_GTK3= yes BUILDLINK_API_DEPENDS.atk+= atk>=2.7.5 .include "../../devel/atk/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" -BUILDLINK_API_DEPENDS.glib2+= glib2>=2.35.3 +BUILDLINK_API_DEPENDS.glib2+= glib2>=2.37.5 .include "../../devel/glib2/buildlink3.mk" BUILDLINK_API_DEPENDS.gdk-pixbuf2+= gdk-pixbuf2>=2.27.1 .include "../../graphics/gdk-pixbuf2/buildlink3.mk" @@ -93,7 +92,7 @@ BUILDLINK_API_DEPENDS.gobject-introspection+= gobject-introspection>=1.32 BUILDLINK_API_DEPENDS.pango+= pango>=1.32.4 .include "../../devel/pango/buildlink3.mk" .include "../../fonts/fontconfig/buildlink3.mk" -BUILDLINK_API_DEPENDS.cairo+= cairo>=1.10.0 +BUILDLINK_API_DEPENDS.cairo+= cairo>=1.12.0 .include "../../graphics/cairo/buildlink3.mk" .include "../../graphics/cairo-gobject/buildlink3.mk" .include "../../graphics/freetype2/buildlink3.mk" diff --git a/x11/gtk3/PLIST b/x11/gtk3/PLIST index 01cf7dc7fe7..74344ddc8b7 100644 --- a/x11/gtk3/PLIST +++ b/x11/gtk3/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.10 2013/05/18 22:44:43 prlw1 Exp $ +@comment $NetBSD: PLIST,v 1.11 2013/12/08 14:21:37 prlw1 Exp $ bin/gtk-launch bin/gtk-query-immodules-3.0 bin/gtk3-demo @@ -89,6 +89,8 @@ include/gtk-3.0/gtk/a11y/gtkimagecellaccessible.h 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/gtkmenuitemaccessible.h @@ -115,6 +117,9 @@ include/gtk-3.0/gtk/a11y/gtktoplevelaccessible.h 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/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/gtkcolorsel.h include/gtk-3.0/gtk/deprecated/gtkcolorseldialog.h include/gtk-3.0/gtk/deprecated/gtkfontsel.h @@ -127,11 +132,18 @@ include/gtk-3.0/gtk/deprecated/gtkhscale.h 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/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/gtksymboliccolor.h include/gtk-3.0/gtk/deprecated/gtktable.h include/gtk-3.0/gtk/deprecated/gtktearoffmenuitem.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 @@ -145,10 +157,7 @@ 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/gtkactionable.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 @@ -220,11 +229,10 @@ 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/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 @@ -236,6 +244,7 @@ include/gtk-3.0/gtk/gtklabel.h 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 @@ -257,29 +266,30 @@ include/gtk-3.0/gtk/gtkoverlay.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/gtkplacessidebar.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/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/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 @@ -292,9 +302,10 @@ 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/gtkstack.h +include/gtk-3.0/gtk/gtkstackswitcher.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/gtkstylecontext.h include/gtk-3.0/gtk/gtkstyleproperties.h include/gtk-3.0/gtk/gtkstyleprovider.h @@ -312,7 +323,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 @@ -333,7 +343,6 @@ 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/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 @@ -393,10 +402,13 @@ 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-insensitive.png 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-insensitive.png 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-insensitive.png share/gtk-doc/html/gail-libgail-util3/up.png share/gtk-doc/html/gdk3/GdkDevice.html share/gtk-doc/html/gdk3/GdkDeviceManager.html @@ -406,6 +418,7 @@ 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-3-10.html share/gtk-doc/html/gdk3/api-index-3-2.html share/gtk-doc/html/gdk3/api-index-3-4.html share/gtk-doc/html/gdk3/api-index-3-6.html @@ -458,6 +471,7 @@ 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-Wayland-Interaction.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.devhelp2 @@ -471,6 +485,7 @@ 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-insensitive.png share/gtk-doc/html/gdk3/left.png share/gtk-doc/html/gdk3/left_ptr.png share/gtk-doc/html/gdk3/left_side.png @@ -486,6 +501,7 @@ 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-insensitive.png share/gtk-doc/html/gdk3/right.png share/gtk-doc/html/gdk3/right_ptr.png share/gtk-doc/html/gdk3/right_side.png @@ -516,12 +532,12 @@ 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-insensitive.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 @@ -610,6 +626,7 @@ 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/GtkHeaderBar.html share/gtk-doc/html/gtk3/GtkIMContext.html share/gtk-doc/html/gtk3/GtkIMContextSimple.html share/gtk-doc/html/gtk3/GtkIMMulticontext.html @@ -623,6 +640,7 @@ share/gtk-doc/html/gtk3/GtkLabel.html share/gtk-doc/html/gtk3/GtkLayout.html share/gtk-doc/html/gtk3/GtkLevelBar.html share/gtk-doc/html/gtk3/GtkLinkButton.html +share/gtk-doc/html/gtk3/GtkListBox.html share/gtk-doc/html/gtk3/GtkListStore.html share/gtk-doc/html/gtk3/GtkLockButton.html share/gtk-doc/html/gtk3/GtkMenu.html @@ -641,7 +659,7 @@ 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/GtkPlacesSidebar.html share/gtk-doc/html/gtk3/GtkPrintContext.html share/gtk-doc/html/gtk3/GtkPrintJob.html share/gtk-doc/html/gtk3/GtkPrintSettings.html @@ -660,20 +678,23 @@ 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/GtkRevealer.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/GtkSearchBar.html share/gtk-doc/html/gtk3/GtkSearchEntry.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/GtkStack.html +share/gtk-doc/html/gtk3/GtkStackSwitcher.html share/gtk-doc/html/gtk3/GtkStatusIcon.html share/gtk-doc/html/gtk3/GtkStatusbar.html share/gtk-doc/html/gtk3/GtkStyle.html @@ -738,6 +759,7 @@ 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-3-10.html share/gtk-doc/html/gtk3/api-index-3-2.html share/gtk-doc/html/gtk3/api-index-3-4.html share/gtk-doc/html/gtk3/api-index-3-6.html @@ -760,12 +782,16 @@ share/gtk-doc/html/gtk3/box-expand.png share/gtk-doc/html/gtk3/box-packing.png share/gtk-doc/html/gtk3/broadwayd.html share/gtk-doc/html/gtk3/button.png +share/gtk-doc/html/gtk3/ch01s02.html +share/gtk-doc/html/gtk3/ch01s03.html +share/gtk-doc/html/gtk3/ch01s04.html +share/gtk-doc/html/gtk3/ch01s05.html 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/ch27s02.html -share/gtk-doc/html/gtk3/ch29s02.html -share/gtk-doc/html/gtk3/ch29s03.html +share/gtk-doc/html/gtk3/ch24s02.html +share/gtk-doc/html/gtk3/ch26s02.html +share/gtk-doc/html/gtk3/ch28s02.html +share/gtk-doc/html/gtk3/ch28s03.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 @@ -774,8 +800,8 @@ 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/colorchooser.png -share/gtk-doc/html/gtk3/colorsel.png share/gtk-doc/html/gtk3/combo-box-entry.png +share/gtk-doc/html/gtk3/combo-box-text.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 @@ -813,6 +839,7 @@ 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/exampleapp.png share/gtk-doc/html/gtk3/expanders.png share/gtk-doc/html/gtk3/extensions.png share/gtk-doc/html/gtk3/figure-hierarchical-drawing.png @@ -823,7 +850,6 @@ 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/fontchooser.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 @@ -839,6 +865,14 @@ 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/getting-started-app1.png +share/gtk-doc/html/gtk3/getting-started-app2.png +share/gtk-doc/html/gtk3/getting-started-app3.png +share/gtk-doc/html/gtk3/getting-started-app4.png +share/gtk-doc/html/gtk3/getting-started-app6.png +share/gtk-doc/html/gtk3/getting-started-app7.png +share/gtk-doc/html/gtk3/getting-started-app8.png +share/gtk-doc/html/gtk3/getting-started-app9.png share/gtk-doc/html/gtk3/glossary.html share/gtk-doc/html/gtk3/go-bottom.png share/gtk-doc/html/gtk3/go-down.png @@ -919,6 +953,8 @@ 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-GtkPlug.html +share/gtk-doc/html/gtk3/gtk3-GtkSocket.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 @@ -936,6 +972,7 @@ 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/headerbar.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 @@ -945,6 +982,7 @@ 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/info-bar.png share/gtk-doc/html/gtk3/label.png share/gtk-doc/html/gtk3/layout-btlr.png share/gtk-doc/html/gtk3/layout-btrl.png @@ -956,6 +994,7 @@ share/gtk-doc/html/gtk3/layout-tblr.png share/gtk-doc/html/gtk3/layout-tbrl.png share/gtk-doc/html/gtk3/left-center.png share/gtk-doc/html/gtk3/left-end.png +share/gtk-doc/html/gtk3/left-insensitive.png share/gtk-doc/html/gtk3/left-start.png share/gtk-doc/html/gtk3/left.png share/gtk-doc/html/gtk3/levelbar.png @@ -963,6 +1002,7 @@ 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-box.png share/gtk-doc/html/gtk3/list-remove.png share/gtk-doc/html/gtk3/lock-button.png share/gtk-doc/html/gtk3/lockbutton-locked.png @@ -996,6 +1036,8 @@ 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/placessidebar.png +share/gtk-doc/html/gtk3/platform-support.html share/gtk-doc/html/gtk3/printdialog.png share/gtk-doc/html/gtk3/printer-error.png share/gtk-doc/html/gtk3/printer-info.png @@ -1008,9 +1050,11 @@ share/gtk-doc/html/gtk3/radio-group.png share/gtk-doc/html/gtk3/recentchooserdialog.png share/gtk-doc/html/gtk3/right-center.png share/gtk-doc/html/gtk3/right-end.png +share/gtk-doc/html/gtk3/right-insensitive.png share/gtk-doc/html/gtk3/right-start.png share/gtk-doc/html/gtk3/right.png share/gtk-doc/html/gtk3/scales.png +share/gtk-doc/html/gtk3/scrollbar.png share/gtk-doc/html/gtk3/scrolledwindow.png share/gtk-doc/html/gtk3/search-entry.png share/gtk-doc/html/gtk3/separator.png @@ -1018,6 +1062,8 @@ 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/stack.png +share/gtk-doc/html/gtk3/stackswitcher.png share/gtk-doc/html/gtk3/statusbar.png share/gtk-doc/html/gtk3/style.css share/gtk-doc/html/gtk3/switch.png @@ -1031,6 +1077,7 @@ share/gtk-doc/html/gtk3/tools-check-spelling.png share/gtk-doc/html/gtk3/tree-view-coordinates.png share/gtk-doc/html/gtk3/up-center.png share/gtk-doc/html/gtk3/up-end.png +share/gtk-doc/html/gtk3/up-insensitive.png share/gtk-doc/html/gtk3/up-start.png share/gtk-doc/html/gtk3/up.png share/gtk-doc/html/gtk3/view-fullscreen.png @@ -1121,6 +1168,8 @@ 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/gd/LC_MESSAGES/gtk30-properties.mo +share/locale/gd/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 @@ -1239,6 +1288,8 @@ 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/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 diff --git a/x11/gtk3/distinfo b/x11/gtk3/distinfo index 0ae677772c8..571b108bd64 100644 --- a/x11/gtk3/distinfo +++ b/x11/gtk3/distinfo @@ -1,11 +1,11 @@ -$NetBSD: distinfo,v 1.19 2013/09/07 21:31:56 prlw1 Exp $ +$NetBSD: distinfo,v 1.20 2013/12/08 14:21:37 prlw1 Exp $ -SHA1 (gtk+-3.8.4.tar.xz) = d4448633071a1c3866ff3c8be331c7bd6c3b3dd7 -RMD160 (gtk+-3.8.4.tar.xz) = 284d74b1f3c279158fc9ab8e7d2099f75a657653 -Size (gtk+-3.8.4.tar.xz) = 13716408 bytes -SHA1 (patch-aj) = 88d5a5c25bcc005bce8597d1262e68a9e67b5f93 +SHA1 (gtk+-3.10.6.tar.xz) = 7d7605f72ff5886d8506eb8e564f99a14677d872 +RMD160 (gtk+-3.10.6.tar.xz) = 1d591207a119124d8c46d025908d6bd0af97b1ed +Size (gtk+-3.10.6.tar.xz) = 14387620 bytes +SHA1 (patch-aj) = 4a03d88ba597fd93cfd2807e779a431e98bb8d5e SHA1 (patch-config.h.in) = 479ebf5a5cf5ca6855fcda94063638a919bbf548 SHA1 (patch-configure) = 0bf253073a8799082f83fbd37b5424e9adf9b9d3 SHA1 (patch-configure.ac) = 4a2144abddc3468500515511cd934fd35f573952 SHA1 (patch-gdk_x11_gdkwindow-x11.h) = c80f7c9d5a570817e54fd74fa903a53400dc6f64 -SHA1 (patch-gtk_a11y_gtkaccessibility.c) = 73b653b855f21c23c13f2332f71aa865a465a621 +SHA1 (patch-gtk_a11y_gtkaccessibility.c) = 9993c6909c5107fcbb5ac59c79e05045c3fe73d2 diff --git a/x11/gtk3/patches/patch-aj b/x11/gtk3/patches/patch-aj index a662329078d..d965c795c0d 100644 --- a/x11/gtk3/patches/patch-aj +++ b/x11/gtk3/patches/patch-aj @@ -1,12 +1,12 @@ -$NetBSD: patch-aj,v 1.2 2012/02/03 14:48:45 drochner Exp $ +$NetBSD: patch-aj,v 1.3 2013/12/08 14:21:37 prlw1 Exp $ ---- Makefile.in.orig 2011-12-19 14:16:16.000000000 +0000 +--- Makefile.in.orig 2013-10-16 02:20:38.000000000 +0000 +++ Makefile.in -@@ -424,7 +424,7 @@ XVFB_START = \ +@@ -534,7 +534,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 libgail-util modules demos tests perf examples +-SRC_SUBDIRS = gdk gtk libgail-util modules demos tests testsuite examples +SRC_SUBDIRS = gdk gtk libgail-util modules demos SUBDIRS = po po-properties $(SRC_SUBDIRS) docs m4macros build ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} diff --git a/x11/gtk3/patches/patch-gtk_a11y_gtkaccessibility.c b/x11/gtk3/patches/patch-gtk_a11y_gtkaccessibility.c index 980dd600182..8da4cd70e4f 100644 --- a/x11/gtk3/patches/patch-gtk_a11y_gtkaccessibility.c +++ b/x11/gtk3/patches/patch-gtk_a11y_gtkaccessibility.c @@ -1,8 +1,8 @@ -$NetBSD: patch-gtk_a11y_gtkaccessibility.c,v 1.1 2013/05/18 22:44:43 prlw1 Exp $ - +$NetBSD: patch-gtk_a11y_gtkaccessibility.c,v 1.2 2013/12/08 14:21:37 prlw1 Exp $ + gtk3-atk-bridge option to avoid dbus dependency. ---- gtk/a11y/gtkaccessibility.c.orig 2013-03-09 20:03:17.000000000 +0000 +--- gtk/a11y/gtkaccessibility.c.orig 2013-10-14 16:39:20.000000000 +0000 +++ gtk/a11y/gtkaccessibility.c @@ -38,8 +38,10 @@ #include <gtk/gtkaccessible.h> @@ -15,18 +15,7 @@ gtk3-atk-bridge option to avoid dbus dependency. static gboolean gail_focus_watcher (GSignalInvocationHint *ihint, guint n_param_values, -@@ -990,8 +992,10 @@ _gtk_accessibility_shutdown (void) - g_clear_object (&atk_misc_instance); - - #ifdef GDK_WINDOWING_X11 -+#ifdef HAVE_ATK_BRIDGE - atk_bridge_adaptor_cleanup (); - #endif -+#endif - - undo_window_event_initialization (); - } -@@ -1012,8 +1016,10 @@ _gtk_accessibility_init (void) +@@ -983,8 +985,10 @@ _gtk_accessibility_init (void) do_window_event_initialization (); #ifdef GDK_WINDOWING_X11 |