summaryrefslogtreecommitdiff
path: root/www/skipstone
diff options
context:
space:
mode:
authortaya <taya@pkgsrc.org>2002-07-06 01:33:43 +0000
committertaya <taya@pkgsrc.org>2002-07-06 01:33:43 +0000
commit301ec80675b6e45ec66de5f7d62c213aed01c1e8 (patch)
tree8f72865f9b075b9c0353b1c71850f93b91f8db08 /www/skipstone
parent48ef548441d151e3ebb73a518300621eff16fb06 (diff)
downloadpkgsrc-301ec80675b6e45ec66de5f7d62c213aed01c1e8.tar.gz
Update skipstone to 0.8.3
from ChangeLog: - Lots of patches from Daniel for various things.. - Martin Robinson sent a patch for find dialog where it keeps the last search term, I'll improve this later on. - Agh! the typo that made the minimum font size not stick was back! fixed again. Thanks to Daniel for finding out. - Add a wrapper for all gtk_moz_embed_load_url() --> _skipstone_load_url() for skipstone internal use only and it adds a grab_focus on the embedding widget to help Daniel out on his upcoming kiosk mode patch. - Patch from Devik to fix --enable-cvs-mozilla and fix compilation on mozilla 1.0rc3 - Patch from Daniel for fixing minor leaks when config files don't exist. - Added an Up button plugin, must place an up.xpm inside your theme directory or it won't display a pixmap
Diffstat (limited to 'www/skipstone')
-rw-r--r--www/skipstone/Makefile6
-rw-r--r--www/skipstone/distinfo7
-rw-r--r--www/skipstone/patches/patch-ad44
3 files changed, 6 insertions, 51 deletions
diff --git a/www/skipstone/Makefile b/www/skipstone/Makefile
index 135022bebff..a9492177faa 100644
--- a/www/skipstone/Makefile
+++ b/www/skipstone/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.13 2002/05/28 23:31:06 taya Exp $
+# $NetBSD: Makefile,v 1.14 2002/07/06 01:33:43 taya Exp $
-DISTNAME= skipstone-0.8.2
+DISTNAME= skipstone-0.8.3
CATEGORIES= www
MASTER_SITES= http://www.muhri.net/skipstone/
@@ -8,7 +8,7 @@ MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.muhri.net/skipstone/
COMMENT= GTK+ web browser that embeds Mozilla's renderer
-DEPENDS+= mozilla>=1.0rc3:../../www/mozilla
+DEPENDS+= mozilla>=1.0:../../www/mozilla
EVAL_PREFIX+= MOZ_DIR=mozilla
MOZ_INCDIR= ${MOZ_DIR}/include/mozilla
diff --git a/www/skipstone/distinfo b/www/skipstone/distinfo
index eec043a1f75..ec59fb409e4 100644
--- a/www/skipstone/distinfo
+++ b/www/skipstone/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.9 2002/05/28 23:31:07 taya Exp $
+$NetBSD: distinfo,v 1.10 2002/07/06 01:33:43 taya Exp $
-SHA1 (skipstone-0.8.2.tar.gz) = d95e48ecd2f1907998e327fb8cb09f6e7f3da3e1
-Size (skipstone-0.8.2.tar.gz) = 420922 bytes
-SHA1 (patch-ad) = e45ab1dbbed9c007fa427fa358b5744057e5f5c1
+SHA1 (skipstone-0.8.3.tar.gz) = 2093fe02136bd1fcdf7bc98b1b959a01f6fd0dfc
+Size (skipstone-0.8.3.tar.gz) = 417469 bytes
SHA1 (patch-ae) = 72d1f2b4fa9d29161697abcb6d2a09714e6ec46b
diff --git a/www/skipstone/patches/patch-ad b/www/skipstone/patches/patch-ad
deleted file mode 100644
index 85557cc51b7..00000000000
--- a/www/skipstone/patches/patch-ad
+++ /dev/null
@@ -1,44 +0,0 @@
-$NetBSD: patch-ad,v 1.3 2002/05/26 12:10:15 taya Exp $
-
-diff -ru ../Orig/skipstone-0.8.2/src/mozilla.cpp ./src/mozilla.cpp
---- ../Orig/skipstone-0.8.2/src/mozilla.cpp Sat May 11 05:20:45 2002
-+++ ./src/mozilla.cpp Sun May 26 20:35:02 2002
-@@ -3,6 +3,7 @@
- * *
- * released under the GPL */
-
-+#include <sys/param.h>
- #include <gtk/gtk.h>
- #include <sys/types.h>
-
-@@ -277,7 +278,11 @@
- nsCOMPtr<nsIWebBrowserPersist> persist(do_QueryInterface(wb));
- if (persist) {
- nsCOMPtr<nsILocalFile> file;
-+#if 0
- NS_NewLocalFile(FullPath, PR_TRUE, getter_AddRefs(file));
-+#else
-+ NS_NewNativeLocalFile(nsDependentCString(FullPath), PR_TRUE, getter_AddRefs(file));
-+#endif
- if (!file) D_RETURN;
- persist->SaveURI(linkURI, nsnull, file);
- }
-@@ -402,10 +407,18 @@
- relative_path[i] = '\0';
- break;
- }
-+#if 0
- NS_NewLocalFile(relative_path, PR_TRUE, getter_AddRefs(relative));
-+#else
-+ NS_NewNativeLocalFile(nsDependentCString(relative_path), PR_TRUE, getter_AddRefs(relative));
-+#endif
-
- }
-+#if 0
- NS_NewLocalFile(file_name,PR_TRUE,getter_AddRefs(file));
-+#else
-+ NS_NewNativeLocalFile(nsDependentCString(file_name),PR_TRUE,getter_AddRefs(file));
-+#endif
- //#ifdef CVS_MOZILLA
- if (file) persist->SaveDocument(domDoc,file,relative, nsnull, 0, 0);
- //#else