fetch the driver if it's not here - install.sh fix proposed by bios, grazie

This commit is contained in:
psyc://psyced.org/~lynX 2011-11-22 18:16:46 +01:00
parent e79fe64e64
commit 363042a5ae
2 changed files with 23 additions and 0 deletions

View File

@ -10,6 +10,10 @@ vim:nosmarttab:syntax=diff
________________________________________________________________________
== SERIOUS!!! ==========================================================
¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
- MUC im arsch
- fix /part behaviour
- Ungültige Route nach psyc://psyced.org im psyc://psyced.org/~lynx Context festgestellt.
- check in user:input() if data is in utf8 (using RE_UTF8) in order to produce
proper error messages before it is processed further and may end up in
net/jabber's emit() where it is dropped silently (see CHARS_XMPP.log)
@ -739,6 +743,10 @@ or switches in our muve code, because they will never be needed!
________________________________________________________________________
== JABBER S2S ISSUES ===================================================
¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
- fippo: scheint wir verarbeiten beim unavailable nur das direkte event
während es mit einem delay-element eigentlich ein bereits
vergangenes ding beschreibt
- /x ALIAS aka xmpp:example@gmail.com results in
"[_nick_target]" ist nicht erreichbar.
example ist online + man hat friend status.

View File

@ -22,6 +22,8 @@
#
# psyclpc as obtained from http://lpc.psyc.eu
driver="psyclpc"
driverver="20111122"
lpcbaseurl="http://www.psyced.org/files/"
zip="bz2"
zipcmd="bzip2"
@ -186,6 +188,18 @@ fi
#get WITHOUT_DRIVER "n"
WITHOUT_DRIVER="n"
echo ""
if ! test `ls -1 ${driver}-*tar.${zip} 2>/dev/null`
then
if wget "${lpcbaseurl}/${driver}-${driverver}.tar.${zip}"
then
echo "${driver} successfully retrieved."
else
echo "${hi}ATTENTION: Unable to download ${driver}"
echo "${hi}ATTENTION: ${lo}You have no ${driver}-*.tar.${zip} in this directory."
echo "Please obtain one from http://lpc.psyc.eu."
$exit
fi
else
if test -d .git
then
:
@ -219,6 +233,7 @@ else
fi
else
echo "I can see you have a ${driver} tar here. That's good."
fi
echo ""
fi
fi