7ceff10a5b
History ======= 1.4.3 (2014-07-30) ------------------ * Show warnings on loading imagedrawers in debug mode * ImageDraw#image() accepts Image objects * Fix bugs - PNG: could not load png imagedrawer if could not access PIL.PILLOW_VERSION 1.4.2 (2014-07-12) ------------------ * SVG: Adjust text alignment precisely * Add plugin events: node.changing and cleanup * ImageDraw#image() accepts image from IO objects * Fix bugs - PDF: Fix failure text rotating - PDF: Fix failure pasting PNG images (256 palette/transparency) - PNG: Fix background of node was transparent on pasting transparent images
32 lines
964 B
Makefile
32 lines
964 B
Makefile
# $NetBSD: Makefile,v 1.17 2014/08/26 11:44:50 obache Exp $
|
|
|
|
DISTNAME= blockdiag-1.4.3
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://pypi.python.org/packages/source/b/blockdiag/
|
|
|
|
MAINTAINER= obache@NetBSD.org
|
|
HOMEPAGE= http://blockdiag.com/
|
|
COMMENT= Generate block-diagram image file from spec-text file
|
|
LICENSE= apache-2.0
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-Pillow>=2.2.1:../../graphics/py-Pillow
|
|
DEPENDS+= ${PYPKGPREFIX}-funcparserlib>=0.3.6:../../devel/py-funcparserlib
|
|
DEPENDS+= ${PYPKGPREFIX}-webcolors-[0-9]*:../../www/py-webcolors
|
|
|
|
PYTHON_SELF_CONFLICT= yes
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
INSTALLATION_DIRS+= ${PKGMANDIR}/man1
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/blockdiag.1 \
|
|
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.if ${PYPKGPREFIX} == "py26"
|
|
DEPENDS+= ${PYPKGPREFIX}-ordereddict-[0-9]*:../../devel/py-ordereddict
|
|
.endif
|
|
MESSAGE_SUBST+= PYPKGPREFIX=${PYPKGPREFIX}
|
|
.include "../../mk/bsd.pkg.mk"
|