1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
Name: rlplot
Version: 1.3
Release: 1
Summary: A plotting program to create high quality graphs from data.
License: GPL
URL: http://rlplot.sourceforge.net
Group: Applications/Engineering
Prefix: %{_prefix}
BuildRoot: %{_tmppath}/%{name}-buildroot
Source: %{name}_%{version}.tar.gz
%description
RLPlot is is a plotting program to create high quality graphs from data.
Based on values stored in a spreadsheet several menus help you to create
graphs of your choice. The Graphs are displayed as you get them (WYSIWIG).
Double click any element of the graph (or a single click with the right
mouse button) to modify its properties. RLPlot is a cross platform
development for Linux and Windows. Exported file formats include
Scalable Vector Graphics (SVG), Encapsulated
Postscript (EPS).
%prep
%setup -q -n %{name}
%build
make -e
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p ${RPM_BUILD_ROOT}%{_bindir}
install -m 755 %{name} $RPM_BUILD_ROOT%{_prefix}/bin
install -m 755 exprlp $RPM_BUILD_ROOT%{_prefix}/bin
%clean
rm -rf "$RPM_BUILD_ROOT"
%files
%defattr(-,root,root)
%doc README RLPlot.bmp RLPLOT.ICO RLPlot.xpm gpl.txt
%{_bindir}/rlplot
%{_bindir}/exprlp
%changelog
* Sun Feb 25 2007 Reinhard Lackner
- release 1.3
* Thu Oct 19 2006 Reinhard Lackner
- release 1.2
* Fri Feb 24 2006 Reinhard Lackner
- release 1.1
* Wed Sep 07 2005 Reinhard Lackner
- release 1.0
* Tue Dec 21 2004 Reinhard Lackner
- release canditate 2, version 0.99.12b
* Sat May 31 2003 Reinhard Lackner
- modified for RLPlot 0.97b
* Sun Dec 29 2002 Reinhard Lackner
- modified for RLPlot 0.96b
* Mon Nov 25 2002 Guido Gonzato
- initial
|