diff options
author | acm <acm@FreeBSD.org> | 2012-08-10 03:09:34 +0800 |
---|---|---|
committer | acm <acm@FreeBSD.org> | 2012-08-10 03:09:34 +0800 |
commit | bbdcc1bb4c0035b0fa1b192276b8918d0e1ca046 (patch) | |
tree | aa61a9b68eaea6cb5b14d77fc572dade7385631d | |
parent | fd21b2ec9cd02a32ae909e6e7b4ca55b1207bffc (diff) | |
download | freebsd-ports-gnome-bbdcc1bb4c0035b0fa1b192276b8918d0e1ca046.tar.gz freebsd-ports-gnome-bbdcc1bb4c0035b0fa1b192276b8918d0e1ca046.tar.zst freebsd-ports-gnome-bbdcc1bb4c0035b0fa1b192276b8918d0e1ca046.zip |
- Fix a problem handle utf-8 string
- Bump PORTREVISION
Reported by: H hm _ at __ hm.net.br via email
-rw-r--r-- | editors/zim/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editors/zim/Makefile b/editors/zim/Makefile index ba1980bbf34b..e647741085ae 100644 --- a/editors/zim/Makefile +++ b/editors/zim/Makefile @@ -7,7 +7,7 @@ PORTNAME= zim PORTVERSION= 0.56 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= editors python MASTER_SITES= http://www.zim-wiki.org/downloads/ @@ -70,6 +70,7 @@ RUN_DEPENDS+= ditaa:${PORTSDIR}/graphics/ditaa post-patch: @${REINPLACE_CMD} -e 's|share/man|man|' ${WRKSRC}/setup.py + @${REINPLACE_CMD} -e "s|decode('utf-8')|decode('utf-8','replace')|g" ${WRKSRC}/zim/utils.py post-install: -@update-desktop-database |