Update of /cvsroot/easycalc/easycalc
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv8616
Modified Files:
makedistro
Log Message:
Update makedistro for current configure and Makefile.
Index: makedistro
===================================================================
RCS file: /cvsroot/easycalc/easycalc/makedistro,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** makedistro 7 Nov 2002 17:52:19 -0000 1.1
--- makedistro 13 Sep 2006 14:34:41 -0000 1.2
***************
*** 1,3 ****
! #!/bin/sh
rm -r /tmp/easycalc
if [ -z "$1" ]; then
--- 1,3 ----
! #!/bin/sh -x
rm -r /tmp/easycalc
if [ -z "$1" ]; then
***************
*** 11,18 ****
mkdir /tmp/EasyCalc-$VERSION/binary
# Create changelog
! rcs2log | sed -e "s#/cvsroot/easycalc/easycalc/##g" > /tmp/ChangeLog
# Unpack the CVS
cd /tmp
! cvs -z3 -d:ext:on...@cv.../cvsroot/easycalc export -r $1 easycalc
# Move the tutorial directory
mv /tmp/easycalc/tutorial /tmp/EasyCalc-$VERSION
--- 11,18 ----
mkdir /tmp/EasyCalc-$VERSION/binary
# Create changelog
! rcs2log -h users.sourceforge.net > /tmp/ChangeLog
# Unpack the CVS
cd /tmp
! cvs -z3 -d:ext:tvo...@ea.../cvsroot/easycalc export -r $1 easycalc
# Move the tutorial directory
mv /tmp/easycalc/tutorial /tmp/EasyCalc-$VERSION
***************
*** 22,31 ****
# Compile calc_small
cd /tmp/easycalc
! ./configure
make
cp calc_en.prc /tmp/EasyCalc-$VERSION/binary/calc_small.prc
! # Compile other versions of cal
make distclean
! ./configure --enable-specfun
make
mv calc_cs.prc /tmp/EasyCalc-$VERSION/binary/calc_cs_iso.prc
--- 22,31 ----
# Compile calc_small
cd /tmp/easycalc
! ./configure --disable-specfun --disable-graphfun --disable-os5hires --disable-diasupport
make
cp calc_en.prc /tmp/EasyCalc-$VERSION/binary/calc_small.prc
! # Compile full versions of calc
make distclean
! ./configure --with-sonysdk --with-handerasdk
make
mv calc_cs.prc /tmp/EasyCalc-$VERSION/binary/calc_cs_iso.prc
***************
*** 36,41 ****
cd ..
make
- make INSTALL
mv calc_cs.prc /tmp/EasyCalc-$VERSION/binary/calc_cs_win.prc
# Create other important thigs in the Output
mv /tmp/ChangeLog /tmp/EasyCalc-$VERSION/ChangeLog
--- 36,42 ----
cd ..
make
mv calc_cs.prc /tmp/EasyCalc-$VERSION/binary/calc_cs_win.prc
+ cd langs; mv cs2.rcp cs.rcp; cd ..
+ make INSTALL
# Create other important thigs in the Output
mv /tmp/ChangeLog /tmp/EasyCalc-$VERSION/ChangeLog
***************
*** 44,48 ****
cd /tmp/EasyCalc-$VERSION/docs
mv COPYING CREDITS specfuncs.pdf ..
! cp ~ondra/pildev/mathlib/MathLib.prc /tmp/EasyCalc-$VERSION/binary
cd /tmp
! find EasyCalc-$VERSION | zip -@ ~ondra/pildev/EasyCalc-$VERSION.zip
--- 45,49 ----
cd /tmp/EasyCalc-$VERSION/docs
mv COPYING CREDITS specfuncs.pdf ..
! cp ~/PalmStuff/PalmDev/Projects/MathLib/MathLib/MathLib.prc /tmp/EasyCalc-$VERSION/binary
cd /tmp
! find EasyCalc-$VERSION | zip -@ ~/EasyCalc-$VERSION.zip
|