wok-6.x rev 18669
Add xmgrace (5.1.25)
author | llev |
---|---|
date | Fri Dec 04 21:09:27 2015 +0100 (2015-12-04) |
parents | fca172c323cf |
children | 0606c4356e47 |
files | xmgrace/description.txt xmgrace/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/xmgrace/description.txt Fri Dec 04 21:09:27 2015 +0100 1.3 @@ -0,0 +1,14 @@ 1.4 +Grace is a WYSIWYG 2D plotting tool, a descendant of ACE/gr, also known as Xmgr. 1.5 +It has a convenient point-and-click graphical user interface, allows precise 1.6 +control of graph features, and does instant plot refresh. Grace enables you to 1.7 +reach true publication quality. 1.8 +Grace can export graphics to vector formats ((E)PS, MIF, and SVG) as well 1.9 +as bitmap ones (PNG, PNM, and JPEG). It does a precise rendering of Type1 fonts. 1.10 +Grace manages unlimited numbers of graph, of curves in each graph, and unlimited 1.11 +data size. It has much flexibility in graphing options (colors, symbols, line 1.12 +and text styles). 1.13 +One of the prominent features is integrated data manipulation tools: versatile 1.14 +curve fitting, FFT, histograms, convolution... (This version is compiled 1.15 +without support for the NetCDF data format.) Grace can be scripted with its 1.16 +own language, and also offers library functions to control it from a C or 1.17 +Fortran application.
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/xmgrace/receipt Fri Dec 04 21:09:27 2015 +0100 2.3 @@ -0,0 +1,38 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="xmgrace" 2.7 +VERSION="5.1.25" 2.8 +CATEGORY="math" 2.9 +SHORT_DESC="Grace is a WYSIWYG 2D plotting tool." 2.10 +MAINTAINER="Lucas Levrel <llev@slitaz.org>" 2.11 +LICENSE="GPL2" 2.12 +SOURCE="grace" 2.13 +WEB_SITE="http://plasma-gate.weizmann.ac.il/Grace/" 2.14 +TARBALL="$SOURCE-$VERSION.tar.gz" 2.15 +WGET_URL="ftp://plasma-gate.weizmann.ac.il/pub/grace/src/stable/$TARBALL" 2.16 + 2.17 +DEPENDS="libjpeg libpng fftw lesstif" 2.18 +BUILD_DEPENDS="jpeg-dev libpng-dev fftw-dev lesstif-dev xorg-printproto bison" 2.19 + 2.20 +compile_rules() 2.21 +{ 2.22 + ./configure $CONFIGURE_ARGS \ 2.23 + --prefix=/usr --sharedstatedir=/var/lib --localstatedir=/var \ 2.24 + --enable-grace-home=/usr/share/grace \ 2.25 + --without-pdf-library \ 2.26 + --disable-netcdf --disable-editres \ 2.27 + --with-editor="editor" --with-helpviewer="browser %s" \ 2.28 + --disable-xmhtml && 2.29 + make && 2.30 + make install && 2.31 + make links 2.32 +} 2.33 + 2.34 +genpkg_rules() 2.35 +{ 2.36 + rm -r $install/usr/share/grace/auxiliary/magic.grace \ 2.37 + $install/usr/share/grace/doc/*.pdf \ 2.38 + $install/usr/share/grace/doc/*.1 \ 2.39 + $install/usr/man 2.40 + cp -a $install/* $fs 2.41 +}