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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
#!/bin/sh
#
# @(#)makerel.sh 6.13 99/12/27
#
# Make software binary release
#
# xmcd - Motif(tm) CD Audio Player
# cda - Command-line CD Audio Player
#
# Copyright (C) 1993-2000 Ti Kan
# E-mail: ti@amb.org
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# The file containing a list of binary release files
BINLIST=misc_d/BINLIST
TMPDIR=/tmp/_makerel_d
ZFILE=xmcdbin.tar.gz
UUEFILE=xmcdbin.uue
COMPRESS=gzip
UNCOMPRESS=gunzip
ENCODE=uuencode
DECODE=uudecode
TAR=/usr/local/bin/scotar
# Use Sysv echo if possible
if [ -x /usr/5bin/echo ] # SunOS SysV echo
then
ECHO=/usr/5bin/echo
elif [ -z "`(echo -e a) 2>/dev/null | fgrep e`" ] # GNU bash, etc.
then
ECHO="echo -e"
else # generic SysV
ECHO=echo
fi
# Select tar program
if [ ! -x $TAR ]
then
TAR=tar
fi
CURDIR=`pwd`
if [ `basename "$CURDIR"` = misc_d ]
then
cd ..
elif [ ! -f install.sh ]
then
$ECHO "You must run the makerel.sh script while in the xmcd"
$ECHO "source code distribution top-level directory or in the"
$ECHO "misc_d subdirectory."
exit 1
fi
if [ ! -r $BINLIST ]
then
$ECHO "Error: Cannot open $BINLIST"
exit 2
fi
VERS=`grep "VERSION=" $BINLIST | sed 's/^.*VERSION=//'`
$ECHO "Creating xmcd/cda version $VERS binary release...\n"
trap "$ECHO 'Interrupted!'; rm -rf $TMPDIR $ZFILE $UUEFILE; exit 1" 1 2 3 5 15
# Make temp directory and copy release files to it
rm -rf $TMPDIR
mkdir -p $TMPDIR
for i in `awk '!/^#/ { print $1 }' $BINLIST`
do
$ECHO "\t$i"
DEST=`dirname $TMPDIR/$i`
mkdir -p $DEST >/dev/null 2>&1
cp $i $DEST
done
# Strip the binary symbol tables
strip $TMPDIR/xmcd_d/xmcd >/dev/null 2>&1
strip $TMPDIR/cda_d/cda >/dev/null 2>&1
strip $TMPDIR/util_d/wm2xmcd >/dev/null 2>&1
strip $TMPDIR/util_d/cddbcmd >/dev/null 2>&1
# Remove comment section of binaries if possible
(mcs -da "@(#)xmcd $VERS (C) Ti Kan 1993-2000" \
$TMPDIR/xmcd_d/xmcd) >/dev/null 2>&1
(mcs -da "@(#)cda $VERS (C) Ti Kan 1993-2000" \
$TMPDIR/cda_d/cda) >/dev/null 2>&1
(mcs -da "@(#)wm2xmcd $VERS (C) Ti Kan 1993-2000" \
$TMPDIR/util_d/wm2xmcd) >/dev/null 2>&1
(mcs -da "@(#)cddbcmd $VERS (C) Ti Kan 1993-2000" \
$TMPDIR/util_d/cddbcmd) >/dev/null 2>&1
$ECHO "\nFixing permissions..."
(cd $TMPDIR; find * -type f -print | xargs chmod 444)
$ECHO "\nCreating \"$COMPRESS\"ed tar archive..."
# Create tar archive and compress it
(cd $TMPDIR; $TAR cf - *) | $COMPRESS >$ZFILE
$ECHO "\n\"$ENCODE\"ing..."
$ECHO '
Instructions to unpack xmcd v_VERS_ binary and other info
------------------------------------------------------
At the end of this message is a "_COMPRESS_"ed and "_ENCODE_"ed
tar file containing the xmcd, cda, wm2xmcd and cddbcmd binaries
as well as their supporting files. To extract, save this
message in a file "_UUEFILE_" and do the following while
logged in as root:
_DECODE_ _UUEFILE_
_UNCOMPRESS_ < _ZFILE_ | tar xvf -
sh ./install.sh
Be sure to run the "install.sh" script to install and configure
the software. Otherwise, it will not work properly.
For further information, see the XMCDLIB/docs/README file after
installation.
' | sed -e "s/_VERS_/$VERS/g" \
-e "s/_UUEFILE_/$UUEFILE/g" \
-e "s/_ZFILE_/$ZFILE/g" \
-e "s/_COMPRESS_/$COMPRESS/g" \
-e "s/_UNCOMPRESS_/$UNCOMPRESS/g" \
-e "s/_ENCODE_/$ENCODE/g" \
-e "s/_DECODE_/$DECODE/g" >$UUEFILE
# Uuencode
$ENCODE $ZFILE $ZFILE >>$UUEFILE
$ECHO "\n\n\n" >>$UUEFILE
rm -rf $TMPDIR
$ECHO ""
ls -l $ZFILE $UUEFILE
exit 0
|