Package Details: jitsi 2.11.5633-1

Git Clone URL: https://aur.archlinux.org/jitsi.git (read-only, click to copy)
Package Base: jitsi
Description: An audio/video SIP VoIP phone and instant messenger written in Java (formerly SIP-Communicator)
Upstream URL: https://desktop.jitsi.org/Main/HomePage
Licenses: Apache
Submitter: psychedelicious
Maintainer: SanskritFritz
Last Packager: figue
Votes: 372
Popularity: 0.000025
First Submitted: 2011-05-11 11:22 (UTC)
Last Updated: 2020-12-12 16:22 (UTC)

Dependencies (3)

Required by (0)

Sources (3)

Pinned Comments

figue commented on 2020-12-12 17:04 (UTC) (edited on 2021-01-03 19:13 (UTC) by figue)

I've built with jdk8... Like this:

env JAVA_HOME=/usr/lib/jvm/java-8-openjdk PATH=/usr/lib/jvm/java-8-openjdk/jre/bin:$PATH makepkg -sic

But if you want to execute jitsi, it's better to set it globally:

archlinux-java set java-8-openjdk

See pinned comment.

Latest Comments

« First ‹ Previous 1 .. 8 9 10 11 12 13 14 15 16 17 18 .. 24 Next › Last »

xdevla commented on 2014-01-09 09:56 (UTC)

I'll, I'm just quiet busy till the week-end

dkorzhevin commented on 2014-01-08 21:25 (UTC)

Please, update to latest stable: Jitsi 2.4

SanskritFritz commented on 2013-12-30 08:05 (UTC)

Thanks for noticing, there is no way to undo, only the maintainer can do it.

lukad commented on 2013-12-30 03:21 (UTC)

I accidentally flagged the package out of date. I can't find a way to undo it...

sbmomeni commented on 2013-12-23 14:23 (UTC)

@simeonfelis If you add Jitsi to favorite applications bar, right-clicking on Jitsi icon in left vertical applications bar and selecting "New Window" is enough to show main window again.

simeonfelis commented on 2013-12-10 09:31 (UTC)

There is a very nasty bug which makes jitsi not usable in Gnome3: After closing (minimising) jitsi, it remains as icon in the status bar and there is apparently no way the get it the main window back. See also http://lists.jitsi.org/pipermail/dev/2013-April/001430.html Does anyone have an idea how I can get back the main window?

unnamed11 commented on 2013-11-17 19:22 (UTC)

To change jitsi theme to default java theme do this before compile: find /path/to/src -name UIServiceImpl.java -exec sed -i "s/if (laf == null)/if (false)/g" {} \; find /path/to/src -name UIServiceImpl.java -exec sed -i "s/if (!lafIsSet)/if (false)/g" {} \;

roentgen commented on 2013-08-26 13:00 (UTC)

PedsXing, take a look at https://wiki.archlinux.org/index.php/Java_Runtime_Environment_Fonts

PedsXing commented on 2013-08-26 12:27 (UTC)

The GUI did not have font antialiasing by default, but I was able to enable it by adding "-Dawt.useSystemAAFontSettings=on -Dswing.aatext=true" to the script that starts Jitsi (see http://stackoverflow.com/questions/179955/how-do-you-enable-anti-aliasing-in-arbitrary-java-apps). Maybe we could add that by default?

ewtoombs commented on 2013-08-13 20:29 (UTC)

This should do it: --- PKGBUILD- 2013-08-13 16:25:56.233636269 -0400 +++ PKGBUILD 2013-08-13 15:47:39.710190851 -0400 @@ -8,15 +8,15 @@ arch=('i686' 'x86_64') url="http://jitsi.org" license=('LGPL') -depends=('java-runtime') +depends=('gtk2' 'java-runtime') makedepends=('apache-ant' 'java-environment') options=(!strip !emptydirs zipman !libtool docs) source=("http://download.jitsi.org/jitsi/src/jitsi-src-${pkgver}.zip" jitsi.desktop jitsi.sh) -sha256sums=('6ec46cc8f2306f5542c65fc637f70a7fe348b309ecc70a2483e05a745487ad41' +sha256sums=('abee87346f2732d1e55f383c1bddafed7aee1e63b92b9d1854cde0679fc85ecf' '61e3bec3470790fa067f87d978016ec4452a6fd3dfba2c9afa5245b58d3cb19d' - '529722efc3bae6cb8923680363a4d778ccf78db9caf20bee90a110d34181d9f5') + '9b2b88f51a9493b57b85ec42efaa92add02013b74915cc3343b5d68dc1e2b553') build() { --- jitsi.sh- 2013-08-13 15:37:31.080161144 -0400 +++ jitsi.sh 2013-08-13 15:41:01.570171419 -0400 @@ -8,7 +8,7 @@ CLASSPATH="$LIBPATH/jdic_stub.jar:$LIBPATH/jdic-all.jar:$LIBPATH/felix.jar:$LIBPATH/bcprovider.jar:$SCDIR/sc-bundles/sc-launcher.jar:$SCDIR/sc-bundles/util.jar" FELIX_CONFIG="$LIBPATH/felix.client.run.properties" LOG_CONFIG="$LIBPATH/logging.properties" -COMMAND=("$JAVA_HOME/bin/java" $CLIENTARGS -classpath "$CLASSPATH" -Djna.library.path="$LIBPATH/native" -Dfelix.config.properties="file:$FELIX_CONFIG" -Djava.util.logging.config.file="$LOG_CONFIG" net.java.sip.communicator.launcher.SIPCommunicator) +COMMAND=(java $CLIENTARGS -classpath "$CLASSPATH" -Djna.library.path="$LIBPATH/native" -Dfelix.config.properties="file:$FELIX_CONFIG" -Djava.util.logging.config.file="$LOG_CONFIG" net.java.sip.communicator.launcher.SIPCommunicator) export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$LIBPATH/native" I also addressed Demon's concern. I just replaced the whole mess with 'java'. If java is not in $PATH, you're insane. If you're worried about using the java in $PATH because of security, you're equally insane. If an attacker can already change your $PATH, you're sunk anyway.