#! /bin/sh skip=175 # This script was generated using Makeself 1.5.4 CRCsum=2249496964 MD5=00000000000000000000000000000000 label="Visual 3270 for Linux" script=sh targetdir=visual3270 scriptargs="setup.sh" keep=n TMPROOT=${TMPDIR:=/tmp} finish=true; xterm_loop=; [ x"$1" = x-xwin ] && { finish="echo Press Return to close this window...; read junk"; xterm_loop=1; shift 1; } if [ x"$1" = "x-help" -o x"$1" = "x--help" ]; then cat << tac 1) Getting help or info about $0 : $0 --help Print this message $0 --info Print embedded info : title, default target directory, embedded script ... $0 --lsm Print embedded lsm entry (or no LSM) $0 --list Print the list of files in the archive $0 --check Checks integrity of the archive 2) Running $0 : $0 [options] [additional arguments to embedded script] with following options (in that order) --confirm Ask before running embedded script --keep Do not erase target directory after running embedded script --target NewDirectory Extract in NewDirectory tac exit 0; fi if [ x"$1" = "x-lsm" -o x"$1" = "x--lsm" ]; then cat << EOF_LSM no LSM EOF_LSM exit 0; fi if [ "$1" = "--info" ]; then echo Identification: $label echo Target directory: $targetdir echo Uncompressed size: 3856 KB echo Compression: gzip echo Date of packaging: Fri Jun 13 16:51:53 EDT 2003 echo script run after extraction: $script $scriptargs [ x"$keep" = xy ] && echo "directory $targetdir is permanent" || echo "$targetdir will be removed after extraction" exit 0; fi if [ "$1" = "--list" ]; then echo Target directory: $targetdir tail +$skip $0 | gzip -cd | tar tvf - exit 0; fi if [ "$1" = "--check" ]; then sum1=`tail +6 $0 | cksum | sed -e 's/ /Z/' -e 's/ /Z/' | cut -dZ -f1` [ $sum1 -ne $CRCsum ] && { echo Error in checksums $sum1 $CRCsum exit 2; } if [ $MD5 != "00000000000000000000000000000000" ]; then # space separated list of directories [ x"$GUESS_MD5_PATH" = "x" ] && GUESS_MD5_PATH="/usr/local/ssl/bin" MD5_PATH="" for a in $GUESS_MD5_PATH; do if which $a/md5 >/dev/null 2>&1 ; then MD5_PATH=$a; fi done if [ -x $MD5_PATH/md5 ]; then md5sum=`tail +6 $0 | $MD5_PATH/md5`; [ $md5sum != $MD5 ] && { echo Error in md5 sums $md5sum $MD5 exit 2 } || { echo check sums and md5 sums are ok; exit 0; } fi if [ ! -x $MD5_PATH/md5 ]; then echo an embedded md5 sum of the archive exists but no md5 program was found in $GUESS_MD5_PATH echo if you have md5 on your system, you should try : echo env GUESS_MD5_PATH=\"FirstDirectory SecondDirectory ...\" $0 -check fi else echo check sums are OK ; echo $0 does not contain embedded md5 sum ; fi exit 0; fi [ x"$finish" = x ] && finish=true parsing=yes x11=y while [ x"$parsing" != x ]; do case "$1" in --confirm) verbose=y; shift;; --keep) keep=y; shift;; --nox11) x11=n; shift;; --target) if [ x"$2" != x ]; then targetdir="$2"; keep=y; shift 2; fi;; *) parsing="";; esac done if [ "$x11" = "y" ]; then if ! tty -s; then # Do we have a terminal? if [ x"$DISPLAY" != x -a x"$xterm_loop" = x ]; then # No, but do we have X? if xset q > /dev/null 2>&1; then # Check for valid DISPLAY variable GUESS_XTERMS="dtterm eterm Eterm xterm rxvt kvt" for a in $GUESS_XTERMS; do if which $a >/dev/null 2>&1; then XTERM=$a break fi done chmod a+x $0 || echo Please add execution rights on $0 if [ `echo "$0" | cut -c1` = / ]; then # Spawn a terminal! exec $XTERM -title "$label" -e "$0" -xwin "$@" else exec $XTERM -title "$label" -e "./$0" -xwin "$@" fi fi fi fi fi if [ "$keep" = y ]; then echo "Creating directory $targetdir"; tmpdir=$targetdir; else tmpdir="$TMPROOT/selfgz$$"; fi mkdir $tmpdir || { $echo 'Cannot create target directory' $tmpdir >&2 $echo 'you should perhaps try option -target OtherDirectory' >&2 eval $finish; exit 1; } location="`pwd`" echo=echo; [ -x /usr/ucb/echo ] && echo=/usr/ucb/echo $echo -n Verifying archive integrity... sum1=`tail +6 $0 | cksum | sed -e 's/ /Z/' -e 's/ /Z/' | cut -dZ -f1` [ $sum1 -ne $CRCsum ] && { $echo Error in check sums $sum1 $CRCsum eval $finish; exit 2; } echo OK if [ $MD5 != \"00000000000000000000000000000000\" ]; then # space separated list of directories [ x$GUESS_MD5_PATH = x ] && GUESS_MD5_PATH=\"/usr/local/ssl/bin\" MD5_PATH=\"\" for a in $GUESS_MD5_PATH; do if which $a/md5 >/dev/null 2>&1 ; then MD5_PATH=$a; fi done if [ -x $MD5_PATH/md5 ]; then md5sum=`tail +6 $0 | $MD5_PATH/md5`; [ $md5sum != $MD5 ] && { $echo Error in md5 sums $md5sum $MD5 eval $finish; exit 2; } fi fi UnTAR() { tar xvf - || { echo Extraction failed. > /dev/tty; kill -15 $$; } ; } $echo -n "Uncompressing $label" cd $tmpdir ; res=3 [ "$keep" = y ] || trap 'echo Signal caught, cleaning up > /dev/tty; cd $TMPROOT; /bin/rm -rf $tmpdir; eval $finish; exit 15' 1 2 15 if (cd "$location"; tail +$skip $0; ) | gzip -cd | UnTAR | (while read a; do $echo -n .; done; echo; ); then chown -Rf `id -u`.`id -g` . res=0; if [ x"$script" != x ]; then if [ x"$verbose" = xy ]; then $echo "OK to execute: $script $scriptargs $* ? [Y/n] " read yn [ x"$yn" = x -o x"$yn" = xy -o x"$yn" = xY ] && { $script $scriptargs $*; res=$?; } else $script $scriptargs $*; res=$? fi [ $res != 0 ] && echo "The program returned an error code ($res)" fi [ "$keep" = y ] || { cd $TMPROOT; /bin/rm -rf $tmpdir; } else echo "Cannot decompress $0"; eval $finish; exit 1 fi eval $finish; exit $res END_OF_STUB i9>tT'$ ( ^A)BIG@BD$C2$ B+}HQ& !
nDXPFDEFFE/bX-7cs%om v-Ո=\ndF;rz^5y]n=hjQhkOll֪F5IqS.=zppH\#ȊHM5}nE]oaGxVkdA-nP#333v;C\iYzmIgfŰp{N3)Kch.Έg2lijIf Y ?e>",[b"E,z7[R]k⚑,ֶ.Gl-9ڜqQڜFO)K
ֶ[H#/]T-7d,]= it2C!q.Ûf!*gd$#Օ`uY$2 o=.v:CMW.ٜM۞~\naf(0pM&F[mvV3b$xӘpeb}
es{Ⱥi}{jz_rgk3:ðŻPnW7#+ޛ|3iL۞ds'fWlSǐ4#zpPd/F;
e
Jug=P![ح/9$vdnѷ[gx3op?RԷ91TxLOe=':B"B?.<&<e}&I?FFGGݘW=۠yÀ|
>^(0
8l _} 8c˄o.~9zb:V+wp_Dy^[NԩW_Nƫs{ڛ "ˀf=~puIWۣ$Cϒy!!͢'ぃ>sp^I:ZS='J&c^l忸?.G{;p-wHWFxᏀȒUη߂%э5\w|?d.|j_Ο/g\dGڤ$|8eWE83pR\"5@N~Mђ?hsf|yd6sKK>ۀ2cz,f(u?1GZ_7'1Mۏ:Zg3Ӂ1<ԉ]PbgSe?w=h' <{_
(\J!)|_mkxbfM'zE^v:7] |-sw~t4u6ho.;{>ʋşsRşqOI|QܞO{ 9%eJ}/CPOnCsJi2?/qHP.!<8^m|ђ?iog{,$~ۛ_Y|+p$ٯ.Zoiwy&~2w`_I`
!맔0UyJEzf瀋>ZCbǿJt~jҁn0pVRq̇
wos>l
p5_IDX@?u(ic߿l×<#ixG4l)Fs?7x d#?E*x,ݿ6KϜmMPVp3Oj\|?=_'|r?DL?p 7̏OL>ϩD7p_dۡy$^S?>?dN.˘~j3|!N$O=~!sPy_z:G{dcO:?4MKx~/u4(`]^:}b
אOH|J
xLZKn۩i|*Ot9x}^u}ՌI34({vñRuESSD=3A%ȟD۟(_1p@o_dٟͯ҅|_ޛ,?1sJ=W$o$/
U 5ΫB
)r^5oP|~8 Uwpu^WԞ[FGz$Q~?YMV[yM> OgTr7uj:ʜ3~5R%_}pϔyߛOREZ9ey:~_Mp2D&Qo|t2shI{fJnxvo?z
1By~f_|Q_\A
iVSy=?}-b|?'Is۩E^-{&?c8(?ێyZ.""%{6ň=rp$?tpL(j6/&
V?.7t>͇漭TCm~赉eF{_Iyqbo>8=b$Է)\P}S$^·]7 {ۣ]Y2p1o&pۈT/NyU `Tz&'n12ܲGfQ|s;42*};6gq?>4S,xkA*gx(9o8o@ط~y9|{KL e>=̥(tL(_F< ?)Exb>R,ʃSߡdu +Юxt?2'z7;}Bon?KbK]Aw0XwP[Cowgm&0upIۛCRQ~D!#(kAϼ+q{y(%o.\Uup^῞T^LI9uoU߮n[mmœ -r7=0$qB=nsj&V0~ؚU6sjJ+W}].=
qT "JLٞU7DwH%oI:3ֳdx"7biꯩ|+TB՜҂^S҄ @S#u̻A)蓫RYK)2JhKo^Qg$>CvT3i^f "<|40 9\yw+t$?4G!Bs=fwǼr+2;^e}rL}x9+z)Xf8/RG3}
"1:NH?qt~=ñzCʡ~C-y=u cx&AC&I97yGM}gVyq7?bkt8I␃a9Z2EfD5@@b`Rb !&Ec}R'=YϋlOK]*ɶ`c+Q:gQj@*eW
?}y|Hc@RmR.)?'g
_5DV%zlgɵʙ2V9SUΔw(%gmb`&plu=
Tz=g]7TҤ&G-v|jGs|Yo4p$8nƑɹ>%rVj֍gg}evȞ߶ߞ~mi9U>
SB<D{x#|
S1T\8UVTq>p8pTLӟqLyހmѫJO9*>5]펧xtV o o8}r@0a*RުBx&4`Bo&XpL
UݫfWh DRDmEސ8BѣUHL!uV\D>8CT0]}7GtY`zhӁ]Ƈ'ވ7?}b@VɅɽ_^YƲwD6 C 5fdiD/ƕōZ`պuWk7. uܸ?
77.{lqqܸ}^ϫUɖFS'l?,{o,AZMg%[?Ě# m2OV|rY8Ƴ8Ƴ8Ku헆6t"{>й
uz#{A;[3[&nk СZO붇(D!QdWH,۫&3U)Uvqe6%ű
_] $=v_J`{sOI{2fHt;D:n-ej35y9zhͳ Ӯ_': B1ɵjS'DR#`K$cvFIl:`sXE9W{Ӈm1=L{;;5;c].;a
R^ưFMcti8;olrVJLN}v0۳aJ99 cHGY~9譋No*G~ZMXfo2RDkF:;[MO֩w|5To
5˚~sJ
ם
.A忙itn JFVϬ|p?I[#'AWS#`43P_gD>]`$fx}z%L^o_zw/@|/2)S)lZ6{9!a=$VEX<֘͡6`8iI_2G:(l^ `Z~*=ۯg1}:AEU+닞&0 +[,:5-
1e6YBhZ ђ`Z"A^bmqAWI4F,=|P\͢4wt&]zȣ[(:m*G gs~'TmAV
@ZZƨ]z>˹w98Y
\^zeRX qU0;qo|CA&)qz|c)=je{
KyWU}ؗ"c>\ʮa)p]
8 icI_?H|96៏Dz
teMh>kf >
|pQ.|2,1ae3ܱI|Vi)1pE3*
;|fE+~kzb$qeLxj[ߗB~_f.b lP.,k/[|k"O||\Z$C$U%IpWRGv1wqQU"E^Qu&T&b&_a8U{(Q]VOQ)(M|Tb5hT{~q40#tgkZNK
cpI>xŞr#ns1*{=T0RBß+ Wˍ%5~ŷe&7 Pz7i>;i3
s(44>XlK .Ȕ!qd͇|EB|'
;I_V$spTrާ:ݏk0ĮxjLu W[N!.6Z7e"E RE`KQw08s%SWZ^(?+GECח͎l̞I?
UBV
0)+ʘyLO]`=_eCJJ2ғ*oل/u]D,`op
cػu{'l HmnlNY25;oBkfuֺJn=Kh}Z/B2On9b?;m5i+Ah,u7ruYר-
/Dyx*VlZ