summaryrefslogtreecommitdiff
path: root/www/epiphany
diff options
context:
space:
mode:
authorjmmv <jmmv@pkgsrc.org>2004-02-07 16:41:30 +0000
committerjmmv <jmmv@pkgsrc.org>2004-02-07 16:41:30 +0000
commit42729749d0ef37118eaa86d4613c6c1ee83edbba (patch)
tree0ce5e77e0be7d7e6a8881bd55204137fe51df876 /www/epiphany
parent75a38b2e986a5eae22c1ec3253adc7ab4e2b8c43 (diff)
downloadpkgsrc-42729749d0ef37118eaa86d4613c6c1ee83edbba.tar.gz
Reapply patch from reed@ to avoid passing a trailing slash to mkdir(2),
which does not work in NetBSD 1.6 and below. Bump PKGREVISION to 2 and close PR pkg/24339. I've reviewed the code; it's safe to remove that trailing slash from the directory name since the variable holding it is always handled through g_build_filename, which adds slashes between path components automatically. And the program works fine WRT favicons, at least under -current.
Diffstat (limited to 'www/epiphany')
-rw-r--r--www/epiphany/Makefile4
-rw-r--r--www/epiphany/distinfo3
-rw-r--r--www/epiphany/patches/patch-ab13
3 files changed, 17 insertions, 3 deletions
diff --git a/www/epiphany/Makefile b/www/epiphany/Makefile
index 228908751b5..1ad4e9540f5 100644
--- a/www/epiphany/Makefile
+++ b/www/epiphany/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.4 2004/02/07 00:41:02 reed Exp $
+# $NetBSD: Makefile,v 1.5 2004/02/07 16:41:30 jmmv Exp $
#
DISTNAME= epiphany-1.0.7
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= www gnome
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/epiphany/1.0/}
diff --git a/www/epiphany/distinfo b/www/epiphany/distinfo
index 87b2ab95a6c..7ed3b8d449f 100644
--- a/www/epiphany/distinfo
+++ b/www/epiphany/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.3 2004/02/07 00:41:02 reed Exp $
+$NetBSD: distinfo,v 1.4 2004/02/07 16:41:30 jmmv Exp $
SHA1 (epiphany-1.0.7.tar.gz) = 8fc6e5cab2acc1013f719bfe1deed0c245b2e1ce
Size (epiphany-1.0.7.tar.gz) = 2908935 bytes
SHA1 (patch-aa) = fd49611defe1885c41d853cadfb49ff8f42892a4
+SHA1 (patch-ab) = cad155e7d392e180f26cdc1f889daca2c399680a
diff --git a/www/epiphany/patches/patch-ab b/www/epiphany/patches/patch-ab
new file mode 100644
index 00000000000..1fc6cfdf5c8
--- /dev/null
+++ b/www/epiphany/patches/patch-ab
@@ -0,0 +1,13 @@
+$NetBSD: patch-ab,v 1.3 2004/02/07 16:41:30 jmmv Exp $
+
+--- embed/ephy-favicon-cache.c.orig 2003-12-18 13:48:42.000000000 +0100
++++ embed/ephy-favicon-cache.c
+@@ -263,7 +263,7 @@ ephy_favicon_cache_init (EphyFaviconCach
+ NULL);
+
+ cache->priv->directory = g_build_filename (ephy_dot_dir (),
+- "favicon_cache/",
++ "favicon_cache",
+ NULL);
+
+ if (g_file_test (cache->priv->directory, G_FILE_TEST_IS_DIR) == FALSE)