git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@741 b45a01b8-16f6-495d-af2f-9b41ad6348cc

This commit is contained in:
notdefine 2008-10-06 22:01:35 +00:00
parent 8678fbf5df
commit f3d9b16620
6 changed files with 60 additions and 0 deletions

View File

View File

@ -0,0 +1,13 @@
Package: retroshare
Version: 0.4.06b
Depends: zlib1g,libqt4-core,libqt4-gui
Section: net
Priority: extra
Architecture: i386
Installed-Size: 10000
Maintainer: Thomas Eimers <retroshare@notdefine.de>
Description: Retroshare Instant Messenger
RetroShare Instant Messenger is the next generation sharing network, which provides:
Reliable Identification and Authentication of your trusted friends (RSA-Keys).
Because you connect direct and enryepted only to your trusted friends, it is a fast and safe transfer of files.
See http://retroshare.sourceforge.net for more details.

View File

@ -0,0 +1,8 @@
bfe163ff72b9b099466a115810f7e95f usr/bin/retroshare
20db48f74f7e31a5674c56c436e00088 usr/bin/retroshare-nogui
87c010b9bd9dd51b60927e61916d610d usr/bin/RetroShare
9611435101c2623a3b6fb923fb0bc21e usr/share/retroshare/retroshare.desktop
cb9e1ddc438968f6cff23d1f98b08363 usr/share/retroshare/retroshare.png
ef5a0dc66c04eb2520d5578a470568ec usr/share/doc/retroshare/copyright
7ef7e1e8ce34cf44bf088f54260ab624 usr/share/doc/retroshare/README
92cccf17e248de268a33c8e79a0dff71 usr/share/doc/retroshare/changelog.Debian.gz

View File

@ -0,0 +1,10 @@
#!/bin/sh
set -e
if [ "$1" = "configure" ]
then
echo "Configure."
cp /usr/share/retroshare/retroshare.desktop "$HOME/Desktop"
fi
echo type \'retroshare\' as normal user for runnig Retroshare !
exit 0

View File

@ -0,0 +1,8 @@
#!/bin/sh
set -e
if [ \( "$1" = "upgrade" -o "$1" = "remove" \) ]
then
echo -n
fi
exit 0

View File

@ -0,0 +1,21 @@
#!/bin/sh
set -e
if [ \( "$1" = "upgrade" \) ]
then
echo Remeber: Your public keys and settings are in your home directory .pqiPGPrc !
fi
if [ \( "$1" = "remove" \) ]
then
echo Remeber: Your public keys in your home directory .pqiPHPrc will be deleted !
echo Type CTRL+C if you whish to abort, continue with ENTER
read weiter
if [ -d "$HOME/.pqiPGPrc" ] ; then
rm "$HOME/.pqiPGPrc/" --preserve-root -r
fi
if [ -e "$HOME/Desktop/retroshare.desktop" ] ; then
rm "$HOME/Desktop/retroshare.desktop"
fi
fi
exit 0