aboutsummaryrefslogtreecommitdiff
path: root/www/ikiwiki
diff options
context:
space:
mode:
authorHenrik Brix Andersen <brix@FreeBSD.org>2008-08-17 21:21:41 +0000
committerHenrik Brix Andersen <brix@FreeBSD.org>2008-08-17 21:21:41 +0000
commitadfa33e68e60fab02861ee5c8b73ce6bc73c75d1 (patch)
tree7ce85ea27756ffcf59f60044db9fe3672d40f795 /www/ikiwiki
parent4f21024b902b0ffa72685a164a5ef4d27e0a49b2 (diff)
downloadports-adfa33e68e60fab02861ee5c8b73ce6bc73c75d1.tar.gz
ports-adfa33e68e60fab02861ee5c8b73ce6bc73c75d1.zip
Notes
Diffstat (limited to 'www/ikiwiki')
-rw-r--r--www/ikiwiki/Makefile3
-rw-r--r--www/ikiwiki/distinfo6
-rw-r--r--www/ikiwiki/files/patch-Makefile.PL18
3 files changed, 22 insertions, 5 deletions
diff --git a/www/ikiwiki/Makefile b/www/ikiwiki/Makefile
index a4fc8affcc93..db140859a207 100644
--- a/www/ikiwiki/Makefile
+++ b/www/ikiwiki/Makefile
@@ -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|' \
diff --git a/www/ikiwiki/distinfo b/www/ikiwiki/distinfo
index dc89691e69c9..2059d06bbfb2 100644
--- a/www/ikiwiki/distinfo
+++ b/www/ikiwiki/distinfo
@@ -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
diff --git a/www/ikiwiki/files/patch-Makefile.PL b/www/ikiwiki/files/patch-Makefile.PL
new file mode 100644
index 000000000000..e5df313f20c9
--- /dev/null
+++ b/www/ikiwiki/files/patch-Makefile.PL
@@ -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