]> sipb.mit.edu Git - ikiwiki.git/commitdiff
web commit by HenrikBrixAndersen: Add patch for using install(1) instead of cp(1...
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Sun, 29 Apr 2007 10:57:52 +0000 (10:57 +0000)
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Sun, 29 Apr 2007 10:57:52 +0000 (10:57 +0000)
doc/bugs/Use_install__40__1__41___instead_of_cp__40__1__41___for_installing_files.mdwn [new file with mode: 0644]

diff --git a/doc/bugs/Use_install__40__1__41___instead_of_cp__40__1__41___for_installing_files.mdwn b/doc/bugs/Use_install__40__1__41___instead_of_cp__40__1__41___for_installing_files.mdwn
new file mode 100644 (file)
index 0000000..25d0ef3
--- /dev/null
@@ -0,0 +1,21 @@
+Currently ikiwiki uses cp(1) with GNU extensions in Makefile.PL for installing files, thus causing problems on FreeBSD which doesn't have a cp(1) with GNU extentions in the base system.
+
+Here is a patch againt ikiwiki-1.51 for using find(1) and install(1) instead of cp(1).
+
+    --- Makefile.PL.orig       Sun Apr 29 12:57:51 2007
+    +++ Makefile.PL    Sun Apr 29 13:08:38 2007
+    @@ -47,8 +47,12 @@ extra_clean:
+     
+     extra_install:
+       install -d $(DESTDIR)$(PREFIX)/share/ikiwiki
+    -  find basewiki templates \( -type f -or -type l \) ! -regex '.*\.svn.*' \
+    -          -exec cp --parents -aL {} $(DESTDIR)$(PREFIX)/share/ikiwiki \;
+    +  for dir in `find -L basewiki templates -type d ! -regex '.*\.svn.*'`; do \
+    +          install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
+    +          for file in `find -L $$dir -maxdepth 1 -type f`; do \
+    +                  install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
+    +          done; \
+    +  done
+     
+       install -d $(DESTDIR)$(PREFIX)/share/man/man1
+       install -m 644 ikiwiki.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki.1