debian/0000775000000000000000000000000012266511167007177 5ustar debian/jitsi.links0000664000000000000000000000045712265602624011367 0ustar usr/share/java/commons-codec.jar usr/share/jitsi/sc-bundles/commons-codec.jar usr/share/java/commons-lang3.jar usr/share/jitsi/sc-bundles/commons-lang.jar usr/share/java/log4j-1.2.jar usr/share/jitsi/lib/bundle/log4j.jar usr/share/java/commons-logging.jar usr/share/jitsi/lib/bundle/commons-logging.jar debian/patches/0000775000000000000000000000000012266510035010617 5ustar debian/patches/guava-update0000664000000000000000000000126612265602624013137 0ustar Index: jitsi-2.3.4901/lib/src/gdata-java-client/java/src/com/google/gdata/wireformats/AltFormat.java =================================================================== --- jitsi-2.3.4901.orig/lib/src/gdata-java-client/java/src/com/google/gdata/wireformats/AltFormat.java 2012-09-27 14:40:10.000000000 -0400 +++ jitsi-2.3.4901/lib/src/gdata-java-client/java/src/com/google/gdata/wireformats/AltFormat.java 2013-11-11 10:42:56.309608000 -0500 @@ -396,7 +396,7 @@ if (types == null) { acceptableTypes = ImmutableSet.of(); } else { - acceptableTypes = ImmutableSet.of(types); + acceptableTypes = ImmutableSet.copyOf(types); } return this; } debian/patches/series0000664000000000000000000000010612266507153012040 0ustar bcprov-upgrade-1.48 remove-hflip guava-update support-as-needed.patch debian/patches/bcprov-upgrade-1.480000664000000000000000000000375412265602624014070 0ustar Index: jitsi-2.3.4672.9754/lib/src/joscar/client/src/net/kano/joustsim/oscar/oscar/service/chatrooms/EncryptedChatRoomMessageFactory.java =================================================================== --- jitsi-2.3.4672.9754.orig/lib/src/joscar/client/src/net/kano/joustsim/oscar/oscar/service/chatrooms/EncryptedChatRoomMessageFactory.java 2012-03-12 16:57:34.000000000 +0200 +++ jitsi-2.3.4672.9754/lib/src/joscar/client/src/net/kano/joustsim/oscar/oscar/service/chatrooms/EncryptedChatRoomMessageFactory.java 2013-06-07 14:06:15.000000000 +0300 @@ -49,7 +49,9 @@ import org.bouncycastle.asn1.cms.EncryptedContentInfo; import org.bouncycastle.asn1.DERObjectIdentifier; +import org.bouncycastle.asn1.ASN1ObjectIdentifier; import org.bouncycastle.asn1.DEROctetString; +import org.bouncycastle.asn1.ASN1OctetString; import org.bouncycastle.asn1.BERConstructedOctetString; import org.bouncycastle.asn1.BERTaggedObject; import org.bouncycastle.asn1.ASN1EncodableVector; @@ -137,16 +139,16 @@ byte[] encrypted = c.doFinal(dataToEncrypt); EncryptedContentInfo eci = new EncryptedContentInfo( - new DERObjectIdentifier("1.2.840.113549.1.7.1"), + new ASN1ObjectIdentifier("1.2.840.113549.1.7.1"), new AlgorithmIdentifier( new DERObjectIdentifier("2.16.840.1.101.3.4.1.42"), new DEROctetString(iv)), - new BERConstructedOctetString(encrypted)); + ASN1OctetString.getInstance(encrypted)); EncryptedData ed = new EncryptedData(eci.getContentType(), eci.getContentEncryptionAlgorithm(), eci.getEncryptedContent()); - BERTaggedObject bert = new BERTaggedObject(0, ed.getDERObject()); + BERTaggedObject bert = new BERTaggedObject(0, ed.toASN1Primitive()); DERObjectIdentifier rootid = new DERObjectIdentifier("1.2.840.113549.1.7.6"); ASN1EncodableVector vec = new ASN1EncodableVector(); debian/patches/support-as-needed.patch0000664000000000000000000000234112266511057015204 0ustar Description: Ubuntu uses the linker option "--as-needed" by default. This requires that libraries are added in the correct order to the linker command line (i.e. after the objects requesting external symbols). Author: Andreas Moog Forwarded: Yes, https://github.com/jitsi/libjitsi/pull/6 Index: jitsi-2.4.4997/lib/src/libjitsi/src/native/build.xml =================================================================== --- jitsi-2.4.4997.orig/lib/src/libjitsi/src/native/build.xml 2014-01-15 23:03:00.000000000 +0100 +++ jitsi-2.4.4997/lib/src/libjitsi/src/native/build.xml 2014-01-18 15:30:48.658267643 +0100 @@ -1007,8 +1007,8 @@ - - + + debian/patches/remove-hflip0000664000000000000000000002350412265602624013150 0ustar Index: jitsi-2.3.4901/lib/src/libjitsi/src/native/ffmpeg/org_jitsi_impl_neomedia_codec_FFmpeg.c =================================================================== --- jitsi-2.3.4901.orig/lib/src/libjitsi/src/native/ffmpeg/org_jitsi_impl_neomedia_codec_FFmpeg.c 2013-11-11 06:03:23.817608000 -0500 +++ jitsi-2.3.4901/lib/src/libjitsi/src/native/ffmpeg/org_jitsi_impl_neomedia_codec_FFmpeg.c 2013-11-11 06:06:14.037608000 -0500 @@ -454,14 +454,14 @@ DEFINE_AVCODECCONTEXT_I_PROPERTY_SETTER(trellis, trellis) DEFINE_AVCODECCONTEXT_I_PROPERTY_SETTER(workaround_1bugs, workaround_bugs) -JNIEXPORT jlong JNICALL +/*JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1alloc (JNIEnv *env, jclass clazz) { return (jlong) (intptr_t) avfilter_graph_alloc(); -} +}*/ -JNIEXPORT jint JNICALL +/*JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1config (JNIEnv *env, jclass clazz, jlong graph, jlong log_ctx) { @@ -470,18 +470,18 @@ avfilter_graph_config( (AVFilterGraph *) (intptr_t) graph, (AVClass *) (intptr_t) log_ctx); -} +}*/ -JNIEXPORT void JNICALL +/*JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1free (JNIEnv *env, jclass clazz, jlong graph) { AVFilterGraph *graph_ = (AVFilterGraph *) (intptr_t) graph; avfilter_graph_free(&graph_); -} +}*/ -JNIEXPORT jlong JNICALL +/*JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1get_1filter (JNIEnv *env, jclass clazz, jlong graph, jstring name) { @@ -499,23 +499,23 @@ else filter = NULL; return (jlong) (intptr_t) filter; -} +}*/ -static int +/*static int ffsink_end_frame(AVFilterLink *link) { if (link->cur_buf) link->dst->priv = avfilter_ref_buffer(link->cur_buf, ~0); return 0; -} +}*/ -static int +/*static int ffsink_query_formats(AVFilterContext *ctx) { AVFilterContext *src = ctx; int err; - /* Find buffer. */ + / * Find buffer. * / #ifdef _JITSI_LIBAV_ while (src && src->input_count && src->inputs) #else @@ -530,7 +530,7 @@ break; } - /* Make ffsink output in the format in which buffer inputs. */ + / * Make ffsink output in the format in which buffer inputs. * / if (src) { const int pix_fmts[] = { src->outputs[0]->in_formats->formats[0], -1 }; @@ -557,9 +557,9 @@ ffsink_uninit(AVFilterContext *ctx) { ctx->priv = NULL; -} +}*/ -JNIEXPORT jint JNICALL +/*JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1parse (JNIEnv *env, jclass clazz, jlong graph, jstring filters, jlong inputs, jlong outputs, jlong log_ctx) @@ -579,26 +579,26 @@ (AVFilterInOut **) (intptr_t) outputs, (AVClass *) (intptr_t) log_ctx); - /* + / * * FIXME The implementation at the time of this writing presumes that * the first filter is buffer, the last filter is nullsink meant to be * ffsink and the ffsink is expected to output in the format in which * the buffer inputs. - */ + * / if (0 == ret) { - /* Turn nullsink into ffsink. */ + / * Turn nullsink into ffsink. * / unsigned filterCount = graph_->filter_count; if (filterCount) { AVFilterContext *ffsink = graph_->filters[filterCount - 1]; - /* + / * * Make sure query_format of ffsink outputs in the format in * which buffer inputs. Otherwise, the output format may end up * different on the C and Java sides. - */ + * / ffsink->filter->uninit = ffsink_uninit; ffsink->priv = NULL; ffsink->filter->query_formats = ffsink_query_formats; @@ -614,7 +614,7 @@ else ret = AVERROR(ENOMEM); return (jint) ret; -} +}*/ JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1register_1all @@ -623,12 +623,13 @@ avfilter_register_all(); } -JNIEXPORT void JNICALL + +/*JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1unref_1buffer (JNIEnv *env, jclass clazz, jlong ref) { avfilter_unref_buffer((AVFilterBufferRef *) (intptr_t) ref); -} +}*/ JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avframe_1get_1pts @@ -693,7 +694,7 @@ (int) width, (int) height); } -JNIEXPORT jlong JNICALL +/*JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_get_1filtered_1video_1frame (JNIEnv *env, jclass clazz, jlong input, jint width, jint height, jint pixFmt, @@ -717,12 +718,12 @@ { AVFrame *output_ = (AVFrame *) (intptr_t) output; - /* + / * * The data of cur_buf will be returned into output so it needs * to exist at least while output needs it. So take ownership of * cur_buf and the user of output will unref it when they are * done with output. - */ + * / ffsink_->priv = NULL; memcpy(output_->data, ref->data, sizeof(output_->data)); @@ -736,7 +737,7 @@ } } return (jlong) (intptr_t) ref; -} +}*/ JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_memcpy___3IIIJ Index: jitsi-2.3.4901/lib/src/libjitsi/src/native/ffmpeg/org_jitsi_impl_neomedia_codec_FFmpeg.h =================================================================== --- jitsi-2.3.4901.orig/lib/src/libjitsi/src/native/ffmpeg/org_jitsi_impl_neomedia_codec_FFmpeg.h 2013-11-11 06:03:23.817608000 -0500 +++ jitsi-2.3.4901/lib/src/libjitsi/src/native/ffmpeg/org_jitsi_impl_neomedia_codec_FFmpeg.h 2013-11-11 06:06:14.037608000 -0500 @@ -435,41 +435,41 @@ * Class: org_jitsi_impl_neomedia_codec_FFmpeg * Method: avfilter_graph_alloc * Signature: ()J - */ + JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1alloc - (JNIEnv *, jclass); + (JNIEnv *, jclass); */ /* * Class: org_jitsi_impl_neomedia_codec_FFmpeg * Method: avfilter_graph_config * Signature: (JJ)I - */ + JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1config - (JNIEnv *, jclass, jlong, jlong); + (JNIEnv *, jclass, jlong, jlong); */ /* * Class: org_jitsi_impl_neomedia_codec_FFmpeg * Method: avfilter_graph_free * Signature: (J)V - */ + JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1free - (JNIEnv *, jclass, jlong); + (JNIEnv *, jclass, jlong); */ /* * Class: org_jitsi_impl_neomedia_codec_FFmpeg * Method: avfilter_graph_get_filter * Signature: (JLjava/lang/String;)J - */ + JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1get_1filter - (JNIEnv *, jclass, jlong, jstring); + (JNIEnv *, jclass, jlong, jstring); */ /* * Class: org_jitsi_impl_neomedia_codec_FFmpeg * Method: avfilter_graph_parse * Signature: (JLjava/lang/String;JJJ)I - */ + JNIEXPORT jint JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1graph_1parse - (JNIEnv *, jclass, jlong, jstring, jlong, jlong, jlong); + (JNIEnv *, jclass, jlong, jstring, jlong, jlong, jlong); */ /* * Class: org_jitsi_impl_neomedia_codec_FFmpeg @@ -483,10 +483,10 @@ * Class: org_jitsi_impl_neomedia_codec_FFmpeg * Method: avfilter_unref_buffer * Signature: (J)V - */ + JNIEXPORT void JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_avfilter_1unref_1buffer (JNIEnv *, jclass, jlong); - + */ /* * Class: org_jitsi_impl_neomedia_codec_FFmpeg * Method: avframe_get_pts @@ -531,9 +531,9 @@ * Class: org_jitsi_impl_neomedia_codec_FFmpeg * Method: get_filtered_video_frame * Signature: (JIIIJJJ)J - */ + JNIEXPORT jlong JNICALL Java_org_jitsi_impl_neomedia_codec_FFmpeg_get_1filtered_1video_1frame - (JNIEnv *, jclass, jlong, jint, jint, jint, jlong, jlong, jlong); + (JNIEnv *, jclass, jlong, jint, jint, jint, jlong, jlong, jlong); */ /* * Class: org_jitsi_impl_neomedia_codec_FFmpeg Index: jitsi-2.3.4901/lib/src/libjitsi/src/org/jitsi/impl/neomedia/MediaServiceImpl.java =================================================================== --- jitsi-2.3.4901.orig/lib/src/libjitsi/src/org/jitsi/impl/neomedia/MediaServiceImpl.java 2013-11-11 06:03:23.825608000 -0500 +++ jitsi-2.3.4901/lib/src/libjitsi/src/org/jitsi/impl/neomedia/MediaServiceImpl.java 2013-11-11 06:06:07.029608000 -0500 @@ -1123,7 +1123,7 @@ locator.getProtocol())) codecs = new Codec[] { scaler }; else - codecs = new Codec[] { new HFlip(), scaler }; + codecs = new Codec[] { /*new HFlip(),*/ scaler }; trackControl.setCodecChain(codecs); break; Index: jitsi-2.3.4901/lib/src/libjitsi/src/org/jitsi/impl/neomedia/device/VideoMediaDeviceSession.java =================================================================== --- jitsi-2.3.4901.orig/lib/src/libjitsi/src/org/jitsi/impl/neomedia/device/VideoMediaDeviceSession.java 2013-11-11 06:03:23.861608000 -0500 +++ jitsi-2.3.4901/lib/src/libjitsi/src/org/jitsi/impl/neomedia/device/VideoMediaDeviceSession.java 2013-11-11 06:06:09.557608000 -0500 @@ -513,7 +513,7 @@ { controllerUpdateForCreateLocalVisualComponent( ev, - hflip); + false); } }); localPlayer.configure(); debian/control0000664000000000000000000000703112265602623010600 0ustar Source: jitsi Section: net Priority: optional Maintainer: Jitsi Team Uploaders: Emil Ivov , Damian Minkov Homepage: http://jitsi.org/ Build-Depends: debhelper (>= 9), javahelper, dpkg-dev (>= 1.16.1), default-jdk, ant, ant-optional, ant-contrib-cpptasks, ant-contrib, maven, autotools-dev, libavutil-dev, libavcodec-dev, libavformat-dev, libavfilter-dev, libswscale-dev, libvpx-dev, libxpp3-java, libjzlib-java, libbcprov-java, libjna-java, libcommons-codec-java, libcommons-lang3-java, liblog4j1.2-java, libjgoodies-forms-java, libjmdns-java, libdnsjava-java, libmac-widgets-java, libfelix-main-java, libfelix-framework-java, junit, libcommons-logging-java, liblaf-widget-java, libhttpcore-java, libhttpmime-java, libhttpclient-java, libjson-simple-java, libdbus-java, libeasymock-java, libxt-dev, libxtst-dev, libxv-dev, libmp3lame-dev, yasm, libx264-dev, libdbus-1-dev, libopus-dev, libasound2-dev, libspeexdsp-dev, libspeex-dev, libunbound-dev, libxss-dev, libgtk2.0-dev, libglib2.0-dev, libpulse-dev, libguava-java, glassfish-activation, glassfish-mail, libbcpkix-java, libjcalendar-java Standards-Version: 3.9.4 Package: jitsi Architecture: all Depends: ${misc:Depends}, libjitsi-jni (>= ${source:Version}), default-jre | java6-runtime, libunixsocket-java, libhttpcore-java, liblog4j1.2-java, libjmdns-java, libdnsjava-java, libmac-widgets-java, libfelix-main-java, libfelix-framework-java, libhttpclient-java, libhttpmime-java, libcommons-logging-java, libcommons-codec-java, libcommons-lang3-java, liblaf-widget-java, libdbus-java, libxpp3-java, libjzlib-java, libbcprov-java, libjna-java, libjgoodies-forms-java, libjson-simple-java, libjcalendar-java Recommends: ${java:Recommends} Description: VoIP and Instant Messaging client Jitsi is an application that allows you to do audio/video conversations over the Internet through the SIP and XMPP/Jabber protocol, as well as chat with your friends using some of the most popular instant messaging protocols such as SIP/SIMPLE, XMPP/Jabber, AIM/ICQ, Yahoo and others. Package: libjitsi-jni Section: libs Architecture: amd64 i386 Depends: ${misc:Depends}, ${shlibs:Depends} Description: Jitsi JNI library These are the jni bindings for Jitsi the Java VoIP and Instant Messaging client. Libraries to access audio and video devices. Native binaries used to render the video and detect network configuration changes. Binaries for audio codecs like opus and g722. Global shortcuts, notifications and hid devices control. debian/source/0000775000000000000000000000000012265603244010474 5ustar debian/source/format0000664000000000000000000000001412265602624011703 0ustar 3.0 (quilt) debian/sh/0000775000000000000000000000000012265603244007606 5ustar debian/sh/jitsi0000664000000000000000000000173012265602623010654 0ustar #!/bin/bash # Get architecture ARCH=`uname -m | sed -e s/x86_64/64/ -e s/i.86/32/` # Additionnal JVM arguments CLIENTARGS="" if [ $ARCH -eq 32 ] then CLIENTARGS="-client -Xmx256m" fi javabin=`which java` SCDIR=/usr/share/jitsi LIBPATH=$SCDIR/lib CLASSPATH=/usr/share/java/org.apache.felix.framework.jar:/usr/share/java/org.apache.felix.main.jar:$SCDIR/sc-bundles/sc-launcher.jar:$SCDIR/sc-bundles/util.jar/launchutils.jar:$LIBPATH FELIX_CONFIG=$LIBPATH/felix.client.run.properties LOG_CONFIG=$LIBPATH/logging.properties COMMAND="$javabin $CLIENTARGS -classpath $CLASSPATH -Djna.library.path=/usr/lib/jni -Dfelix.config.properties=file:$FELIX_CONFIG -Djava.util.logging.config.file=$LOG_CONFIG -Dnet.java.sip.communicator.SC_HOME_DIR_NAME=.jitsi net.java.sip.communicator.launcher.SIPCommunicator" # set add LIBPATH to LD_LIBRARY_PATH for any sc natives (e.g. jmf .so's) export LD_LIBRARY_PATH="${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}/usr/lib/jni" cd $SCDIR exec $COMMAND $* debian/jitsi-32.xpm0000664000000000000000000001506312265602624011274 0ustar /* XPM */ static char * sip_communicator_32_xpm[] = { "32 32 279 2", " c None", ". c #63676E", "+ c #A18A64", "@ c #998060", "# c #456290", "$ c #D09A51", "% c #3C5D8F", "& c #3966A7", "* c #826D5F", "= c #AC8659", "- c #3C5C8C", "; c #3966A6", "> c #386AB2", ", c #3968AB", "' c #585862", ") c #425676", "! c #3A639F", "~ c #386AB1", "{ c #3A537A", "] c #395580", "^ c #3A629C", "/ c #3967AB", "( c #576684", "_ c #92795E", ": c #495972", "< c #3A619B", "[ c #B57E41", "} c #F5AF4C", "| c #FFC768", "1 c #9F8B6B", "2 c #557CB3", "3 c #4B6184", "4 c #FFBB56", "5 c #FEC565", "6 c #9A8260", "7 c #344055", "8 c #35445E", "9 c #58565A", "0 c #82664C", "a c #435060", "b c #E7B868", "c c #FFC160", "d c #FFB44B", "e c #555B69", "f c #335280", "g c #3B67A5", "h c #CA883A", "i c #F19E35", "j c #686566", "k c #394D6C", "l c #2D3E59", "m c #2C3E5A", "n c #2B3E5D", "o c #60646C", "p c #EFB55B", "q c #FAAE46", "r c #90795F", "s c #4473B1", "t c #4B7CBC", "u c #507DB7", "v c #DDA14E", "w c #FFB852", "x c #8F7E67", "y c #385482", "z c #355A8F", "A c #366AB2", "B c #3C70B6", "C c #4174B9", "D c #4779BB", "E c #7F7E7E", "F c #6A7483", "G c #5986C0", "H c #5E8BC3", "I c #6490C5", "J c #6A95C8", "K c #A5906D", "L c #CBA769", "M c #3F5C86", "N c #4374B7", "O c #497ABB", "P c #4E7FBD", "Q c #5483C0", "R c #5A88C2", "S c #608DC4", "T c #6591C6", "U c #6994C7", "V c #6692C6", "W c #628EC4", "X c #5F8CC4", "Y c #818380", "Z c #BB9C68", "` c #4B6994", " . c #5C89C2", ".. c #618EC4", "+. c #6792C7", "@. c #6893C7", "#. c #6691C6", "$. c #638FC5", "%. c #5F8CC3", "&. c #5C8AC2", "*. c #5786C1", "=. c #5584C0", "-. c #5779A5", ";. c #ECBB68", ">. c #A28D68", ",. c #56759D", "'. c #5F8BC1", "). c #757B8B", "!. c #947759", "~. c #8A7057", "{. c #8A7259", "]. c #887C6F", "^. c #5C7495", "/. c #4F7DBB", "(. c #4E7EBD", "_. c #B39768", ":. c #AD9266", "<. c #506F98", "[. c #5B89C2", "}. c #5B78A0", "|. c #8B7763", "1. c #B28959", "2. c #AD8657", "3. c #C59250", "4. c #F6AF4C", "5. c #FFBA55", "6. c #F8BD5E", "7. c #AA946F", "8. c #567095", "9. c #4274B7", "0. c #4072B6", "a. c #9A866A", "b. c #B9935D", "c. c #48648D", "d. c #5180BE", "e. c #4C7CBC", "f. c #4A7BBB", "g. c #4779BA", "h. c #4576B8", "i. c #6D7D8E", "j. c #ECBB69", "k. c #EAB968", "l. c #6C6F72", "m. c #3C68A5", "n. c #8A7D6F", "o. c #4672AE", "p. c #4476B9", "q. c #4274B8", "r. c #4173B7", "s. c #4071B5", "t. c #3F70B3", "u. c #3E68A5", "v. c #4D678D", "w. c #BC9A65", "x. c #FFB34A", "y. c #FFA736", "z. c #FE9923", "A. c #7C644F", "B. c #666162", "C. c #405B84", "D. c #3E68A3", "E. c #3E659C", "F. c #3E5F8F", "G. c #3C577F", "H. c #426089", "I. c #5071A1", "J. c #5D84B8", "K. c #5E7EA8", "L. c #7C716D", "M. c #7D6552", "N. c #B97C38", "O. c #CF8936", "P. c #AE7C43", "Q. c #3C5376", "R. c #3F587E", "S. c #33415A", "T. c #394C6A", "U. c #415F89", "V. c #4B72A6", "W. c #4E76AB", "X. c #5179AE", "Y. c #547CB1", "Z. c #577FB3", "`. c #5A82B6", " + c #977755", ".+ c #FF971D", "++ c #F7911C", "@+ c #38547D", "#+ c #264B81", "$+ c #5B5C65", "%+ c #7E7265", "&+ c #3C567E", "*+ c #3C649C", "=+ c #3F679F", "-+ c #426AA1", ";+ c #456DA4", ">+ c #4870A7", ",+ c #4B73A9", "'+ c #4E76AC", ")+ c #5077AB", "!+ c #B17537", "~+ c #FF8C0D", "{+ c #8C6642", "]+ c #3B5781", "^+ c #2C5690", "/+ c #28518A", "(+ c #78604E", "_+ c #FF9012", ":+ c #CF9143", "<+ c #515C6F", "[+ c #345687", "}+ c #335C95", "|+ c #365F97", "1+ c #39629A", "2+ c #3C659D", "3+ c #3F689F", "4+ c #426BA2", "5+ c #456EA4", "6+ c #42618E", "7+ c #CA751D", "8+ c #B2702D", "9+ c #395A89", "0+ c #325D99", "a+ c #2E5892", "b+ c #726459", "c+ c #FD8301", "d+ c #8B6441", "e+ c #375379", "f+ c #27518B", "g+ c #2A538E", "h+ c #2D5690", "i+ c #305993", "j+ c #365F98", "k+ c #3A629A", "l+ c #315384", "m+ c #3B5E90", "n+ c #3964A0", "o+ c #34609B", "p+ c #425E85", "q+ c #505B6D", "r+ c #1B437C", "s+ c #1B4581", "t+ c #1E4884", "u+ c #214B86", "v+ c #244E89", "w+ c #2B548E", "x+ c #2E5790", "y+ c #315A92", "z+ c #315382", "A+ c #3F6394", "B+ c #406BA7", "C+ c #3B67A2", "D+ c #385D93", "E+ c #365077", "F+ c #2A4775", "G+ c #153E7B", "H+ c #153F7C", "I+ c #18427F", "J+ c #1C4581", "K+ c #1F4884", "L+ c #224B86", "M+ c #294C82", "N+ c #2F4B75", "O+ c #3B5F91", "P+ c #436EAA", "Q+ c #3D6092", "R+ c #294774", "S+ c #224476", "T+ c #204377", "U+ c #1D4378", "V+ c #1F4377", "W+ c #2B4773", "X+ c #34598C", "Y+ c #3C649D", "Z+ c #36537E", "`+ c #2F5283", " @ c #375684", ".@ c #2E4B76", "+@ c #334F78", " ", " . ", " + ", " @ ", " # $ ", " % & * = ", " - ; > , ' ) ", " ! > ~ { ] ^ ", " / ( _ : > < ", " [ } | 1 2 3 ", " 4 | | 5 6 7 8 9 0 ", " a b | c d e f g h i j ", " k l m n o p q r s t u v w x ", " y z A B C D E F G H I J K | L ", " M N O P Q R S T U V I W X Y | Z ", " ` ...+.@.#.$...%.&.R *.=.-.;.>. ", " ,.T $.'.).!.~.{.].^./.(.t O _.:. ", " <.[.}.|.1.2.3.4.5.6.7.8.9.0.a.b. ", " c.d./.e.f.g.h.i.j.| | k.l.m.n. ", " o.p.q.r.s.t.u.v.w.x.y.z.A.B. ", " C.D.E.F.G.H.I.J.K.L.M.N.O.P. ", " Q.R. S.T.U.V.W.X.Y.Z.`. +.+++ ", " @+#+$+%+ &+*+=+-+;+>+,+'+)+!+~+{+ ", " ]+^+/+(+_+:+<+[+}+|+1+2+3+4+5+6+7+8+ ", " 9+0+a+b+c+d+e+f+g+h+i+}+j+k+*+l+ ", " m+n+o+p+q+r+s+t+u+v+f+w+x+y+z+ ", " A+B+C+D+E+F+G+H+I+J+K+L+M+N+ ", " O+P+Q+ R+S+T+U+V+W+ ", " X+Y+Z+ ", " `+ @ ", " .@+@ ", " "}; debian/jitsi.menu0000664000000000000000000000061112265602624011203 0ustar ?package(jitsi):needs="x11" \ section="Applications/Network/Communication" \ title="Jitsi" \ longtitle="Jitsi, VoIP and IM client" \ command="/usr/bin/jitsi" \ icon="/usr/share/pixmaps/jitsi-32.xpm" \ icon32x32="/usr/share/pixmaps/jitsi-32.xpm" \ icon16x16="/usr/share/pixmaps/jitsi-16.xpm" debian/jitsi-16.xpm0000664000000000000000000000412212265602624011270 0ustar /* XPM */ static char * sip_communicator_16_xpm[] = { "16 16 93 2", " c None", ". c #404E67", "+ c #475874", "@ c #536888", "# c #5B7397", "$ c #576D90", "% c #7191BD", "& c #7698C5", "* c #565F73", "= c #7293BE", "- c #465873", "; c #7091BC", "> c #8F765B", ", c #737C8A", "' c #7597C4", ") c #4F617E", "! c #DFB267", "~ c #868786", "{ c #6A8AB5", "] c #486084", "^ c #4C596E", "/ c #FFC768", "( c #838686", "_ c #5D7BA7", ": c #496897", "< c #3C6198", "[ c #3D6093", "} c #AE966C", "| c #BF9B65", "1 c #708CB3", "2 c #5D7DAA", "3 c #41608F", "4 c #3965A6", "5 c #386AB2", "6 c #3869B1", "7 c #5D6675", "8 c #A8885D", "9 c #43536E", "0 c #466697", "a c #3B5E92", "b c #455168", "c c #40567A", "d c #3A66A5", "e c #58739D", "f c #6887B2", "g c #3B6096", "h c #3A639F", "i c #4E5C76", "j c #545D70", "k c #3E5478", "l c #4C6D9C", "m c #617DA6", "n c #4B6286", "o c #75675F", "p c #AE7C46", "q c #F8A73E", "r c #F6B85A", "s c #5A687E", "t c #466592", "u c #6F727E", "v c #D07F28", "w c #FFA330", "x c #FFB54D", "y c #AB956D", "z c #5F718A", "A c #4F6B95", "B c #5C769D", "C c #747E8E", "D c #FBAB3F", "E c #FFBF5C", "F c #FFC667", "G c #ECB35C", "H c #4C5B73", "I c #7395C1", "J c #BCA070", "K c #FFC15F", "L c #FEB751", "M c #686F7C", "N c #6E8EB8", "O c #7B899C", "P c #D4AF6C", "Q c #FFC666", "R c #FFBC58", "S c #F0AB4C", "T c #6F7177", "U c #6E8DB9", "V c #788BA5", "W c #9A8468", "X c #7F7569", "Y c #647794", "Z c #7496C3", "` c #597094", " . c #5A7296", ". + @ # # # # # # # # $ # @ + . ", "+ % & & & & & & & & & * = & % - ", "@ & & & & & & & & & ; > , & & @ ", "# & & & & & & & & ' ) ! ~ & & # ", "# & & & & & & & { ] ^ / ( & & # ", "# & & & & ' _ : < [ } | 1 & & # ", "# & & & 2 3 4 5 6 7 8 9 = & & # ", "# & & & 0 5 5 5 a b c d e & & # ", "# & & f g 5 h i j k 5 5 l & & # ", "# & & m n o p q r s 5 5 t & & # ", "# & & u v w x / / y z A B & & # ", "# & & C D E / / / F G H I & & # ", "# & & I J / / / K L M N & & & # ", "@ & & & O P Q R S T U & & & & @ ", "+ % & & & V W X Y Z & & & & % - ", ". + @ # # # ` .# # # # # @ + . "}; debian/jitsi.manpages0000664000000000000000000000001612265602624012031 0ustar debian/jitsi.1debian/rules0000775000000000000000000000261512265602623010260 0ustar #!/usr/bin/make -f include /usr/share/dpkg/architecture.mk export JAVA_HOME=/usr/lib/jvm/default-java export PACKAGE_NAME=jitsi export ANT=ant # Uncomment this to turn on verbose mode. export DH_VERBOSE=1 %: dh $@ --with javahelper override_dh_auto_build: dh_auto_build -- init deb-src-rebuild # Copy OS specific and native libs override_dh_install-indep: dh_install -p$(PACKAGE_NAME) -Xslickless.jar -Xslick-runner.jar -X-slick.jar -X.svn -Xcommons-codec.jar -Xcommons-lang.jar # make and install the debian specific bundles # use the prebuild and installed bundles to extract/modify and use the # exising debian java packages $(ANT) -file build.xml -Ddebian.bundles.dest=debian/$(PACKAGE_NAME)/usr/share/$(PACKAGE_NAME)/sc-bundles deb-bundle-jna deb-bundle-util deb-bundle-sysactivitynotifications deb-bundle-swing-ui deb-bundle-httputil deb-bundle-json deb-bundle-smacklib deb-bundle-jmdnslib deb-bundle-desktoputil deb-bundle-bouncycastle deb-bundle-plugin-accountinfo override_dh_install-arch: ifeq ($(DEB_HOST_ARCH),amd64) dh_install -plib$(PACKAGE_NAME)-jni lib/native/linux-64/*.so usr/lib/jni/ else dh_install -plib$(PACKAGE_NAME)-jni lib/native/linux/*.so usr/lib/jni/ endif # we have folders with name *.jar which jh_manifest don't like and fails, # we do not use it so skip it override_jh_manifest: # do nothing override_dh_auto_clean: dh_auto_clean -- clean-debuild get-orig-source: uscan debian/jitsi.install0000664000000000000000000000060612265602623011710 0ustar debian/jitsi-32.xpm usr/share/pixmaps/ debian/jitsi-16.xpm usr/share/pixmaps/ debian/jitsi.svg usr/share/pixmaps/ debian/jitsi.desktop usr/share/applications/ resources/install/logging.properties usr/share/jitsi/lib/ lib/felix.client.run.properties usr/share/jitsi/lib/ lib/jitsi-defaults.properties usr/share/jitsi/lib/ sc-bundles/*.jar usr/share/jitsi/sc-bundles debian/sh/jitsi usr/bin debian/compat0000664000000000000000000000000212265602624010373 0ustar 9 debian/README.embedded-libraries0000664000000000000000000001226512265602624013565 0ustar Libraries that we bundle directly in Jitsi: Note 1: Currently all libraries live in lib/src. Note 2: We have indicated when Jitsi community members are also somehow affiliated with the project - dhcp4java https://sourceforge.net/projects/dhcp4java/ Java DHCP API. Reason: No Debian package. - fmj http://fmj-sf.net/ FMJ is an open-source project with the goal of providing an alternative to Java Media Framework (JMF). Jitsi team is maintainer of the project. Reason: No Debian package. - ice4j http://code.google.com/p/ice4j/ This project provides a Java implementation of the ICE protocol that would be usable by both SIP and XMPP applications. The Jitsi community is the maintainer of this project. Reason: No Debian package. - jfontchooser http://sourceforge.net/projects/jfontchooser/ This projects tries to provide an easy JFontChooser in the form of the JColorChooser. Reason: No Debian package. - jnsapi http://code.google.com/p/jinglenodes/ Jingle Nodes is an XMPP Extension that enable users to share and discover P2P Media Relays that can be used to enable Voice and Video Chat via Jingle. Reason: No Debian package. - jsip http://jsip.java.net/ This project publishes a full implementation of the RFC 3261 Specification and as well as support for several SIP RFCs. Emil Ivov from Jitsi team is contributor and has commit right in the project. Reason: No Debian package. - jymsg http://jymsg9.sourceforge.net/ This API provides a way for Java applications to connect and use the Yahoo Instant Messenger protocol. Damian Minkov from Jitsi team is contributor and has commit right in the project. Reason: No Debian package. - libjitsi https://jitsi.org/libjitsi An advanced Java media library for secure real-time audio/video communication. Jitsi team is maintainer of the project. Reason: No Debian package. - OrangeExtensions http://ymasory.github.com/OrangeExtensions/ A pluggable jar containing stubs for the Apple Java Extensions. Reason: No Debian package. - portaudio http://www.portaudio.com/ PortAudio is a free, cross-platform, open-source, audio I/O library. Reason: A Debian package does exist for port audio however, the Jitsi community is using one of its forks (i.e. the hotplug branch) with a number of additional changes such as: * further improved device hotplug for windows. * device hotplug for macosx and linux * fixes for various problems with device locks. - smack_src_3_2_2 http://www.igniterealtime.org/projects/smack/ Smack is an Open Source XMPP (Jabber) client library. Reason: We contributed several patches on version 3.2.2 in order to fix a memory leak, added code that handles some currently unchecked, fixes for discovery info parsing, a pubsub parsing problem and the option to use a custom javax.net.ssl.TrustManager. All of those have been sent to the smack community for integration about a year ago, but haven’t been integrated since. And there’s no Debian package. - weupnp http://code.google.com/p/weupnp/ Weupnp is a lightweight Java library implements the UPnP protocol. Jitsi’s Sebastien Vincent is contributor and has commit right in the project. Reason: No Debian package. - gdata-java-client http://code.google.com/p/gdata-java-client/ The Google Data Java client library. Using version 1.43.0. Reason: The package was removed from Debian (package with version 1.30.0 exist only in squeeze). - java-jml http://sourceforge.net/apps/trac/java-jml JML is a Java API for communication with Windows Live Messenger/ MSN Messenger services. Damian Minkov from Jitsi team is contributor and has commit right in the project. Reason: No Debian package. - jmyspell http://kenai.com/projects/jmyspell JMySpell is a 100% pure-Java implementation of the MySpell spell checker. Reason: No Debian package. - joscar http://code.google.com/p/joscar/ joscar is an easy-to-use, robust library for connecting to AOL Instant Messenger and ICQ from Java. Reason: No Debian package. - jsocks http://jsocks.sourceforge.net/ It is a SOCKS server written entirely in Java, which supports both SOCKS4 and SOCKS5 protocols. Reason: No Debian package. - bccontrib https://github.com/jitsi/bccontrib This project contains the Skein hash function, the Threefish encryption function and the Fortuna random generator as a Java implementation. The API is designed to be compatible to BouncyCastle. Reason: No Debian package. - misc http://java.net/projects/jdic Using the desktop window alerter (for windows, mac and linux). Part in the jdic project svn/trunk/src/incubator/misc. Reason: No Debian package. - otr4j https://github.com/gpolitis/otr4j otr4j is an implementation of the OTR (Off The Record) protocol in java. Jitsi’s George Politis (who developed the lib as a GSoC 2009 participant) is current maintainer. Reason: No Debian package. - sdes4j http://code.google.com/p/sdes4j/ Implementation of RFC4568: Session Description Protocol (SDP) Security Descriptions for Media Streams for Java. Jitsi’s Ingo Bauersachs is maintainer and owner of the project. Reason: No Debian package. - swingworker Part of jdesktop.org JDNC project. Reason: No Debian package. - zrtp4j https://github.com/wernerd/ZRTP4J Java implementation of ZRTP protocol. Werner Dittmann from Jitsi team is maintainer and owner of the project. Reason: No Debian package. debian/changelog0000664000000000000000000000526112266511132011045 0ustar jitsi (2.4.4997-1ubuntu1) trusty; urgency=medium * Reorder linker command line options to support building with --as-needed. -- Andreas Moog Sat, 18 Jan 2014 15:16:51 +0100 jitsi (2.4.4997-1) unstable; urgency=low * Updates upstream. * Fixes printing version. (Closes: #733889) -- Damian Minkov Wed, 15 Jan 2014 17:03:00 -0500 jitsi (2.3.4909-1) unstable; urgency=low * Builds against libav9. (Closes: #719517) * Fixed crashes when opening video/options. (Closes: #719278) * Removed dependency to libgoogle-collections-java. (Closes: #727701) * Fixed registering account on first run. (Closes: #719999) * Adds some missing links while building for lib libbcpkix. (Closes: #726652) * Updates upstream and also libs dependencies. (Closes: #729254) -- Damian Minkov Fri, 15 Nov 2013 09:56:31 -0500 jitsi (2.3.4687.9786-1) unstable; urgency=low * Removes use of maven build for bccontrib package. -- Damian Minkov Mon, 17 Jun 2013 12:48:19 +0300 jitsi (2.3.4678.9772-1) unstable; urgency=low * Removes embedded bouncycastle package. * Patches joscar to use the latest version 1.48 of bcprov. * Adds autotools-dev dependincy to deal with some warnings for old build files. * Fixes building twice. -- Damian Minkov Wed, 12 Jun 2013 11:02:34 +0300 jitsi (2.1.4541.10678-1) unstable; urgency=low * Fixes missing dbus headers when building i386 package. -- Damian Minkov Mon, 1 Apr 2013 12:12:17 +0300 jitsi (2.1.4534.10649-1) unstable; urgency=low * Removes jdic dependency. -- Damian Minkov Tue, 26 Mar 2013 15:07:14 +0200 jitsi (2.0.4506.10553-1) unstable; urgency=low * Renames package jitsi-jni to libjitsi-jni. * Removes jar-not-in-usr-share overrides, not needed anymore. * Moves files from /usr/lib to /usr/share * Rename README.libraries to README.embedded-libraries. * Removes embedded dnsjava package and add dependency to libdnsjava-java. * Removes duplicate entry in copyright. -- Damian Minkov Mon, 18 Mar 2013 16:34:08 +0200 jitsi (1.1.4407.10289-1) unstable; urgency=low * Adds README.libraries describing the libraries embedded. * Adds Homepage entry and fixes descriptions. * Updates desktop shortcut, removes obsolete fields. * Adds debian/watch for new source packages. * Removes ffmpeg library and add dependency to libav. -- Damian Minkov Thu, 17 Jan 2013 16:03:58 +0200 jitsi (1.1.4365-1) unstable; urgency=low * Initial release. (Closes: #627362) -- Damian Minkov Tue, 18 Dec 2012 11:47:40 +0200 debian/jitsi.svg0000664000000000000000000007263312265602624011053 0ustar image/svg+xml debian/watch0000664000000000000000000000012512265602624010224 0ustar version=3 https://download.jitsi.org/jitsi/nightly/debian-src jitsi_(.+).orig.tar.gz debian/jitsi.desktop0000664000000000000000000000035512265602624011715 0ustar [Desktop Entry] Name=Jitsi GenericName=Jitsi Comment=VoIP and Instant Messaging client Icon=/usr/share/pixmaps/jitsi.svg Type=Application Categories=Network;InstantMessaging;Chat;Telephony;VideoConference;Java; Exec=jitsi Terminal=false debian/jitsi.10000664000000000000000000000442412265602624010405 0ustar .\" Hey, EMACS: -*- nroff -*- .\" First parameter, NAME, should be all caps .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection .\" other parameters are allowed: see man(7), man(1) .TH jitsi 1 "October 10, 2008" .\" Please adjust this date whenever revising the manpage. .\" .\" Some roff macros, for reference: .\" .nh disable hyphenation .\" .hy enable hyphenation .\" .ad l left justify .\" .ad b justify to both left and right margins .\" .nf disable filling .\" .fi enable filling .\" .br insert line break .\" .sp insert n+1 empty lines .\" for manpage-specific macros, see man(7) .SH NAME jitsi \- the Java VoIP and Instant Messaging client .SH SYNOPSIS .B jitsi .RI [ options ] " " [ uri-to-call ] .SH DESCRIPTION .\" TeX users may be more comfortable with the \fB\fP and .\" \fI\fP escape sequences to invode bold face and italics, .\" respectively. \fBJitsi\fP is an audio/video Internet phone and instant messenger that supports some of the most popular instant messaging and telephony protocols such as SIP, Jabber, AIM/ICQ, MSN, Yahoo! Messenger, Bonjour, IRC and soon others like IAX. .PP .RI "An optional " uri-to-call " expression can be specified to start a call from the command-line. If Jitsi is already running then the call is handled by the running application, except when it is explicitly told to allow multiple instance launch." .SH OPTIONS .TP .BI "\-c, \-\-config=" DIR Use .I DIR for configuration files. .TP .B \-d, \-\-debug Print debugging messages to stdout. .TP .B \-h, \-\-help Print a help message containing usage instructions and descriptions of all options currently supported. .TP .B \-m, \-\-multiple Allow multiple instance launch. .TP .B \-6, \-\-ipv6 Force use of IPv6 addresses where possible. .TP .B \-4, \-\-ipv4 Force non-support for IPv6 and use of IPv4 only. .TP .B \-v, \-\-version Display the current version and exit. .TP .SH FILES .TP .I ~/.jitsi/contactlist.xml .RS The IM contact-list. .RE .TP .I ~/.jitsi/sip-communicator.xml .RS The main configuration file. .SH AUTHOR Jitsi was written by Emil Ivov . .PP This manual page was written by Martin Andre , for the Debian project (but may be used by others). debian/copyright0000664000000000000000000002212312265602624011130 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Jitsi Upstream-Contact: Emil Ivov Source: http://www.jitsi.org Files: * Copyright: 2004-2012 Emil Ivov License: LGPL-2.1 Files: lib/src/dhcp4java/* Copyright: 2006 Stephan Hadinger License: LGPL-2.1 Files: lib/src/dnsjava-2.1.3/* Copyright: 1998-2011 Brian Wellington License: BSD-2-clause Files: lib/src/fmj/* Copyright: UNKNOWN: License: LGPL-2 Files: lib/src/jnsapi/* lib/src/macwidgets/* lib/src/otr4j/* Copyright: UNKNOWN: License: LGPL-3 Files: lib/src/jmyspell/* lib/src/jsocks/* Copyright: UNKNOWN: License: LGPL-2.1 Files: lib/src/gdata-java-client/* Copyright: 2006 Google Inc License: Apache-2.0 Files: lib/src/java-jml/* Copyright: 2004 Roger Chen License: Apache-2.0 Files: lib/src/org.apache.felix.framework-3.2.2/* Copyright: UNKNOWN: License: Apache-2.0 Files: lib/src/jfontchooser/* Copyright: 2004 Tim Eeckhaut License: BSD-3-clause Files: lib/src/jmdns/* Copyright: 2003-2005 Arthur van Hoff, Rick Blair License: Apache-2.0 Files: lib/src/joscar/* Copyright: 2004, The Joust Project License: BSD-3-clause Files: lib/src/jsip/src/gov/* lib/src/jsip/src/test/* lib/src/jsip/src/tools/* Copyright: UNKNOWN: License: public-domain This software was developed by employees of the National Institute of Standards and Technology (NIST), and others. This software has been contributed to the public domain. Pursuant to title 15 Untied States Code Section 105, works of NIST employees are not subject to copyright protection in the United States and are considered to be in the public domain. As a result, a formal license is not needed to use this software. . This software is provided "AS IS." NIST MAKES NO WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR STATUTORY, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT AND DATA ACCURACY. NIST does not warrant or make any representations regarding the use of the software or the results thereof, including but not limited to the correctness, accuracy, reliability or usefulness of this software. Files: lib/src/bccontrib/* Copyright: 2010 Alberto Fajardo and Werner Dittmann 2004, 2006 Free Software Foundation, Inc. License: MIT Files: lib/src/portaudio/* Copyright: 1999-2006 Ross Bencina and Phil Burk License: MIT Files: lib/src/sdes4j/* Copyright: 2011 University of Applied Sciences Northwestern Switzerland (FHNW) 2011 School of Engineering Institute of Mobile and Distributed Systems (IMVS) License: LGPL-2.1 Files: lib/src/smack_src_3_2_2/* Copyright: 2002-2008 Jive Software License: Apache-2.0 Files: lib/src/swingworker/* Copyright: 2005 Sun Microsystems, Inc. License: LGPL-2.1 Files: lib/src/weupnp/* Copyright: 2008 Alessandro Bahgat Shehata, Daniele Castagna License: LGPL-2.1 Files: lib/src/OrangeExtensions/* Copyright: 2010 Yuvi Masory License: other This jar was created by decompiling AppleJavaExtensions.jar (completely consistent with its BSD-like license), and adding the new Java 5 methods. . Apple's license does not specify that their copyright notice should be included in modified versions (only complete, unmodified ones), so I'm putting it under 3-clause BSD just to protect myself from liability. . Copyright (c) 2010, Yuvi Masory All rights reserved. . Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name Yuvi Masory nor the names of other contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Yuvi Masory BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: LGPL-2.1 On Debian systems, the full text of the GNU Lesser General Public License (LGPL) version 2.1 can be found in the file '/usr/share/common-licenses/LGPL-2.1'. License: LGPL-2 On Debian systems, the full text of the GNU Lesser General Public License (LGPL) version 2 can be found in the file '/usr/share/common-licenses/LGPL-2'. License: LGPL-3 On Debian systems, the full text of the GNU Lesser General Public License (LGPL) version 3 can be found in the file '/usr/share/common-licenses/LGPL-3'. License: Apache-2.0 On Debian systems, the full text of the Apache License version 2 can be found in the file '/usr/share/common-licenses/Apache-2.0'. License: BSD-2-clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . THIS SOFTWARE IS PROVIDED BY AUTHORS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: BSD-3-clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the company nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.