diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2007-05-01 23:18:29 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2007-05-01 23:18:29 +0000 |
commit | d130292918c82eb0d794421bc6f442110569f21f (patch) | |
tree | 6e12a4e7147572f78dcf626433c171752a4f79ff /www/ikiwiki | |
parent | b9967a2fd375383169129061906249312784a185 (diff) | |
download | ports-d130292918c82eb0d794421bc6f442110569f21f.tar.gz ports-d130292918c82eb0d794421bc6f442110569f21f.zip |
Notes
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 |