0978775a29
Changelog: === 0.56 - Mon 2 Apr 2012 === * Merged support for Git and Mercurial version control backends - Damien Accorsi & John Drinkwater * Merged plugin for "ditaa" diagrams - YPWang * Merged patch for different configuration profiles, allowing per notebook configuration of plugins, font etc. - Mariano Draghi * Added drag & drop support for the Attachment Browser plugin * Made sidepane and tagcloud remember state * Fixed critical bug for opening email adresses without "mailto:" prefix * Fixed bug where context menu for page index applied to the current page instead of the selected page * Added a Serbian translation === 0.55 - Tue 28 Feb 2012 === * Numbered lists are now supported * The index now has "natural" sorting, so "9" goes before "10" * Added new plugin to show a Table Of Contents per page, and allows modifying the outline * Added Markdown (with pandoc extensions) as an export format * New context menu item "move text" for refactoring text to a new page * Tasklist now supports a "next:" keyword to indicate dependencies, and it can hide tasks that are not yet actionable * Made zim taskbar icons and trayicon overloadable in theme - Andrei * Fixed behavior of Recent Pages pathbar in cases where part of the history is dropped * Fixed behavior of the Search dialog, it no longer hangs and also allows cancelling the search * Fixed bug where replacing a word (e.g spell correction) could drop formatting * Fixed behavior of case-sensitive rename on a case-insensitive file system (windows)
54 lines
1.7 KiB
Makefile
54 lines
1.7 KiB
Makefile
# $NetBSD: Makefile,v 1.7 2012/08/11 15:16:32 ryoon Exp $
|
|
#
|
|
|
|
DISTNAME= zim-0.56
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= editors
|
|
MASTER_SITES= http://zim-wiki.org/downloads/
|
|
|
|
MAINTAINER= ryoon@NetBSD.org
|
|
HOMEPAGE= http://zim-wiki.org/
|
|
COMMENT= Zim brings the concept of a wiki to your desktop
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
REPLACE_PYTHON= ${WRKSRC}/zim.py
|
|
PYDISTUTILSPKG= YES
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-gobject-[0-9]*:../../devel/py-gobject
|
|
DEPENDS+= ${PYPKGPREFIX}-gtk2-[0-9]*:../../x11/py-gtk2
|
|
DEPENDS+= ${PYPKGPREFIX}-xdg-[0-9]*:../../devel/py-xdg
|
|
DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3
|
|
DEPENDS+= ${PYPKGPREFIX}-cElementTree-[0-9]*:../../textproc/py-cElementTree
|
|
DEPENDS+= xdg-utils-[0-9]*:../../misc/xdg-utils
|
|
|
|
SUBST_CLASSES+= data-path
|
|
SUBST_STAGE.data-path= pre-configure
|
|
SUBST_FILES.data-path= zim/config.py
|
|
SUBST_SED.data-path= -e 's,/usr/local/share/,${PREFIX}/share/,'
|
|
|
|
SUBST_CLASSES+= fix-python
|
|
SUBST_STAGE.fix-python= pre-configure
|
|
SUBST_MESSAGE.fix-python= Fixing dynamic python
|
|
SUBST_FILES.fix-python+= zim/_lib/xdot.py
|
|
SUBST_FILES.fix-python+= zim/_version.py
|
|
SUBST_FILES.fix-python+= zim/inc/xdot.py
|
|
SUBST_SED.fix-python+= -e 's,/usr/bin/env python,${PYTHONBIN},'
|
|
|
|
SUBST_CLASSES+= man-path
|
|
SUBST_STAGE.man-path= pre-configure
|
|
SUBST_FILES.man-path+= setup.py
|
|
SUBST_SED.man-path= -e s,share/man/man1,${PKGMANDIR}/man1,
|
|
|
|
.include "../../lang/python/pyversion.mk"
|
|
.if ${PYPKGPREFIX} == "py25"
|
|
DEPENDS+= ${PYPKGPREFIX}-simplejson-[0-9]*:../../converters/py-simplejson
|
|
.endif
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|