34 lines
781 B
Makefile
34 lines
781 B
Makefile
# $OpenBSD: Makefile,v 1.7 2014/09/19 23:12:19 bcallah Exp $
|
|
|
|
COMMENT = scientific plotting and graphing package
|
|
MODPY_EGG_VERSION = 1.21.1
|
|
DISTNAME = veusz-${MODPY_EGG_VERSION}
|
|
CATEGORIES = math graphics
|
|
|
|
HOMEPAGE = http://home.gna.org/veusz/
|
|
|
|
MAINTAINER = Brian Callahan <bcallah@openbsd.org>
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += lib/qt4/QtGui lib/qt4/QtXml m pthread stdc++ ${MODPY_WANTLIB}
|
|
|
|
MASTER_SITES = http://download.gna.org/veusz/
|
|
|
|
MODULES = lang/python \
|
|
x11/qt4
|
|
|
|
BUILD_DEPENDS = math/py-numpy \
|
|
x11/py-qt4
|
|
|
|
RUN_DEPENDS = math/py-numpy \
|
|
x11/py-qt4
|
|
|
|
# Veusz must be installed for the tests to work!
|
|
# Otherwise, complains that veusz.compat cannot be found and exits.
|
|
do-test:
|
|
cd ${WRKSRC}/tests && ${MODPY_BIN} runselftest.py
|
|
|
|
.include <bsd.port.mk>
|