|
#!/bin/sh
|
|
|
|
# Display usage
|
|
cpack_usage()
|
|
{
|
|
cat <<EOF
|
|
Usage: $0 [options]
|
|
Options: [defaults in brackets after descriptions]
|
|
--help print this message
|
|
--prefix=dir directory in which to install
|
|
--include-subdir include the laview-desktop_1.1.5_amd64 subdirectory
|
|
--exclude-subdir exclude the laview-desktop_1.1.5_amd64 subdirectory
|
|
EOF
|
|
exit 1
|
|
}
|
|
|
|
cpack_echo_exit()
|
|
{
|
|
echo $1
|
|
exit 1
|
|
}
|
|
|
|
# Display version
|
|
cpack_version()
|
|
{
|
|
echo "laview-desktop Installer Version: 1.1.5, Copyright (c) backbone@backbone.ws"
|
|
}
|
|
|
|
# Helper function to fix windows paths.
|
|
cpack_fix_slashes ()
|
|
{
|
|
echo "$1" | sed 's/\\/\//g'
|
|
}
|
|
|
|
interactive=TRUE
|
|
cpack_skip_license=FALSE
|
|
cpack_include_subdir=""
|
|
for a in "$@"; do
|
|
if echo $a | grep "^--prefix=" > /dev/null 2> /dev/null; then
|
|
cpack_prefix_dir=`echo $a | sed "s/^--prefix=//"`
|
|
cpack_prefix_dir=`cpack_fix_slashes "${cpack_prefix_dir}"`
|
|
fi
|
|
if echo $a | grep "^--help" > /dev/null 2> /dev/null; then
|
|
cpack_usage
|
|
fi
|
|
if echo $a | grep "^--version" > /dev/null 2> /dev/null; then
|
|
cpack_version
|
|
exit 2
|
|
fi
|
|
if echo $a | grep "^--include-subdir" > /dev/null 2> /dev/null; then
|
|
cpack_include_subdir=TRUE
|
|
fi
|
|
if echo $a | grep "^--exclude-subdir" > /dev/null 2> /dev/null; then
|
|
cpack_include_subdir=FALSE
|
|
fi
|
|
if echo $a | grep "^--skip-license" > /dev/null 2> /dev/null; then
|
|
cpack_skip_license=TRUE
|
|
fi
|
|
done
|
|
|
|
if [ "x${cpack_include_subdir}x" != "xx" -o "x${cpack_skip_license}x" = "xTRUEx" ]
|
|
then
|
|
interactive=FALSE
|
|
fi
|
|
|
|
cpack_version
|
|
echo "This is a self-extracting archive."
|
|
toplevel="`pwd`"
|
|
if [ "x${cpack_prefix_dir}x" != "xx" ]
|
|
then
|
|
toplevel="${cpack_prefix_dir}"
|
|
fi
|
|
|
|
echo "The archive will be extracted to: ${toplevel}"
|
|
|
|
if [ "x${interactive}x" = "xTRUEx" ]
|
|
then
|
|
echo ""
|
|
echo "If you want to stop extracting, please press <ctrl-C>."
|
|
|
|
if [ "x${cpack_skip_license}x" != "xTRUEx" ]
|
|
then
|
|
more << '____cpack__here_doc____'
|
|
GNU LESSER GENERAL PUBLIC LICENSE
|
|
Version 3, 29 June 2007
|
|
|
|
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
|
Everyone is permitted to copy and distribute verbatim copies
|
|
of this license document, but changing it is not allowed.
|
|
|
|
|
|
This version of the GNU Lesser General Public License incorporates
|
|
the terms and conditions of version 3 of the GNU General Public
|
|
License, supplemented by the additional permissions listed below.
|
|
|
|
0. Additional Definitions.
|
|
|
|
As used herein, "this License" refers to version 3 of the GNU Lesser
|
|
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
|
General Public License.
|
|
|
|
"The Library" refers to a covered work governed by this License,
|
|
other than an Application or a Combined Work as defined below.
|
|
|
|
An "Application" is any work that makes use of an interface provided
|
|
by the Library, but which is not otherwise based on the Library.
|
|
Defining a subclass of a class defined by the Library is deemed a mode
|
|
of using an interface provided by the Library.
|
|
|
|
A "Combined Work" is a work produced by combining or linking an
|
|
Application with the Library. The particular version of the Library
|
|
with which the Combined Work was made is also called the "Linked
|
|
Version".
|
|
|
|
The "Minimal Corresponding Source" for a Combined Work means the
|
|
Corresponding Source for the Combined Work, excluding any source code
|
|
for portions of the Combined Work that, considered in isolation, are
|
|
based on the Application, and not on the Linked Version.
|
|
|
|
The "Corresponding Application Code" for a Combined Work means the
|
|
object code and/or source code for the Application, including any data
|
|
and utility programs needed for reproducing the Combined Work from the
|
|
Application, but excluding the System Libraries of the Combined Work.
|
|
|
|
1. Exception to Section 3 of the GNU GPL.
|
|
|
|
You may convey a covered work under sections 3 and 4 of this License
|
|
without being bound by section 3 of the GNU GPL.
|
|
|
|
2. Conveying Modified Versions.
|
|
|
|
If you modify a copy of the Library, and, in your modifications, a
|
|
facility refers to a function or data to be supplied by an Application
|
|
that uses the facility (other than as an argument passed when the
|
|
facility is invoked), then you may convey a copy of the modified
|
|
version:
|
|
|
|
a) under this License, provided that you make a good faith effort to
|
|
ensure that, in the event an Application does not supply the
|
|
function or data, the facility still operates, and performs
|
|
whatever part of its purpose remains meaningful, or
|
|
|
|
b) under the GNU GPL, with none of the additional permissions of
|
|
this License applicable to that copy.
|
|
|
|
3. Object Code Incorporating Material from Library Header Files.
|
|
|
|
The object code form of an Application may incorporate material from
|
|
a header file that is part of the Library. You may convey such object
|
|
code under terms of your choice, provided that, if the incorporated
|
|
material is not limited to numerical parameters, data structure
|
|
layouts and accessors, or small macros, inline functions and templates
|
|
(ten or fewer lines in length), you do both of the following:
|
|
|
|
a) Give prominent notice with each copy of the object code that the
|
|
Library is used in it and that the Library and its use are
|
|
covered by this License.
|
|
|
|
b) Accompany the object code with a copy of the GNU GPL and this license
|
|
document.
|
|
|
|
4. Combined Works.
|
|
|
|
You may convey a Combined Work under terms of your choice that,
|
|
taken together, effectively do not restrict modification of the
|
|
portions of the Library contained in the Combined Work and reverse
|
|
engineering for debugging such modifications, if you also do each of
|
|
the following:
|
|
|
|
a) Give prominent notice with each copy of the Combined Work that
|
|
the Library is used in it and that the Library and its use are
|
|
covered by this License.
|
|
|
|
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
|
document.
|
|
|
|
c) For a Combined Work that displays copyright notices during
|
|
execution, include the copyright notice for the Library among
|
|
these notices, as well as a reference directing the user to the
|
|
copies of the GNU GPL and this license document.
|
|
|
|
d) Do one of the following:
|
|
|
|
0) Convey the Minimal Corresponding Source under the terms of this
|
|
License, and the Corresponding Application Code in a form
|
|
suitable for, and under terms that permit, the user to
|
|
recombine or relink the Application with a modified version of
|
|
the Linked Version to produce a modified Combined Work, in the
|
|
manner specified by section 6 of the GNU GPL for conveying
|
|
Corresponding Source.
|
|
|
|
1) Use a suitable shared library mechanism for linking with the
|
|
Library. A suitable mechanism is one that (a) uses at run time
|
|
a copy of the Library already present on the user's computer
|
|
system, and (b) will operate properly with a modified version
|
|
of the Library that is interface-compatible with the Linked
|
|
Version.
|
|
|
|
e) Provide Installation Information, but only if you would otherwise
|
|
be required to provide such information under section 6 of the
|
|
GNU GPL, and only to the extent that such information is
|
|
necessary to install and execute a modified version of the
|
|
Combined Work produced by recombining or relinking the
|
|
Application with a modified version of the Linked Version. (If
|
|
you use option 4d0, the Installation Information must accompany
|
|
the Minimal Corresponding Source and Corresponding Application
|
|
Code. If you use option 4d1, you must provide the Installation
|
|
Information in the manner specified by section 6 of the GNU GPL
|
|
for conveying Corresponding Source.)
|
|
|
|
5. Combined Libraries.
|
|
|
|
You may place library facilities that are a work based on the
|
|
Library side by side in a single library together with other library
|
|
facilities that are not Applications and are not covered by this
|
|
License, and convey such a combined library under terms of your
|
|
choice, if you do both of the following:
|
|
|
|
a) Accompany the combined library with a copy of the same work based
|
|
on the Library, uncombined with any other library facilities,
|
|
conveyed under the terms of this License.
|
|
|
|
b) Give prominent notice with the combined library that part of it
|
|
is a work based on the Library, and explaining where to find the
|
|
accompanying uncombined form of the same work.
|
|
|
|
6. Revised Versions of the GNU Lesser General Public License.
|
|
|
|
The Free Software Foundation may publish revised and/or new versions
|
|
of the GNU Lesser General Public License from time to time. Such new
|
|
versions will be similar in spirit to the present version, but may
|
|
differ in detail to address new problems or concerns.
|
|
|
|
Each version is given a distinguishing version number. If the
|
|
Library as you received it specifies that a certain numbered version
|
|
of the GNU Lesser General Public License "or any later version"
|
|
applies to it, you have the option of following the terms and
|
|
conditions either of that published version or of any later version
|
|
published by the Free Software Foundation. If the Library as you
|
|
received it does not specify a version number of the GNU Lesser
|
|
General Public License, you may choose any version of the GNU Lesser
|
|
General Public License ever published by the Free Software Foundation.
|
|
|
|
If the Library as you received it specifies that a proxy can decide
|
|
whether future versions of the GNU Lesser General Public License shall
|
|
apply, that proxy's public statement of acceptance of any version is
|
|
permanent authorization for you to choose that version for the
|
|
Library.
|
|
|
|
____cpack__here_doc____
|
|
echo
|
|
echo "Do you accept the license? [yN]: "
|
|
read line leftover
|
|
case ${line} in
|
|
y* | Y*)
|
|
cpack_license_accepted=TRUE;;
|
|
*)
|
|
echo "License not accepted. Exiting ..."
|
|
exit 1;;
|
|
esac
|
|
fi
|
|
|
|
if [ "x${cpack_include_subdir}x" = "xx" ]
|
|
then
|
|
echo "By default the laview-desktop will be installed in:"
|
|
echo " \"${toplevel}/laview-desktop_1.1.5_amd64\""
|
|
echo "Do you want to include the subdirectory laview-desktop_1.1.5_amd64?"
|
|
echo "Saying no will install in: \"${toplevel}\" [Yn]: "
|
|
read line leftover
|
|
cpack_include_subdir=TRUE
|
|
case ${line} in
|
|
n* | N*)
|
|
cpack_include_subdir=FALSE
|
|
esac
|
|
fi
|
|
fi
|
|
|
|
if [ "x${cpack_include_subdir}x" = "xTRUEx" ]
|
|
then
|
|
toplevel="${toplevel}/laview-desktop_1.1.5_amd64"
|
|
mkdir -p "${toplevel}"
|
|
fi
|
|
echo
|
|
echo "Using target directory: ${toplevel}"
|
|
echo "Extracting, please wait..."
|
|
echo ""
|
|
|
|
# take the archive portion of this file and pipe it to tar
|
|
# the NUMERIC parameter in this command should be one more
|
|
# than the number of lines in this header file
|
|
# there are tails which don't understand the "-n" argument, e.g. on SunOS
|
|
# OTOH there are tails which complain when not using the "-n" argument (e.g. GNU)
|
|
# so at first try to tail some file to see if tail fails if used with "-n"
|
|
# if so, don't use "-n"
|
|
use_new_tail_syntax="-n"
|
|
tail $use_new_tail_syntax +1 "$0" > /dev/null 2> /dev/null || use_new_tail_syntax=""
|
|
|
|
tail $use_new_tail_syntax +307 "$0" | gunzip | (cd "${toplevel}" && tar xf -) || cpack_echo_exit "Problem unpacking the laview-desktop_1.1.5_amd64"
|
|
|
|
echo "Unpacking finished successfully"
|
|
|
|
exit 0
|
|
#-----------------------------------------------------------
|
|
# Start of TAR.GZ file
|
|
#-----------------------------------------------------------;
|
|
|
|
? ??V Խ \????> ?2?%?~????B?\?"??\a?`P\RHlj??%KC?4?DMSL?q?B??JqF4?r???9?????̣ԫ????ۋf???Ͻ?{???>wF?'?H?o?,ƒ:ښ??,X?/?
|
|
|
|
z?M#|??&H????[? 2?l۶u??/?je
|
|
n???1??f?ӿ?TkT
|
|
?2:)!*?>?t???????????-?????B{?^?!g"??q??[)c҅???????W(gҙT?A?6?S??U???K?x??I?ـ?????O_?&?gM???S?3*?!???s?T??8c???T?y??B?}!???Y??/r?χ????\?Q?
|
|
+??"?[c?{Ӂ???CU????S}???
|
|
?=??????????K?_?????EX??d??H?Ѷu???f ?i???C?6kۺyjR?$???????T^ֿ?ߟ y???????p?Mm?(?f?h?????(?i??1t???>Q?1?1gT?R??\?Juu2t??X??^-6??c?]u?L>?d??N?j?5|,?v#?n90R?>?t???cú]??$|?.??B???9??v??%B?=????????̷??;?y?ri?{??????????q?;????4?<????]???]??r??W????
|
|
?????????w?B?tn???>??z????Հ?Z????#?W?????LC?|???n????
|
|
??Ot???9??<???g3?=>[?_k?{?B8?>'L?????^??4??֛???_???????^???6??Z{љ???????V???#^?????#O8?p????Kk^{?? ??l??j??G????z??ϯ???1?}??{??E)?i????G-G
|
|
?\o?k?'?,ؐ״??FA?????f?k??!??
|
|
B?z??M??\?q?[Ƴ/}=fqF???2????KV}????Z????????b?Q/?????폍?O?????Z؝??<?y^??76???ޚ????3%<??J7h?>??%/]?<????كڗ?????ŰQ?j??lߣ???=??????7?????ZS??7?thn???~?P?j???s???x%?VұNߤ????????\%dY?Ek?KY??lQ???&
|
|
??eٴ????:OL?????
|
|
w|??d???M?w?8~??-????.c?>?\????????_?/?Yrd^յ?}??^8??.??YX????u??H?[k??[cY?????N????$f뎚2?????:?????R???W?F?7??c}?D?e/??5??n#??/w̨S????/??????ꦼ?+??????\_?}Cϯꏋ??E?O?-??=???x?h????N?|
|
|
|??3??!?x\M?x?F?
|
|
|??]?3???g|????????i??5?_?????q?^Corm??????x?h??~A?]?N"j{???']??u?v?U?7???????jyƗj??@?????gm
|
|
~$
|
|
??i??????a?k??Ƹ?Q~??\4?????G5?}??x??a?m5p?F?34?? ??X[??????
|
|
?????3??i???
|
|
=???n?F?i?k5?x
|
|
{ު?/>?ܯa?
|
|
???(?[?>-??\??K?率?'5???࿓F??|?հ?????Q?6??:?ѿǼ?k1????x??x????Ұ?4?o?!o??????????|6???h?C4?q?A??;v5W??9??T?|
|
|
=<??O??s?F|?V??s??֨g???????4?粆\?h?yV_?1?|^ըg???4????q?m????7T???????AvhԨ?P??6?(??????Q>B_?????c5?3z??(o??wk?U??珫x?ۛ4????????k??1?q?a??4?Z?a??4ʿ?a'c4??#????h???4??1^^?h?_k?j??^Co]5?3[?_?i?m?F?ok??<?xM]?Z+??O???h?W?6r???r|???\]??????p?Y?c??????0???8??/?<w????+bR?U??????y?{?:]??.w˛??????A?X=Oq?ǯ???2?FVO?K=???囲v?r|?#/-T??{?'g3<??????????期?]o\??+??
|
|
??.?p?)??r>?p?d???9>?a?ߠ?Íǹ\+??7???????p????~^??.?ƙ????g?Y??m??j~B??Ͽ?p?ѣ?????????M??2??n??ϲ??????(U?[C????|v???\6[???p=???I=???????1??ra?^>??U?*????ջ??g???N??z(??p?_?q????p+??l?[?˿??q8?K~?x??Ki9?Gp|$?G?`??/\??e}N?|Or~8?????/??O?~ðN]W??|5?ˍ\??BU?S??3+?Qޏ??=/_???????5?d????K.?????????W??????W???=??0?c????l>?r?2\?????v{p?^O??*}zq~2ֳ?o?r?5 U? |<F??Tz???eM??O?v?{V-o?<.??T??5?zn????j}v?㷈?[Yor???]w\ϥ_3\??RnoE???&r=?q????7.o??j=??????}?ې??y.?t3??V~???+??%??]??Xy?{???k?2??????)?=?Q??Vοn?Z?~?|?????W??9~?ꩥ??ە?m???ؠ??s???????v??~@?ϴLoq.z????????Z?ד_???a?g??r?T????<?Dž?|鳞??"??@ƏlW?]??????S??F|kR??.?0\?߳??z??N?|&s?,?Q7???e?>???]?h???z?|????>?'#9~??C?G??>3\???4?Q?s????<^??V>.?
|
|
.σ9???z{??S??4y??U?/&>??v?{3>%???i?O?7?n?p?e???'G?Nf?G|s???;??~)??ͷ.??_"???????O61?y>???vR??G??-2?t???? >.d=4~??a?Ku?????V??)?_:???ܞ??yEj????W?K????7q?*?o???#????&A???I#FY?????qN"??u|?%2>52J??b?j??D?Z???? ?X?i)??Q? ??R?G
??HKJJRJ?iQ)??djRZJ?%U?@V$6?b"?5??$?K29%)9jd???J)???Ȅx??*??$l-*99!>xJJ??2ÉQc????K?H?529??7A?r??`Z?\?4K??HK:Hŋ??I?Fc?????D????8K??ȱQ i?ȸ???TE}????h?|J?X?K?A G?D??22c??#?"???b????$??>1?iIdzKi-?Q I?$Jdϱ?}?j?$D??Z? R?5 ?f=ûDs#?P?4"*??U7ƒ?9&)ƒ@WP&Efl$2*&F?KP?"9? E??p}LT$3???Ѥ??KT????.h?T0(???ZKM?DS{?J?&?X?????Md?SĴDf?NeB{c-L???G??'??=?kR˜l??F.?;d????u?????(??ՒneRF?E?J?bc??u?a?zG?X?үw???DK?? ?'vi
|
|
??Kjj?H??)?A??-??O???JI??at}tT?E?"4?`??9r??{C???bg??Ȳ?ܚ-c@?#?˃1?e?E?I?X?H"???'?'?LZ???%?-2>?.?Z???/???`h%????/??#S??zf????㒒Rѯa+i)?e?]O%P???/????)ܙJ?I?V0<al9ٌ??a4$? ???T?l?4?4^?_r?5F?????xM?&a?T??ZŮ????
|
|
?S3?n?l'Ւ?b?IK??''xV+ФZ??(U???>???W??OIKtU=9BlqDR?U.?M?g??
|
|
ѓ?R?\???????ZRRe~N@FKb?hĩ?X???6?ӵ*r???v*?.R?u/?&O? ?l/?b?8?W?C?KLdJҸT????i??f?T*^ ??1?@?%??f۲???>&~??M??,?H?Z??
|
|
J?X?LUUZ?)ϔ??Ly?@?Bה???ZJTbj<??-???????ɷP<?ă@%G%?L???OIj?<H
|
|
??(#?O?h??ԯ???j?T?`?
|
|
5As???lP???2?PΩ?YK?ӑ?IN?`rԸD?O?'F?45?#qz7D?KJF*rdrR?v????
|
|
L/52!*-?Oau?u?A??8gT229?rγ*?,$e??I????@#DPRrUe?????9ؒ? O??=????w?*aFL|
|
|
tNR??T?1o|????mGcTC???????ţ>лr}0????n?1?%-J?߯??????|,?fA?C????O??DZ?0?OK??1?h??'??xꕓP?!?E%?.RR??8_J?? :???
|
|
.}?????wE??L:??S?1Ȁ??!=??P??j(??hD?B??ѦL??>????RE?d?o$ ??䄴?` |