added version to sea archive name

svn path=/trunk/boinc/; revision=5000
This commit is contained in:
Bruce Allen 2005-01-06 11:49:15 +00:00
parent a869084f87
commit 823e75e51d
5 changed files with 35 additions and 24 deletions

View File

@ -22077,16 +22077,18 @@ David 3 Jan 2005
reduce_main.C (new)
Bruce 5 Jan 2005
Bruce 6 Jan 2005
- added new directory which builds a self-extracting tar
archive (executable shell script) for installation on
unix platforms. This will only be made when building
the client GUI and installs both the boinc client and
client GUI. Written and tested by Bernd Machenschalk.
- next day revision, name shell script with appropriate
version/release number from configure.ac
Makefile.am
sea/ [New Directory]
make-sea.sh
Makefile
BOINC/
binstall.sh
Makefile.in
BOINC/ [THIS DIRECTORY IS SPURIOUS: NO LONGER NEEDED]

View File

@ -361,6 +361,7 @@ AC_CONFIG_FILES([
RSAEuro/source/Makefile
sched/boinc_path_config.py:py/Boinc/boinc_path_config.py.in
sched/Makefile
sea/Makefile
test/boinc_path_config.py:py/Boinc/boinc_path_config.py.in
test/Makefile
test/version.inc

View File

@ -1,4 +0,0 @@
cd BOINC &&
echo "cd \"`pwd`\" && ./boinc_client" > run_client &&
chmod +x run_client
echo now run `pwd`/run_client to run the client and `pwd`/boinc_gui to run the GUI

View File

@ -1,16 +0,0 @@
all: boinc_sea.sh
boinc_sea.sh: make-sea.sh sea.tar
sh make-sea.sh sea.tar boinc_sea.sh BOINC/binstall.sh
sea.tar: BOINC/boinc_client BOINC/boinc_gui BOINC/binstall.sh
tar cf $@ $^
BOINC/boinc_client: ../client/boinc_client
cp $< $@
BOINC/boinc_gui: ../clientgui/boinc_gui
cp $< $@
clean:
rm -f BOINC/boinc_* sea.tar boinc_sea.sh

28
sea/Makefile.in Normal file
View File

@ -0,0 +1,28 @@
vers = @BOINC_MAJOR_VERSION@.@BOINC_MINOR_VERSION@_@target@
sea = boinc_$(vers)_sea.sh
all: $(sea)
$(sea): sea.tar make-sea.sh Makefile
./make-sea.sh $< $@ BOINC/binstall.sh
sea.tar: BOINC/boinc_client BOINC/boinc_gui BOINC/binstall.sh
tar cf $@ $^
BOINC/boinc_client: ../client/boinc_client BOINC
cp $< $@
BOINC/boinc_gui: ../clientgui/boinc_gui BOINC
cp $< $@
BOINC/binstall.sh: BOINC
echo 'cd BOINC &&\
echo "cd \"`pwd`\" && ./boinc_client" > run_client &&\
chmod +x run_client &&\
echo now run `pwd`/run_client to run the client and `pwd`/boinc_gui to run the GUI' > $@
BOINC:
mkdir -p BOINC
clean:
rm -rf BOINC sea.tar $(sea)