Public bug reported:

Binary package hint: azureus

The SafePeer plugin for azureus/vuze does not work properly by default
and does not notify the user. I think this should be considered a
serious bug because it's effectively a privacy issue. If you run the
azureus console mode using "azureus -u console" you will see the
resulting exception. It needs the following packages:

libcommons-httpclient-java
libcommons-codec-java
libcommons-logging-java

and for these to be in the classpath. I have modified by
/usr/bin/azureus to achieve this as follows:

#!/bin/sh                                                                       
                                                                                
                   
JAVA='java -Xmx1024M'
if [ -x /usr/bin/vuze ]; then
        FORCEUI='';
else
        FORCEUI='-Dforce.ui=az2';
fi

LIBS="commons-httpclient commons-logging commons-codec"
for LIB in $LIBS; do
    LIBJARS="${LIBJARS:+${LIBJARS}:}/usr/share/java/${LIB}.jar"
done

. /usr/share/java-config/libswt-3.4-java
exec $JAVA -Djava.library.path=/usr/lib/jni:/usr/lib \                          
                                                                                
                   
        -classpath /usr/share/java/Azureus2.jar:$LIBJARS:$JARS \                
                                                                                
                   
        -Dazureus.install.path="$HOME/.azureus" \                               
                                                                                
                   
        -Dazureus.config.path="$HOME/.azureus" \                                
                                                                                
                   
        $FORCEUI \                                                              
                                                                                
                   
        org.gudy.azureus2.ui.common.Main "$@"

This is on 8.10, up-to-date.

** Affects: azureus (Ubuntu)
     Importance: Undecided
         Status: New

-- 
azureus safepeer plugin silently failing
https://bugs.launchpad.net/bugs/328016
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to