diff options
-rw-r--r-- | editors/zim/Makefile | 3 | ||||
-rw-r--r-- | editors/zim/distinfo | 3 | ||||
-rw-r--r-- | editors/zim/patches/patch-zim_plugins_linesorter.py | 15 |
3 files changed, 19 insertions, 2 deletions
diff --git a/editors/zim/Makefile b/editors/zim/Makefile index 08a7d0bfcf2..02bf923be9b 100644 --- a/editors/zim/Makefile +++ b/editors/zim/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.1.1.1 2011/05/15 03:08:37 ryoon Exp $ +# $NetBSD: Makefile,v 1.2 2011/08/25 10:11:08 ryoon Exp $ # DISTNAME= zim-0.52 +PKGREVISION= 1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= editors MASTER_SITES= http://zim-wiki.org/downloads/ diff --git a/editors/zim/distinfo b/editors/zim/distinfo index 7704a14df0a..a8ddc999d6c 100644 --- a/editors/zim/distinfo +++ b/editors/zim/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.1.1.1 2011/05/15 03:08:37 ryoon Exp $ +$NetBSD: distinfo,v 1.2 2011/08/25 10:11:09 ryoon Exp $ SHA1 (zim-0.52.tar.gz) = 493bc0380699e350ea481b1124389763e3f6504d RMD160 (zim-0.52.tar.gz) = 1b9f5f00a2a68964570e68db17d3773ac35267bf Size (zim-0.52.tar.gz) = 1195768 bytes +SHA1 (patch-zim_plugins_linesorter.py) = 7915efdfe11f0c9e7a48412f09715694a5eac70a diff --git a/editors/zim/patches/patch-zim_plugins_linesorter.py b/editors/zim/patches/patch-zim_plugins_linesorter.py new file mode 100644 index 00000000000..959d5d75ae8 --- /dev/null +++ b/editors/zim/patches/patch-zim_plugins_linesorter.py @@ -0,0 +1,15 @@ +$NetBSD: patch-zim_plugins_linesorter.py,v 1.1 2011/08/25 10:11:09 ryoon Exp $ + +Fix build with python25 + +--- zim/plugins/linesorter.py.orig 2011-04-07 20:21:33.000000000 +0000 ++++ zim/plugins/linesorter.py +@@ -3,6 +3,8 @@ + # Copyright 2011 NorfCran <norfcran@gmail.com> + # License: same as zim (gpl) + ++from __future__ import with_statement ++ + import gtk + + from zim.plugins import PluginClass |