pkgsrc/graphics/veusz/Makefile
wiz 5777ba9064 Update to 1.21. Convert to distutils.mk and add egg.
Fix pkglint warnings.

Changes in 1.21:
 * Add HDF5 saved document format
 * Add filled curve error bar style
 * Add fill left/right options for point plotter
 * Add filetype filters to import dialog file browser dialog
 * In file completer in import dialog, use selected tab as filter
 * Move code to use PyQt new style signals
 * Add a master color setting for xy point and nonorthpoint plot
 * Line labelling algorithm much improved in contour plots, which
   rotates text to match line angle and avoids label overlaps
 * More accurate axis tick label bounding boxes, allowing rotated
   labels to be placed close together
 * Add reflection and rotation options to vector field widget
 * Switch to scientific notation earlier when showing float settings

Bug fixes:
 * Direction combo did not work in import dialog
 * Saving text datasets did not work in Python3
 * Fix partial dataset evaluation issue when loading documents
 * 2D non-regular pixel spaced images give error if clipped in y
 * Handle Unicode quoted characters in simple text data files
 * xcent/ycent in Dataset2D import plugins were ignored
 * promote_tab broken for import plugins
 * Full screen view when all pages are deleted
 * Crash with empty dataset and boxplot widget
 * Fix copy and paste of datasets
 * Python 3 resizing axis bug
 * Crash if picking/zooming on document with no pages
 * Crash if reediting histogram dataset with blank output entry
 * Use end of text formatting string beyond format specifier
 * When writing SVG text as text, use xml:space="preserve" to
   avoid missing whitespace
 * Embedding socket issue on Python 3.4+
2014-08-21 20:38:47 +00:00

48 lines
1.7 KiB
Makefile

# $NetBSD: Makefile,v 1.51 2014/08/21 20:38:47 wiz Exp $
DISTNAME= veusz-1.21
CATEGORIES= graphics
MASTER_SITES= http://download.gna.org/veusz/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://home.gna.org/veusz/
COMMENT= Scientific plotting package
LICENSE= gnu-gpl-v2
USE_LANGUAGES= c c++
REPLACE_PYTHON+= examples/embedexample.py
REPLACE_PYTHON+= veusz/veusz_listen.py
REPLACE_PYTHON+= veusz/veusz_main.py
INSTALLATION_DIRS+= share/applications
INSTALLATION_DIRS+= share/icons/hicolor/128x128/apps
INSTALLATION_DIRS+= share/icons/hicolor/16x16/apps
INSTALLATION_DIRS+= share/icons/hicolor/32x32/apps
INSTALLATION_DIRS+= share/icons/hicolor/48x48/apps
INSTALLATION_DIRS+= share/icons/hicolor/64x64/apps
INSTALLATION_DIRS+= share/icons/hicolor/scalable/apps
INSTALLATION_DIRS+= share/mime/packages
post-install:
${INSTALL_DATA} ${WRKSRC}/support/veusz.desktop \
${DESTDIR}${PREFIX}/share/applications
for s in 16 32 48 64 128;do \
${INSTALL_DATA} ${WRKSRC}/icons/veusz_$${s}.png \
${DESTDIR}${PREFIX}/share/icons/hicolor/$${s}x$${s}/apps/veusz.png; \
done
${INSTALL_DATA} ${WRKSRC}/icons/veusz.svg \
${DESTDIR}${PREFIX}/share/icons/hicolor/scalable/apps
${INSTALL_DATA} ${WRKSRC}/support/veusz.xml \
${DESTDIR}${PREFIX}/share/mime/packages
.include "../../databases/shared-mime-info/mimedb.mk"
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
.include "../../lang/python/application.mk"
.include "../../lang/python/distutils.mk"
.include "../../x11/qt4-libs/buildlink3.mk"
.include "../../x11/py-qt4/buildlink3.mk"
.include "../../x11/py-sip/buildlink3.mk"
.include "../../math/py-numpy/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"