# HG changeset patch # User llev # Date 1449259767 -3600 # Node ID e56b92028f724bc6bc1ad92928b59283ee104579 # Parent fca172c323cf7d25ab147cbf7332b6be52bcbca8 Add xmgrace (5.1.25) diff -r fca172c323cf -r e56b92028f72 xmgrace/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xmgrace/description.txt Fri Dec 04 21:09:27 2015 +0100 @@ -0,0 +1,14 @@ +Grace is a WYSIWYG 2D plotting tool, a descendant of ACE/gr, also known as Xmgr. +It has a convenient point-and-click graphical user interface, allows precise +control of graph features, and does instant plot refresh. Grace enables you to +reach true publication quality. +Grace can export graphics to vector formats ((E)PS, MIF, and SVG) as well +as bitmap ones (PNG, PNM, and JPEG). It does a precise rendering of Type1 fonts. +Grace manages unlimited numbers of graph, of curves in each graph, and unlimited +data size. It has much flexibility in graphing options (colors, symbols, line +and text styles). +One of the prominent features is integrated data manipulation tools: versatile +curve fitting, FFT, histograms, convolution... (This version is compiled +without support for the NetCDF data format.) Grace can be scripted with its +own language, and also offers library functions to control it from a C or +Fortran application. diff -r fca172c323cf -r e56b92028f72 xmgrace/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xmgrace/receipt Fri Dec 04 21:09:27 2015 +0100 @@ -0,0 +1,38 @@ +# SliTaz package receipt. + +PACKAGE="xmgrace" +VERSION="5.1.25" +CATEGORY="math" +SHORT_DESC="Grace is a WYSIWYG 2D plotting tool." +MAINTAINER="Lucas Levrel " +LICENSE="GPL2" +SOURCE="grace" +WEB_SITE="http://plasma-gate.weizmann.ac.il/Grace/" +TARBALL="$SOURCE-$VERSION.tar.gz" +WGET_URL="ftp://plasma-gate.weizmann.ac.il/pub/grace/src/stable/$TARBALL" + +DEPENDS="libjpeg libpng fftw lesstif" +BUILD_DEPENDS="jpeg-dev libpng-dev fftw-dev lesstif-dev xorg-printproto bison" + +compile_rules() +{ + ./configure $CONFIGURE_ARGS \ + --prefix=/usr --sharedstatedir=/var/lib --localstatedir=/var \ + --enable-grace-home=/usr/share/grace \ + --without-pdf-library \ + --disable-netcdf --disable-editres \ + --with-editor="editor" --with-helpviewer="browser %s" \ + --disable-xmhtml && + make && + make install && + make links +} + +genpkg_rules() +{ + rm -r $install/usr/share/grace/auxiliary/magic.grace \ + $install/usr/share/grace/doc/*.pdf \ + $install/usr/share/grace/doc/*.1 \ + $install/usr/man + cp -a $install/* $fs +}