summaryrefslogtreecommitdiff
path: root/www/bluefish
diff options
context:
space:
mode:
authorwulf <wulf>2001-01-01 01:19:05 +0000
committerwulf <wulf>2001-01-01 01:19:05 +0000
commit6d5261f7c27a4ede65946bc9c5da14db230175d4 (patch)
treeeac5e5830bdd81b2c4f9863bced047dd431a5855 /www/bluefish
parent7394a9bc53e0dbd86a523224c1560f1245d7a5af (diff)
downloadpkgsrc-6d5261f7c27a4ede65946bc9c5da14db230175d4.tar.gz
Added bugfix submitted by J. McNeill, PR#11862, that corrects problem with
the creation of ~/.bluefish directory when running bluefish the first time.
Diffstat (limited to 'www/bluefish')
-rw-r--r--www/bluefish/files/patch-sum3
-rw-r--r--www/bluefish/patches/patch-ad15
2 files changed, 17 insertions, 1 deletions
diff --git a/www/bluefish/files/patch-sum b/www/bluefish/files/patch-sum
index a9ef0c05225..f5813403da2 100644
--- a/www/bluefish/files/patch-sum
+++ b/www/bluefish/files/patch-sum
@@ -1,5 +1,6 @@
-$NetBSD: patch-sum,v 1.9 2000/12/28 14:07:18 wulf Exp $
+$NetBSD: patch-sum,v 1.10 2001/01/01 01:19:05 wulf Exp $
MD5 (patch-aa) = f205980d1346f171c2aaba306e7c0769
MD5 (patch-ab) = 92c35899f1cdc3ae84f2401bd09858f4
MD5 (patch-ac) = f71e9ea2eabe170955a182964dd785e2
+MD5 (patch-ad) = 71860e8103bb6c18b5e2866ccb00f741
diff --git a/www/bluefish/patches/patch-ad b/www/bluefish/patches/patch-ad
new file mode 100644
index 00000000000..96e382907b7
--- /dev/null
+++ b/www/bluefish/patches/patch-ad
@@ -0,0 +1,15 @@
+$NetBSD: patch-ad,v 1.1 2001/01/01 01:19:06 wulf Exp $
+
+--- src/init.c.orig Tue Dec 26 23:15:00 2000
++++ src/init.c Tue Dec 26 23:15:40 2000
+@@ -166,8 +166,8 @@
+ /* another g_get_home_dir () */
+ homedir = g_get_home_dir();
+ DEBUG_MSG("check_directories, homedir=%s\n", homedir);
+- chk_dir(strncat(strncpy(name, homedir, PATH_MAX), "/.bluefish/", PATH_MAX));
+- chk_dir(strncat(strncpy(name, homedir, PATH_MAX), "/.bluefish/projects/", PATH_MAX));
++ chk_dir(strncat(strncpy(name, homedir, PATH_MAX), "/.bluefish", PATH_MAX));
++ chk_dir(strncat(strncpy(name, homedir, PATH_MAX), "/.bluefish/projects", PATH_MAX));
+ chk_link(strncat(strncpy(name, homedir, PATH_MAX), "/.bluefish/php3_functions", PATH_MAX),
+ strncat(strncpy(name2, PKGDATADIR, PATH_MAX), "/php3_functions", PATH_MAX));
+ chk_link(strncat(strncpy(name, homedir, PATH_MAX), "/.bluefish/ssi_functions", PATH_MAX),