=================================================================== RCS file: /home/cvs/OpenXM/misc/packages/Linux/RPM/openxm-shared.spec.in,v retrieving revision 1.2 retrieving revision 1.7 diff -u -p -r1.2 -r1.7 --- OpenXM/misc/packages/Linux/RPM/openxm-shared.spec.in 2000/03/10 14:57:52 1.2 +++ OpenXM/misc/packages/Linux/RPM/openxm-shared.spec.in 2000/09/02 02:45:02 1.7 @@ -1,24 +1,24 @@ -# $OpenXM: OpenXM/misc/packages/Linux/RPM/openxm-shared.spec.in,v 1.1 2000/03/10 10:25:22 takayama Exp $ +# $OpenXM: OpenXM/misc/packages/Linux/RPM/openxm-shared.spec.in,v 1.6 2000/08/29 06:48:48 takayama Exp $ # openxm-shared.spec.in # -%define ver 1.1.2 +%define ver 1.1.3 %define prefix /usr/local %define work /var/tmp -Summary: The OpenXM package is a collection of mathematical softwares integrated by the OpenXM protocol. This package contains architecture independent part of it. +Summary: The OpenXM package is a collection of mathematical software systems integrated by the OpenXM protocol. This package contains architecture independent part of it. Name: openxm-shared Version: %ver Release: test Copyright: See OpenXM/Copyright Group: Mathematical Software -Source: ftp://ftp.math.sci.kobe-u.ac.jp/pub/OpenXM/openxm-1.1.2.tar.gz -URL: http://www.math.sci.kobe-u.ac.jp/OpenXM +Source: ftp://ftp.math.sci.kobe-u.ac.jp/pub/OpenXM/openxm-1.1.3.tar.gz +URL: http://www.openxm.org BuildRoot: %{work}/%{name}-root ## BuildRoot should be removed in the real package building. %description -The OpenXM package is a collection of mathematical softwares that +The OpenXM package is a collection of mathematical software systems that support the OpenXM protocol. Main clients are asir and mathematica (math). Servers are ox_asir, ox_sm1, ox_gnuplot, ox_math, ox_phc, ox_tigers. @@ -37,6 +37,7 @@ make %install /bin/rm -rf $RPM_BUILD_ROOT%{prefix}/OpenXM make install-shared-files PREFIX=$RPM_BUILD_ROOT%{prefix} +make install-man-pages-for-rpm PREFIX=$RPM_BUILD_ROOT%{prefix} %clean rm -rf $RPM_BUILD_ROOT%{prefix}/OpenXM @@ -59,8 +60,19 @@ rm -rf $RPM_BUILD_ROOT%{prefix}/bin/oxgp %{prefix}/OpenXM/man/* %{prefix}/OpenXM/include/* %{prefix}/OpenXM/Copyright/* +%{prefix}/man/man1/openxm.1 +%{prefix}/man/man1/sm1.1 %doc %{prefix}/OpenXM/doc/* ## %config %{prefix}/OpenXM/lib/asir/asir_key +%post +if [ -f /var/tmp/asir_key.save ] ; then + cp -f /var/tmp/asir_key.save %{prefix}/OpenXM/lib/asir/asir_key ; +fi + +%preun +if [ -f %{prefix}/OpenXM/lib/asir/asir_key ] ; then + cp -f %{prefix}/OpenXM/lib/asir/asir_key /var/tmp/asir_key.save ; +fi