pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/webkit-gtk Update to 1.1.6.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9b45e4c02cd8
branches:  trunk
changeset: 392927:9b45e4c02cd8
user:      snj <snj%pkgsrc.org@localhost>
date:      Wed May 13 18:39:46 2009 +0000

description:
Update to 1.1.6.

Changes:
  - Several ATK support additions and fixes got landed, with many
    roles being now implemented, providing better accessibility.
  - Caret browsing is now available.
  - Spelling check has been implemented using Enchant; the API is
    still lacking, and some of the functionality still needs to be
    improved, though.
  - Error reporting is now available, with default error pages, and
    API that allows the application to override the default behavior;
    localization of those pages is still not supported, but planned.
  - More crashes and other bugs fixed.

diffstat:

 www/webkit-gtk/Makefile      |  29 +++++++++++++++--------------
 www/webkit-gtk/PLIST         |   5 ++++-
 www/webkit-gtk/buildlink3.mk |   3 ++-
 www/webkit-gtk/distinfo      |   8 ++++----
 4 files changed, 25 insertions(+), 20 deletions(-)

diffs (112 lines):

diff -r 1047fa746a37 -r 9b45e4c02cd8 www/webkit-gtk/Makefile
--- a/www/webkit-gtk/Makefile   Wed May 13 17:47:21 2009 +0000
+++ b/www/webkit-gtk/Makefile   Wed May 13 18:39:46 2009 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2009/04/22 12:36:46 hasso Exp $
+# $NetBSD: Makefile,v 1.9 2009/05/13 18:39:46 snj Exp $
 
-DISTNAME=      webkit-1.1.5
+DISTNAME=      webkit-1.1.6
 PKGNAME=       ${DISTNAME:S/webkit/webkit-gtk/}
 CATEGORIES=    www
 MASTER_SITES=  http://www.webkitgtk.org/
@@ -32,22 +32,23 @@
                WebCore/dom/*.pl \
                WebCore/platform/text/mac/*.pl
 
-.include "../../multimedia/gstreamer0.10/buildlink3.mk"
-.include "../../multimedia/gst-plugins0.10-base/buildlink3.mk"
-BUILDLINK_API_DEPENDS.gtk2+=   gtk2+>=2.10
-.include "../../x11/gtk2/buildlink3.mk"
-.include "../../x11/libXt/buildlink3.mk"
-.include "../../graphics/freetype2/buildlink3.mk"
-.include "../../net/libsoup24/buildlink3.mk"
+.include "../../databases/sqlite3/buildlink3.mk"
+.include "../../devel/flex/buildlink3.mk"
+.include "../../devel/gperf/buildlink3.mk"
 # This is optional, but needs testing.
 #.include "../../devel/pango/buildlink3.mk"
 # A correct Webkit build requires flex 2.5.33
-.include "../../devel/flex/buildlink3.mk"
+.include "../../graphics/freetype2/buildlink3.mk"
+.include "../../graphics/jpeg/buildlink3.mk"
+.include "../../graphics/png/buildlink3.mk"
+.include "../../multimedia/gstreamer0.10/buildlink3.mk"
+.include "../../multimedia/gst-plugins0.10-base/buildlink3.mk"
+.include "../../net/libsoup24/buildlink3.mk"
+.include "../../textproc/enchant/buildlink3.mk"
 .include "../../textproc/icu/buildlink3.mk"
 .include "../../textproc/libxslt/buildlink3.mk"
-.include "../../databases/sqlite3/buildlink3.mk"
-.include "../../graphics/jpeg/buildlink3.mk"
-.include "../../graphics/png/buildlink3.mk"
-.include "../../devel/gperf/buildlink3.mk"
+BUILDLINK_API_DEPENDS.gtk2+=   gtk2+>=2.10
+.include "../../x11/gtk2/buildlink3.mk"
+.include "../../x11/libXt/buildlink3.mk"
 .include "../../mk/pthread.buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 1047fa746a37 -r 9b45e4c02cd8 www/webkit-gtk/PLIST
--- a/www/webkit-gtk/PLIST      Wed May 13 17:47:21 2009 +0000
+++ b/www/webkit-gtk/PLIST      Wed May 13 18:39:46 2009 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2009/04/15 19:35:19 snj Exp $
+@comment $NetBSD: PLIST,v 1.5 2009/05/13 18:39:46 snj Exp $
 bin/jsc
 include/webkit-1.0/JavaScriptCore/JSBase.h
 include/webkit-1.0/JavaScriptCore/JSContextRef.h
@@ -14,6 +14,7 @@
 include/webkit-1.0/webkit/webkitdefines.h
 include/webkit-1.0/webkit/webkitdownload.h
 include/webkit-1.0/webkit/webkitenumtypes.h
+include/webkit-1.0/webkit/webkiterror.h
 include/webkit-1.0/webkit/webkitnetworkrequest.h
 include/webkit-1.0/webkit/webkitsoupauthdialog.h
 include/webkit-1.0/webkit/webkitversion.h
@@ -30,6 +31,7 @@
 lib/pkgconfig/webkit-1.0.pc
 share/locale/de/LC_MESSAGES/webkit.mo
 share/locale/pt_BR/LC_MESSAGES/webkit.mo
+share/webkit-1.0/resources/error.html
 share/webkit-1.0/webinspector/Images/back.png
 share/webkit-1.0/webinspector/Images/checker.png
 share/webkit-1.0/webinspector/Images/clearConsoleButtons.png
@@ -145,6 +147,7 @@
 share/webkit-1.0/webinspector/Images/warningsErrors.png
 @dirrm share/webkit-1.0/webinspector/Images
 @dirrm share/webkit-1.0/webinspector
+@dirrm share/webkit-1.0/resources
 @dirrm share/webkit-1.0
 @dirrm include/webkit-1.0/webkit
 @dirrm include/webkit-1.0/JavaScriptCore
diff -r 1047fa746a37 -r 9b45e4c02cd8 www/webkit-gtk/buildlink3.mk
--- a/www/webkit-gtk/buildlink3.mk      Wed May 13 17:47:21 2009 +0000
+++ b/www/webkit-gtk/buildlink3.mk      Wed May 13 18:39:46 2009 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.5 2009/04/08 16:42:50 drochner Exp $
+# $NetBSD: buildlink3.mk,v 1.6 2009/05/13 18:39:46 snj Exp $
 
 BUILDLINK_TREE+=       webkit-gtk
 
@@ -17,6 +17,7 @@
 .include "../../multimedia/gstreamer0.10/buildlink3.mk"
 .include "../../multimedia/gst-plugins0.10-base/buildlink3.mk"
 .include "../../net/libsoup24/buildlink3.mk"
+.include "../../textproc/enchant/buildlink3.mk"
 .include "../../textproc/icu/buildlink3.mk"
 .include "../../textproc/libxslt/buildlink3.mk"
 .include "../../x11/gtk2/buildlink3.mk"
diff -r 1047fa746a37 -r 9b45e4c02cd8 www/webkit-gtk/distinfo
--- a/www/webkit-gtk/distinfo   Wed May 13 17:47:21 2009 +0000
+++ b/www/webkit-gtk/distinfo   Wed May 13 18:39:46 2009 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.7 2009/04/15 19:35:20 snj Exp $
+$NetBSD: distinfo,v 1.8 2009/05/13 18:39:46 snj Exp $
 
-SHA1 (webkit-1.1.5.tar.gz) = 0987ce4a99501be9e5b2ff233625e464231dcb53
-RMD160 (webkit-1.1.5.tar.gz) = 69251566271a8f64758c7074f69eed606d47c968
-Size (webkit-1.1.5.tar.gz) = 5878572 bytes
+SHA1 (webkit-1.1.6.tar.gz) = 6da8a41d3f1db9c7de62301c35e2e5918dd1ed46
+RMD160 (webkit-1.1.6.tar.gz) = 3b038366e2d9aeef83315084135a8bf41fe0f69e
+Size (webkit-1.1.6.tar.gz) = 6068467 bytes
 SHA1 (patch-ad) = 6a53ac32606c1985c15430f14f45dd6215e1d86a



Home | Main Index | Thread Index | Old Index