diff options
author | miwi <miwi@FreeBSD.org> | 2007-05-02 07:18:29 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-05-02 07:18:29 +0800 |
commit | 4d6897675a0235f1bcffb71e8990a8121d8e4ba9 (patch) | |
tree | efb4e6339f4958ab61f90c4d54cac9699519f3ee /www/ikiwiki | |
parent | 374bc1ae47b9dfb03a88565744debd833e3c8765 (diff) | |
download | freebsd-ports-gnome-4d6897675a0235f1bcffb71e8990a8121d8e4ba9.tar.gz freebsd-ports-gnome-4d6897675a0235f1bcffb71e8990a8121d8e4ba9.tar.zst freebsd-ports-gnome-4d6897675a0235f1bcffb71e8990a8121d8e4ba9.zip |
- Update to 2.0
PR: 112322
Submitted by: Henrik Brix Andersen <henrik@brixandersen.dk> (maintainer)
Diffstat (limited to 'www/ikiwiki')
-rw-r--r-- | www/ikiwiki/Makefile | 2 | ||||
-rw-r--r-- | www/ikiwiki/distinfo | 6 | ||||
-rw-r--r-- | www/ikiwiki/files/patch-Makefile.PL | 17 |
3 files changed, 4 insertions, 21 deletions
diff --git a/www/ikiwiki/Makefile b/www/ikiwiki/Makefile index 43f0849e6a7e..47be78ea01ca 100644 --- a/www/ikiwiki/Makefile +++ b/www/ikiwiki/Makefile @@ -5,7 +5,7 @@ # $FreeBSD$ PORTNAME= ikiwiki -PORTVERSION= 1.51 +PORTVERSION= 2.00 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_DEBIAN_POOL} DISTNAME= ${PORTNAME}_${PORTVERSION} diff --git a/www/ikiwiki/distinfo b/www/ikiwiki/distinfo index 4b88b1c02bd8..02ae36479db1 100644 --- a/www/ikiwiki/distinfo +++ b/www/ikiwiki/distinfo @@ -1,3 +1,3 @@ -MD5 (ikiwiki_1.51.tar.gz) = 28e8e5d3830833a3ed5b9934407452a3 -SHA256 (ikiwiki_1.51.tar.gz) = 2cd365080193f2bdcf9a90c47b965a6d38d8c9e211771a9c3c46b7ae942c7f88 -SIZE (ikiwiki_1.51.tar.gz) = 418926 +MD5 (ikiwiki_2.00.tar.gz) = b5b54f606d939e27b0fa3277a4b4ca29 +SHA256 (ikiwiki_2.00.tar.gz) = 0288eae3b43ffd2702100cd14f799e38e3ef83e2d8d5c9522738678f517ae685 +SIZE (ikiwiki_2.00.tar.gz) = 421826 diff --git a/www/ikiwiki/files/patch-Makefile.PL b/www/ikiwiki/files/patch-Makefile.PL deleted file mode 100644 index 94cbb7e2cfd4..000000000000 --- a/www/ikiwiki/files/patch-Makefile.PL +++ /dev/null @@ -1,17 +0,0 @@ ---- Makefile.PL.orig Sun Apr 29 12:57:51 2007 -+++ Makefile.PL Sun Apr 29 13:27:51 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 |