[BACK]Return to openxm-shared.spec.in CVS log [TXT][DIR] Up to [local] / OpenXM / misc / packages / Linux / RPM

Diff for /OpenXM/misc/packages/Linux/RPM/openxm-shared.spec.in between version 1.1 and 1.6

version 1.1, 2000/03/10 10:25:22 version 1.6, 2000/08/29 06:48:48
Line 1 
Line 1 
 # $OpenXM$  # $OpenXM: OpenXM/misc/packages/Linux/RPM/openxm-shared.spec.in,v 1.5 2000/03/16 10:07:04 takayama Exp $
 #  openxm-shared.spec.in  #  openxm-shared.spec.in
 #  #
 %define ver      1.1.2  %define ver      1.1.3
 %define prefix   /usr/local  %define prefix   /usr/local
 %define work     /var/tmp  %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  Name:      openxm-shared
 Version:   %ver  Version:   %ver
 Release:   test  Release:   test
 Copyright: See OpenXM/Copyright  Copyright: See OpenXM/Copyright
 Group:     Mathematical Software  Group:     Mathematical Software
 Source:    ftp://ftp.math.sci.kobe-u.ac.jp/pub/OpenXM/openxm-1.1.2.tar.gz  Source:    ftp://ftp.math.sci.kobe-u.ac.jp/pub/OpenXM/openxm-1.1.3.tar.gz
 URL:       http://www.math.sci.kobe-u.ac.jp/OpenXM  URL:       http://www.openxm.org, http://www.math.sci.kobe-u.ac.jp/OpenXM
 BuildRoot:  %{work}/%{name}-root  BuildRoot:  %{work}/%{name}-root
 ## BuildRoot should be removed in the real package building.  ## BuildRoot should be removed in the real package building.
   
   
 %description  %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.  support the OpenXM protocol.
 Main clients are asir and mathematica (math).  Main clients are asir and mathematica (math).
 Servers are ox_asir, ox_sm1, ox_gnuplot, ox_math, ox_phc, ox_tigers.  Servers are ox_asir, ox_sm1, ox_gnuplot, ox_math, ox_phc, ox_tigers.
Line 37  make
Line 37  make
 %install  %install
 /bin/rm -rf $RPM_BUILD_ROOT%{prefix}/OpenXM  /bin/rm -rf $RPM_BUILD_ROOT%{prefix}/OpenXM
 make install-shared-files PREFIX=$RPM_BUILD_ROOT%{prefix}  make install-shared-files PREFIX=$RPM_BUILD_ROOT%{prefix}
   make install-man-pages-for-rpm PREFIX=$RPM_BUILD_ROOT%{prefix}
   
 %clean  %clean
 rm -rf $RPM_BUILD_ROOT%{prefix}/OpenXM  rm -rf $RPM_BUILD_ROOT%{prefix}/OpenXM
Line 58  rm -rf $RPM_BUILD_ROOT%{prefix}/bin/oxgp
Line 59  rm -rf $RPM_BUILD_ROOT%{prefix}/bin/oxgp
 %{prefix}/OpenXM/lib/asir/*  %{prefix}/OpenXM/lib/asir/*
 %{prefix}/OpenXM/man/*  %{prefix}/OpenXM/man/*
 %{prefix}/OpenXM/include/*  %{prefix}/OpenXM/include/*
 %{prefix}/OpenXM/rc/*  
 %{prefix}/OpenXM/Copyright/*  %{prefix}/OpenXM/Copyright/*
   %{prefix}/man/man1/openxm.1
   %{prefix}/man/man1/sm1.1
 %doc  %{prefix}/OpenXM/doc/*  %doc  %{prefix}/OpenXM/doc/*
 ## %config %{prefix}/OpenXM/lib/asir/asir_key  ## %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
   
   

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.6

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>