diff options
author | itetcu <itetcu@FreeBSD.org> | 2006-09-10 16:05:25 +0800 |
---|---|---|
committer | itetcu <itetcu@FreeBSD.org> | 2006-09-10 16:05:25 +0800 |
commit | fef05119c5935c9869c62b8644b9669e17a9d179 (patch) | |
tree | fe9dd706e59e9378897cad353e94a68870795ff3 /math/qtiplot | |
parent | 2459018ea7d6433979cf1e33c7102affd506e30a (diff) | |
download | freebsd-ports-gnome-fef05119c5935c9869c62b8644b9669e17a9d179.tar.gz freebsd-ports-gnome-fef05119c5935c9869c62b8644b9669e17a9d179.tar.zst freebsd-ports-gnome-fef05119c5935c9869c62b8644b9669e17a9d179.zip |
- Update qtiplot from 0.8.6.2 to 0.8.7.2.
- Added support for evaluating mathematical expressions and executing scripts
using the Python.
- Added translation for French, German, Russian, Spanish, Swedish.
PR: ports/103050
Submitted by: Max Brazhnikov (maintainer)
Diffstat (limited to 'math/qtiplot')
-rw-r--r-- | math/qtiplot/Makefile | 47 | ||||
-rw-r--r-- | math/qtiplot/distinfo | 6 | ||||
-rw-r--r-- | math/qtiplot/files/patch-qtiplot_src_application.cpp | 11 |
3 files changed, 48 insertions, 16 deletions
diff --git a/math/qtiplot/Makefile b/math/qtiplot/Makefile index 95ec35ed4ce0..f1503dcaf561 100644 --- a/math/qtiplot/Makefile +++ b/math/qtiplot/Makefile @@ -6,34 +6,49 @@ # PORTNAME= qtiplot -PORTVERSION= 0.8.6.2 +PORTVERSION= 0.8.7.2 CATEGORIES= math science MASTER_SITES= http://soft.proindependent.com/src/ -DISTNAME= ${PORTNAME}-0.8.6-2 +DISTNAME= ${PORTNAME}-0.8.7-2 MAINTAINER= makc@issp.ac.ru COMMENT= An Origin clone for data analysis and scientific plotting -BUILD_DEPENDS= qmake:${PORTSDIR}/devel/qmake +BUILD_DEPENDS= qmake:${PORTSDIR}/devel/qmake \ + sip:${PORTSDIR}/devel/py-sip \ + pylupdate:${PORTSDIR}/x11-toolkits/py-qt LIB_DEPENDS= gsl.9:${PORTSDIR}/math/gsl \ origin.0:${PORTSDIR}/math/liborigin \ qwtplot3d:${PORTSDIR}/math/qwtplot3d USE_BZIP2= yes USE_GMAKE= yes +USE_PYTHON= 2.4 -PLIST_FILES= bin/qtiplot -#PORTDOCS= faq.html help.html +USE_DOS2UNIX= qtiplot/src/application.cpp USE_QT_VER= 3 MAKE_ENV= QTDIR=${QT_PREFIX} +OPTIONS= DOCS "Install the QtiPlot Handbook" on + .include <bsd.port.pre.mk> .if ${OSVERSION} < 500000 IGNORE= does not compile on FreeBSD 4.x .endif +.if !defined(WITHOUT_DOCS) +RUN_DEPENDS+= qtiplot-doc>=0:${PORTSDIR}/math/qtiplot-doc +.endif + +.if !defined(WITHOUT_NLS) +QTI_LANG= de es fr ru sv +PLIST_SUB+= NLS="" +.else +PLIST_SUB+= NLS="@comment " +.endif + QMAKE= qmake QMAKESPEC= ${LOCALBASE}/share/qt/mkspecs/freebsd-g++ @@ -49,7 +64,9 @@ post-patch: "s:../3rdparty/liborigin/include:${LOCALBASE}/include:" \ -e "s:/usr/include/qwtplot3d:${X11BASE}/include:" \ -e "/^unix:LIBS/s:-L /usr/lib:-L${LOCALBASE}/lib:" \ - -e "/^unix:documentation.path/s:/usr/share/doc/qtiplot:${DOCSDIR}:" \ + -e "/^unix:documentation.path/s:/usr/share/doc/qtiplot:${DATADIR}/manual:" \ + -e "s:/usr/include/python2.4:/usr/local/include/python2.4:" \ + -e "s:/usr/share/sip:/usr/local/share/py-sip/:" \ ${WRKSRC}/${d}/*.pro .endfor @@ -71,12 +88,16 @@ post-configure: .endfor do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/qtiplot/qtiplot ${PREFIX}/bin -#.if !defined(NOPORTDOCS) -# ${MKDIR} ${DOCSDIR} -#.for DOCFN in ${PORTDOCS} -# ${INSTALL_MAN} ${WRKSRC}/doc/${DOCFN} ${DOCSDIR} -#.endfor -#.endif + ${MKDIR} ${DATADIR} + ${INSTALL_PROGRAM} ${WRKSRC}/qtiplot/qtiplot ${DATADIR}/qtiplot + ${LN} -fs ${DATADIR}/qtiplot ${PREFIX}/bin/qtiplot + ${INSTALL_DATA} ${WRKSRC}/qtiplot/qtiplotrc.py ${DATADIR}/qtiplotrc.py +.if !defined(WITHOUT_NLS) +.for i in ${QTI_LANG} + ${MKDIR} ${DATADIR}/translations/ + ${INSTALL_DATA} ${WRKSRC}/qtiplot/translations/qtiplot_${i}.qm \ + ${DATADIR}/translations/ +.endfor +.endif .include <bsd.port.post.mk> diff --git a/math/qtiplot/distinfo b/math/qtiplot/distinfo index dfa109ea4035..acbd50c1ca77 100644 --- a/math/qtiplot/distinfo +++ b/math/qtiplot/distinfo @@ -1,3 +1,3 @@ -MD5 (qtiplot-0.8.6-2.tar.bz2) = 6025c050b291671ffcfcac7949e97c4e -SHA256 (qtiplot-0.8.6-2.tar.bz2) = 64342a9c19ab7fff8dd1ea7e1dafe331709393a6ad892ffda8138ec07c3df657 -SIZE (qtiplot-0.8.6-2.tar.bz2) = 655993 +MD5 (qtiplot-0.8.7-2.tar.bz2) = 948cc4922eea51abb7016c6ca2d070d1 +SHA256 (qtiplot-0.8.7-2.tar.bz2) = 70be0f8b5f137542a5d1d62c78a8a1d38f657ac69e33e483ff1546baa400ced7 +SIZE (qtiplot-0.8.7-2.tar.bz2) = 736394 diff --git a/math/qtiplot/files/patch-qtiplot_src_application.cpp b/math/qtiplot/files/patch-qtiplot_src_application.cpp new file mode 100644 index 000000000000..090bd45c6b18 --- /dev/null +++ b/math/qtiplot/files/patch-qtiplot_src_application.cpp @@ -0,0 +1,11 @@ +--- qtiplot/src/application.cpp.orig Wed Sep 6 01:26:14 2006 ++++ qtiplot/src/application.cpp Fri Sep 8 22:21:43 2006 +@@ -4240,7 +4240,7 @@ + workingDir = settings.readEntry("/WorkingDir", qApp->applicationDirPath()); + templatesDir = settings.readEntry("/TemplatesDir", qApp->applicationDirPath()); + +- helpFilePath="/usr/share/doc/qtiplot/index.html"; ++ helpFilePath=qApp->applicationDirPath()+"/manual/index.html"; + #ifdef Q_OS_WIN // Windows systems + helpFilePath=qApp->applicationDirPath()+"/index.html"; + #endif |