summaryrefslogtreecommitdiff
path: root/www/ikiwiki/patches
diff options
context:
space:
mode:
authorschmonz <schmonz>2008-09-09 17:19:13 +0000
committerschmonz <schmonz>2008-09-09 17:19:13 +0000
commit6005746cb0620d7c5a8b1b66af8500b2eb71065f (patch)
treeb7455ce7ece094274675c5c3d9c2b3610392449f /www/ikiwiki/patches
parent29d7ba63df2f1c3db55b198a7381593b38297946 (diff)
downloadpkgsrc-6005746cb0620d7c5a8b1b66af8500b2eb71065f.tar.gz
Update to 2.63. From the changelog:
* Set cookies HttpOnly. * Typo. Closes: #[497003](http://bugs.debian.org/497003) * Ignore failure to install files into /etc, in case install is running as non-root. * Work around perl $\_ scoping nonsense that caused breakage when loading external plugins. * style.css: Add missing semicolon. Closes: #[497176](http://bugs.debian.org/497176) * filecheck: Fall back to testing for binary or plain text files if no mime type is detected. * table: Support header=column to make the table header be the first column of the data. (AlexandreDupas) * For fine control over what characters are allowed, unescaped in source filenames, the wiki\_file\_chars setting is added. For example, set to "-[:alnum:]+/.\_" to disable colons from being used in source files (which can cause troubl om Windows). * po/Makefile: update po files when the pot file has changed. Closes: #[497951](http://bugs.debian.org/497951) * editpage: New core plugin factoring out page editing to allow disabling it if desired.
Diffstat (limited to 'www/ikiwiki/patches')
-rw-r--r--www/ikiwiki/patches/patch-aa28
1 files changed, 14 insertions, 14 deletions
diff --git a/www/ikiwiki/patches/patch-aa b/www/ikiwiki/patches/patch-aa
index 2c9821dd9b4..f378677e90f 100644
--- a/www/ikiwiki/patches/patch-aa
+++ b/www/ikiwiki/patches/patch-aa
@@ -1,17 +1,17 @@
-$NetBSD: patch-aa,v 1.6 2008/09/04 15:34:30 schmonz Exp $
+$NetBSD: patch-aa,v 1.7 2008/09/09 17:19:13 schmonz Exp $
---- Makefile.PL.orig 2008-08-27 15:25:08.000000000 -0400
+--- Makefile.PL.orig 2008-09-08 11:51:42.000000000 -0400
+++ Makefile.PL
-@@ -50,9 +50,9 @@ extra_clean:
- $(MAKE) -C po clean
+@@ -95,9 +95,9 @@ extra_install:
+
+ # These might fail if a regular user is installing into a home
+ # directory.
+- -install -d $(DESTDIR)/etc/ikiwiki
+- -install -m 0644 wikilist $(DESTDIR)/etc/ikiwiki
+- -install -m 0644 auto.setup $(DESTDIR)/etc/ikiwiki
++ -install -d $(DESTDIR)$(PREFIX)/share/examples/ikiwiki
++ -install -m 0644 wikilist $(DESTDIR)$(PREFIX)/share/examples/ikiwiki
++ -install -m 0644 auto.setup $(DESTDIR)$(PREFIX)/share/examples/ikiwiki
+ }
+ }
- extra_install:
-- install -d $(DESTDIR)/etc/ikiwiki
-- install -m 0644 wikilist $(DESTDIR)/etc/ikiwiki
-- install -m 0644 auto.setup $(DESTDIR)/etc/ikiwiki
-+ install -d $(DESTDIR)$(PREFIX)/share/examples/ikiwiki
-+ install -m 0644 wikilist $(DESTDIR)$(PREFIX)/share/examples/ikiwiki
-+ install -m 0644 auto.setup $(DESTDIR)$(PREFIX)/share/examples/ikiwiki
-
- install -d $(DESTDIR)$(PREFIX)/share/ikiwiki
- for dir in `cd underlays && find . -follow -type d ! -regex '.*\.svn.*'`; do \