1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

- Update to version 2.61.

This commit is contained in:
Henrik Brix Andersen 2008-08-17 21:21:41 +00:00
parent 4f21024b90
commit adfa33e68e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=218729
3 changed files with 22 additions and 5 deletions

View File

@ -5,7 +5,7 @@
# $FreeBSD$
PORTNAME= ikiwiki
PORTVERSION= 2.60
PORTVERSION= 2.61
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_DEBIAN_POOL} \
http://kitenet.net/~joey/debian/unstable/
@ -74,7 +74,6 @@ post-patch:
-e 's|$$(PREFIX)/share/man|$$(PREFIX)/man|' \
-e 's|$$(PREFIX)/lib/w3m|$$(PREFIX)/libexec/w3m|' \
-e 's|-wholename|-path|' \
-e 's|cp -a|install -m 755|' \
-e 's|\(install -d $$(DESTDIR)/etc/ikiwiki\)|#\1|' \
-e 's|\(install -m 0644 wikilist\)|#\1|' \
-e 's|\(install -m 0644 auto.setup\)|#\1|' \

View File

@ -1,3 +1,3 @@
MD5 (ikiwiki_2.60.tar.gz) = 94746e28cf66b70cd1a30cbb3f6e973b
SHA256 (ikiwiki_2.60.tar.gz) = 4ed22793b2fb6ffedf7dc2193d4b8b0681bbc9a0f933b8bca92b5a880f54527d
SIZE (ikiwiki_2.60.tar.gz) = 922320
MD5 (ikiwiki_2.61.tar.gz) = 17e76b7f374b6724172deebdaf35d07e
SHA256 (ikiwiki_2.61.tar.gz) = c48bcd68562ee152e7639e84895304ca48f4771216a046523fd6eef30673abd8
SIZE (ikiwiki_2.61.tar.gz) = 924879

View File

@ -0,0 +1,18 @@
--- Makefile.PL.orig 2008-08-16 14:57:00.000000000 +0200
+++ Makefile.PL 2008-08-16 15:03:45.000000000 +0200
@@ -67,9 +67,12 @@ extra_install:
done
install -d $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins
- for file in `find plugins -maxdepth 1 -type f ! -wholename plugins/.\* | grep -v demo`; do \
- cp -a $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \
- done \
+ for file in `find plugins -maxdepth 1 -type f ! -wholename plugins/.\* ! -name \*demo\* -name \*.py`; do \
+ install -m 644 $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \
+ done
+ for file in `find plugins -maxdepth 1 -type f ! -wholename plugins/.\* ! -name \*demo\* ! -name \*.py`; do \
+ install -m 755 $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \
+ done
install -d $(DESTDIR)$(PREFIX)/share/man/man1
install -m 644 ikiwiki.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki.1