net-p2p/retroshare: Update to 0.6.3

Additional port changes:
* Changed to DISTVERSION
* Added LICENSE_FILE
* Updated USE_GNOME, USE_QT5
* Removed INSTALLS_ICONS

PR:		224661
Submitted by:	peter@netkey.at (maintainer)
Approved by:	tcberner (mentor, implicit)
This commit is contained in:
Yuri Victorovich 2018-02-22 07:55:38 +00:00
parent fa6b538abb
commit db570fdb0a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=462567
6 changed files with 514 additions and 462 deletions

View File

@ -2,15 +2,15 @@
# $FreeBSD$
PORTNAME= retroshare
PORTVERSION= 0.6.1
DISTVERSIONPREFIX= v
PORTREVISION= 9
DISTVERSION= 0.6.3
CATEGORIES= net-p2p
MAINTAINER= peter@netkey.at
COMMENT= Private and secure decentralised communication platform
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
LIB_DEPENDS= libsqlcipher.so:databases/sqlcipher \
libspeex.so:audio/speex \
@ -25,24 +25,18 @@ LIB_DEPENDS= libsqlcipher.so:databases/sqlcipher \
libmicrohttpd.so:www/libmicrohttpd
USES= compiler:features desktop-file-utils dos2unix pkgconfig qmake ssl
USE_GNOME= glib20 libxml2 libxslt
USE_GL= gl
USE_QT5= buildtools_build uitools_build core gui network xml \
widgets multimedia printsupport
INSTALLS_ICONS= yes
DOS2UNIX_FILES= retroshare-nogui/src/retroshare-nogui.pro
USE_GITHUB= yes
GH_ACCOUNT= RetroShare
GH_PROJECT= RetroShare
USE_GNOME= libxml2 libxslt
USE_GL= gl
USE_QT5= core gui multimedia printsupport network widgets xml \
buildtools_build uitools_build
DOS2UNIX_FILES= retroshare-nogui/src/retroshare-nogui.pro
.include <bsd.port.pre.mk>
post-patch:
.if ${COMPILER_FEATURES:Mlibc++}
@${REINPLACE_CMD} -e 's|std::tr1::|std::|' \
${WRKSRC}/libretroshare/src/dbase/findex.[ch]*
.endif
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \
${WRKSRC}/libretroshare/src/libretroshare.pro
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \
@ -50,9 +44,9 @@ post-patch:
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \
${WRKSRC}/retroshare-nogui/src/retroshare-nogui.pro
@${REINPLACE_CMD} -e 's|/usr/bin|${PREFIX}/bin|' \
${WRKSRC}/data/retroshare06.desktop
${WRKSRC}/data/retroshare.desktop
@${REINPLACE_CMD} -e 's|/usr/share|${PREFIX}/share|' \
${WRKSRC}/data/retroshare06.desktop
${WRKSRC}/data/retroshare.desktop
.if defined(GH_TAGNAME)
@${REINPLACE_CMD} -e 's|RS_REVISION_NUMBER.*|RS_REVISION_NUMBER 0x${GH_TAGNAME}|' \
${WRKSRC}/libretroshare/src/retroshare/rsversion.h

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1476367118
SHA256 (RetroShare-RetroShare-v0.6.1_GH0.tar.gz) = 4ffbb6c61538f80d0f667c2a155c5eac38b0722a3e8d4f1dc1487d10087cfe42
SIZE (RetroShare-RetroShare-v0.6.1_GH0.tar.gz) = 18002032
TIMESTAMP = 1514378949
SHA256 (RetroShare-RetroShare-v0.6.3_GH0.tar.gz) = ddb64aa5148fdc950d4426f52f1cbb11578619b1242614e3c4ca4792ee5ce30b
SIZE (RetroShare-RetroShare-v0.6.3_GH0.tar.gz) = 19699359

View File

@ -0,0 +1,25 @@
--- libresapi/src/libresapi.pro.orig 2017-10-20 20:57:46 UTC
+++ libresapi/src/libresapi.pro
@@ -160,9 +160,20 @@
api/ApiServerMHD.h
}
+freebsd-clang {
+ JSON_SOURCES = api/json.cpp
+ json.name = json
+ json.input = JSON_SOURCES
+ json.variable_out = OBJECTS
+ json.dependency_type = TYPE_C
+ json.output = ${QMAKE_VAR_OBJECTS_DIR}${QMAKE_FILE_IN_BASE}$${first(QMAKE_EXT_OBJ)}
+ json.commands = $${QMAKE_CXX} $(CXXFLAGS) -std=gnu++98 $(INCPATH) -c ${QMAKE_FILE_IN} -o ${QMAKE_FILE_OUT}
+ QMAKE_EXTRA_COMPILERS += json
+}
+
+
SOURCES += \
api/ApiServer.cpp \
- api/json.cpp \
api/JsonStream.cpp \
api/ResourceRouter.cpp \
api/PeersHandler.cpp \

View File

@ -0,0 +1,12 @@
--- libretroshare/src/util/cxx11retrocompat.h.orig 2017-07-31 06:26:46 UTC
+++ libretroshare/src/util/cxx11retrocompat.h
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifdef __GNUC__
+#if defined __GNUC__ and not defined __clang__
# define GCC_VERSION (__GNUC__*10000+__GNUC_MINOR__*100+__GNUC_PATCHLEVEL__)
# if GCC_VERSION < 40700
# define override

View File

@ -0,0 +1,21 @@
--- retroshare-gui/src/gui/elastic/fft.h.orig 2017-04-21 15:57:46 UTC
+++ retroshare-gui/src/gui/elastic/fft.h
@@ -85,6 +85,7 @@
#pragma once
#include <math.h>
+#include <sys/param.h>
class fft
{
@@ -106,6 +107,9 @@
for (j = 2; j <= nwh - 2; j += 2) {
#ifdef __APPLE__
__sincos(delta*j,&y,&x);
+#elif defined __clang__ && defined __FreeBSD_version && __FreeBSD_version < 1200000
+ x = cos(delta * j);
+ y = sin(delta * j);
#else
sincos(delta*j,&y,&x) ;
#endif

View File

@ -1,446 +1,446 @@
bin/RetroShare06
bin/RetroShare06-nogui
bin/retroshare
bin/retroshare-nogui
lib/retroshare/extensions6/libFeedReader.so
lib/retroshare/extensions6/libVOIP.so
share/RetroShare06/bdboot.txt
share/RetroShare06/qss/blacknight.qss
share/RetroShare06/qss/blacknight/check_sel.png
share/RetroShare06/qss/blacknight/check_unsel.png
share/RetroShare06/qss/blacknight/clbg.png
share/RetroShare06/qss/blacknight/down.png
share/RetroShare06/qss/blacknight/radio_sel.png
share/RetroShare06/qss/blacknight/radio_unsel.png
share/RetroShare06/qss/blacknight/up.png
share/RetroShare06/qss/blue.qss
share/RetroShare06/qss/blue/blue.png
share/RetroShare06/qss/blue/blue2.png
share/RetroShare06/qss/blue/tab1.png
share/RetroShare06/qss/blue/tabselected.png
share/RetroShare06/qss/groove.qss
share/RetroShare06/qss/orangesurfer.qss
share/RetroShare06/qss/orangesurfer/border.png
share/RetroShare06/qss/orangesurfer/main.png
share/RetroShare06/qss/orangesurfer/main2.png
share/RetroShare06/qss/orangesurfer/sizegrip.png
share/RetroShare06/qss/orangesurfer/tab_hover.png
share/RetroShare06/qss/orangesurfer/tab_normal.png
share/RetroShare06/qss/orangesurfer/tab_pressed.png
share/RetroShare06/qss/orangesurfer/toolbar.png
share/RetroShare06/qss/qdarkstyle.qss
share/RetroShare06/qss/qdarkstyle/Hmovetoolbar.png
share/RetroShare06/qss/qdarkstyle/Hsepartoolbar.png
share/RetroShare06/qss/qdarkstyle/Vmovetoolbar.png
share/RetroShare06/qss/qdarkstyle/Vsepartoolbar.png
share/RetroShare06/qss/qdarkstyle/branch_closed-on.png
share/RetroShare06/qss/qdarkstyle/branch_closed.png
share/RetroShare06/qss/qdarkstyle/branch_open-on.png
share/RetroShare06/qss/qdarkstyle/branch_open.png
share/RetroShare06/qss/qdarkstyle/checkbox.png
share/RetroShare06/qss/qdarkstyle/close.png
share/RetroShare06/qss/qdarkstyle/down_arrow.png
share/RetroShare06/qss/qdarkstyle/down_arrow_disabled.png
share/RetroShare06/qss/qdarkstyle/left_arrow.png
share/RetroShare06/qss/qdarkstyle/left_arrow_disabled.png
share/RetroShare06/qss/qdarkstyle/right_arrow.png
share/RetroShare06/qss/qdarkstyle/right_arrow_disabled.png
share/RetroShare06/qss/qdarkstyle/sizegrip.png
share/RetroShare06/qss/qdarkstyle/stylesheet-branch-end.png
share/RetroShare06/qss/qdarkstyle/stylesheet-branch-more.png
share/RetroShare06/qss/qdarkstyle/stylesheet-vline.png
share/RetroShare06/qss/qdarkstyle/transparent.png
share/RetroShare06/qss/qdarkstyle/undock.png
share/RetroShare06/qss/qdarkstyle/up_arrow.png
share/RetroShare06/qss/qdarkstyle/up_arrow_disabled.png
share/RetroShare06/qss/qlive.qss
share/RetroShare06/qss/qlive/qb.png
share/RetroShare06/qss/qlive/qb2.png
share/RetroShare06/qss/redscorpion.qss
share/RetroShare06/qss/redscorpion/red.png
share/RetroShare06/qss/redscorpion/red2.png
share/RetroShare06/qss/silver.qss
share/RetroShare06/qss/silver/silver.png
share/RetroShare06/qss/silver/silver2.png
share/RetroShare06/qss/silvergrey.qss
share/RetroShare06/qss/uus.qss
share/RetroShare06/qss/uus/uus.png
share/RetroShare06/qss/uus/uus2.png
share/RetroShare06/qss/wx.qss
share/RetroShare06/qss/wx/wx.png
share/RetroShare06/qss/yaba.qss
share/RetroShare06/qss/yaba/yaba.png
share/RetroShare06/qss/yaba/yaba2.png
share/RetroShare06/qss/yaba/yaba3.png
share/RetroShare06/qss/yeah.qss
share/RetroShare06/qss/yeah/yeah.png
share/RetroShare06/sounds/alert.wav
share/RetroShare06/sounds/chat1.wav
share/RetroShare06/sounds/chat2.wav
share/RetroShare06/sounds/file.wav
share/RetroShare06/sounds/ft_complete.wav
share/RetroShare06/sounds/ft_incoming.wav
share/RetroShare06/sounds/incomingchat.wav
share/RetroShare06/sounds/notify.wav
share/RetroShare06/sounds/offline.wav
share/RetroShare06/sounds/online1.wav
share/RetroShare06/sounds/online2.wav
share/RetroShare06/sounds/receive.wav
share/RetroShare06/sounds/send1.wav
share/RetroShare06/sounds/send2.wav
share/RetroShare06/sounds/startup.wav
share/RetroShare06/stylesheets/Bubble/history/hincoming.htm
share/RetroShare06/stylesheets/Bubble/history/houtgoing.htm
share/RetroShare06/stylesheets/Bubble/history/images.sh
share/RetroShare06/stylesheets/Bubble/history/img/bubble-blue/bubble_BC.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-blue/bubble_BL.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-blue/bubble_BR.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-blue/bubble_CC.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-blue/bubble_CL.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-blue/bubble_CR.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-blue/bubble_TC.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-blue/bubble_TL.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-blue/bubble_TR.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-blue/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-blue/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-blue/bubble_tick.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-green/bubble_BC.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-green/bubble_BL.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-green/bubble_BR.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-green/bubble_CC.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-green/bubble_CL.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-green/bubble_CR.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-green/bubble_TC.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-green/bubble_TL.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-green/bubble_TR.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-green/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-green/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-green/bubble_tick.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-grey/bubble_BC.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-grey/bubble_BL.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-grey/bubble_BR.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-grey/bubble_CC.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-grey/bubble_CL.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-grey/bubble_CR.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-grey/bubble_TC.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-grey/bubble_TL.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-grey/bubble_TR.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-grey/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-grey/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-grey/bubble_tick.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-orange/bubble_BC.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-orange/bubble_BL.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-orange/bubble_BR.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-orange/bubble_CC.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-orange/bubble_CL.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-orange/bubble_CR.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-orange/bubble_TC.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-orange/bubble_TL.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-orange/bubble_TR.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-orange/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-orange/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-orange/bubble_tick.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-red/bubble_BC.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-red/bubble_BL.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-red/bubble_BR.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-red/bubble_CC.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-red/bubble_CL.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-red/bubble_CR.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-red/bubble_TC.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-red/bubble_TL.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-red/bubble_TR.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-red/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-red/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble/history/img/bubble-red/bubble_tick.png
share/RetroShare06/stylesheets/Bubble/history/incoming.htm
share/RetroShare06/stylesheets/Bubble/history/info.xml
share/RetroShare06/stylesheets/Bubble/history/main.css
share/RetroShare06/stylesheets/Bubble/history/ooutgoing.htm
share/RetroShare06/stylesheets/Bubble/history/outgoing.htm
share/RetroShare06/stylesheets/Bubble/history/system.htm
share/RetroShare06/stylesheets/Bubble/history/variants/color.css
share/RetroShare06/stylesheets/Bubble/history/variants/standard.css
share/RetroShare06/stylesheets/Bubble/private/hincoming.htm
share/RetroShare06/stylesheets/Bubble/private/houtgoing.htm
share/RetroShare06/stylesheets/Bubble/private/images.sh
share/RetroShare06/stylesheets/Bubble/private/img/bubble-blue/bubble_BC.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-blue/bubble_BL.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-blue/bubble_BR.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-blue/bubble_CC.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-blue/bubble_CL.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-blue/bubble_CR.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-blue/bubble_TC.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-blue/bubble_TL.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-blue/bubble_TR.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-blue/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-blue/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-blue/bubble_tick.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-green/bubble_BC.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-green/bubble_BL.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-green/bubble_BR.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-green/bubble_CC.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-green/bubble_CL.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-green/bubble_CR.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-green/bubble_TC.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-green/bubble_TL.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-green/bubble_TR.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-green/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-green/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-green/bubble_tick.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-grey/bubble_BC.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-grey/bubble_BL.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-grey/bubble_BR.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-grey/bubble_CC.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-grey/bubble_CL.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-grey/bubble_CR.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-grey/bubble_TC.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-grey/bubble_TL.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-grey/bubble_TR.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-grey/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-grey/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-grey/bubble_tick.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-orange/bubble_BC.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-orange/bubble_BL.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-orange/bubble_BR.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-orange/bubble_CC.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-orange/bubble_CL.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-orange/bubble_CR.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-orange/bubble_TC.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-orange/bubble_TL.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-orange/bubble_TR.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-orange/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-orange/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-orange/bubble_tick.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-red/bubble_BC.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-red/bubble_BL.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-red/bubble_BR.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-red/bubble_CC.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-red/bubble_CL.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-red/bubble_CR.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-red/bubble_TC.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-red/bubble_TL.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-red/bubble_TR.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-red/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-red/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble/private/img/bubble-red/bubble_tick.png
share/RetroShare06/stylesheets/Bubble/private/incoming.htm
share/RetroShare06/stylesheets/Bubble/private/info.xml
share/RetroShare06/stylesheets/Bubble/private/main.css
share/RetroShare06/stylesheets/Bubble/private/ooutgoing.htm
share/RetroShare06/stylesheets/Bubble/private/outgoing.htm
share/RetroShare06/stylesheets/Bubble/private/system.htm
share/RetroShare06/stylesheets/Bubble/private/variants/color.css
share/RetroShare06/stylesheets/Bubble/private/variants/standard.css
share/RetroShare06/stylesheets/Bubble/public/hincoming.htm
share/RetroShare06/stylesheets/Bubble/public/houtgoing.htm
share/RetroShare06/stylesheets/Bubble/public/images.sh
share/RetroShare06/stylesheets/Bubble/public/img/bubble-blue/bubble_BC.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-blue/bubble_BL.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-blue/bubble_BR.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-blue/bubble_CC.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-blue/bubble_CL.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-blue/bubble_CR.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-blue/bubble_TC.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-blue/bubble_TL.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-blue/bubble_TR.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-blue/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-blue/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-blue/bubble_tick.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-green/bubble_BC.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-green/bubble_BL.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-green/bubble_BR.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-green/bubble_CC.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-green/bubble_CL.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-green/bubble_CR.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-green/bubble_TC.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-green/bubble_TL.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-green/bubble_TR.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-green/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-green/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-green/bubble_tick.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-grey/bubble_BC.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-grey/bubble_BL.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-grey/bubble_BR.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-grey/bubble_CC.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-grey/bubble_CL.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-grey/bubble_CR.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-grey/bubble_TC.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-grey/bubble_TL.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-grey/bubble_TR.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-grey/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-grey/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-grey/bubble_tick.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-orange/bubble_BC.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-orange/bubble_BL.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-orange/bubble_BR.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-orange/bubble_CC.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-orange/bubble_CL.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-orange/bubble_CR.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-orange/bubble_TC.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-orange/bubble_TL.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-orange/bubble_TR.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-orange/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-orange/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-orange/bubble_tick.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-red/bubble_BC.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-red/bubble_BL.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-red/bubble_BR.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-red/bubble_CC.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-red/bubble_CL.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-red/bubble_CR.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-red/bubble_TC.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-red/bubble_TL.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-red/bubble_TR.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-red/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-red/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble/public/img/bubble-red/bubble_tick.png
share/RetroShare06/stylesheets/Bubble/public/incoming.htm
share/RetroShare06/stylesheets/Bubble/public/info.xml
share/RetroShare06/stylesheets/Bubble/public/main.css
share/RetroShare06/stylesheets/Bubble/public/ooutgoing.htm
share/RetroShare06/stylesheets/Bubble/public/outgoing.htm
share/RetroShare06/stylesheets/Bubble/public/system.htm
share/RetroShare06/stylesheets/Bubble/public/variants/color.css
share/RetroShare06/stylesheets/Bubble/public/variants/standard.css
share/RetroShare06/stylesheets/Bubble/src/images.sh
share/RetroShare06/stylesheets/Bubble/src/img.svg
share/RetroShare06/stylesheets/Bubble/src/img/bubble-blue/bubble_BC.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-blue/bubble_BL.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-blue/bubble_BR.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-blue/bubble_CC.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-blue/bubble_CL.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-blue/bubble_CR.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-blue/bubble_TC.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-blue/bubble_TL.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-blue/bubble_TR.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-blue/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-blue/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-blue/bubble_tick.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-green/bubble_BC.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-green/bubble_BL.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-green/bubble_BR.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-green/bubble_CC.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-green/bubble_CL.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-green/bubble_CR.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-green/bubble_TC.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-green/bubble_TL.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-green/bubble_TR.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-green/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-green/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-green/bubble_tick.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-grey/bubble_BC.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-grey/bubble_BL.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-grey/bubble_BR.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-grey/bubble_CC.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-grey/bubble_CL.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-grey/bubble_CR.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-grey/bubble_TC.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-grey/bubble_TL.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-grey/bubble_TR.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-grey/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-grey/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-grey/bubble_tick.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-orange/bubble_BC.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-orange/bubble_BL.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-orange/bubble_BR.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-orange/bubble_CC.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-orange/bubble_CL.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-orange/bubble_CR.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-orange/bubble_TC.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-orange/bubble_TL.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-orange/bubble_TR.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-orange/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-orange/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-orange/bubble_tick.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-red/bubble_BC.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-red/bubble_BL.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-red/bubble_BR.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-red/bubble_CC.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-red/bubble_CL.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-red/bubble_CR.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-red/bubble_TC.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-red/bubble_TL.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-red/bubble_TR.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-red/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-red/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble/src/img/bubble-red/bubble_tick.png
share/RetroShare06/stylesheets/Bubble_Compact/private/Kopie von incoming.htm
share/RetroShare06/stylesheets/Bubble_Compact/private/hincoming.htm
share/RetroShare06/stylesheets/Bubble_Compact/private/houtgoing.htm
share/RetroShare06/stylesheets/Bubble_Compact/private/images.sh
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_BC.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_BL.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_BR.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_CC.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_CL.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_CR.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_TC.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_TL.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_TR.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_tick.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_BC.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_BL.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_BR.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_CC.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_CL.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_CR.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_TC.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_TL.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_TR.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_tick.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_BC.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_BL.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_BR.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_CC.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_CL.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_CR.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_TC.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_TL.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_TR.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_tick.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_BC.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_BL.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_BR.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_CC.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_CL.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_CR.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_TC.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_TL.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_TR.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_tick.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_BC.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_BL.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_BR.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_CC.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_CL.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_CR.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_TC.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_TL.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_TR.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_tick-left.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_tick-right.png
share/RetroShare06/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_tick.png
share/RetroShare06/stylesheets/Bubble_Compact/private/incoming.htm
share/RetroShare06/stylesheets/Bubble_Compact/private/info.xml
share/RetroShare06/stylesheets/Bubble_Compact/private/main.css
share/RetroShare06/stylesheets/Bubble_Compact/private/ooutgoing.htm
share/RetroShare06/stylesheets/Bubble_Compact/private/outgoing.htm
share/RetroShare06/stylesheets/Bubble_Compact/private/system.htm
share/RetroShare06/stylesheets/Bubble_Compact/private/variants/color.css
share/RetroShare06/stylesheets/Bubble_Compact/private/variants/standard.css
share/RetroShare06/webui/app.css
share/RetroShare06/webui/app.js
share/RetroShare06/webui/img/logo_splash.png
share/RetroShare06/webui/index.html
share/applications/retroshare06.desktop
share/icons/hicolor/128x128/apps/retroshare06.png
share/icons/hicolor/24x24/apps/retroshare06.png
share/icons/hicolor/48x48/apps/retroshare06.png
share/icons/hicolor/64x64/apps/retroshare06.png
share/pixmaps/retroshare06.xpm
%%DATADIR%%/bdboot.txt
%%DATADIR%%/qss/blacknight.qss
%%DATADIR%%/qss/blacknight/check_sel.png
%%DATADIR%%/qss/blacknight/check_unsel.png
%%DATADIR%%/qss/blacknight/clbg.png
%%DATADIR%%/qss/blacknight/down.png
%%DATADIR%%/qss/blacknight/radio_sel.png
%%DATADIR%%/qss/blacknight/radio_unsel.png
%%DATADIR%%/qss/blacknight/up.png
%%DATADIR%%/qss/blue.qss
%%DATADIR%%/qss/blue/blue.png
%%DATADIR%%/qss/blue/blue2.png
%%DATADIR%%/qss/blue/tab1.png
%%DATADIR%%/qss/blue/tabselected.png
%%DATADIR%%/qss/groove.qss
%%DATADIR%%/qss/orangesurfer.qss
%%DATADIR%%/qss/orangesurfer/border.png
%%DATADIR%%/qss/orangesurfer/main.png
%%DATADIR%%/qss/orangesurfer/main2.png
%%DATADIR%%/qss/orangesurfer/sizegrip.png
%%DATADIR%%/qss/orangesurfer/tab_hover.png
%%DATADIR%%/qss/orangesurfer/tab_normal.png
%%DATADIR%%/qss/orangesurfer/tab_pressed.png
%%DATADIR%%/qss/orangesurfer/toolbar.png
%%DATADIR%%/qss/qdarkstyle.qss
%%DATADIR%%/qss/qdarkstyle/Hmovetoolbar.png
%%DATADIR%%/qss/qdarkstyle/Hsepartoolbar.png
%%DATADIR%%/qss/qdarkstyle/Vmovetoolbar.png
%%DATADIR%%/qss/qdarkstyle/Vsepartoolbar.png
%%DATADIR%%/qss/qdarkstyle/branch_closed-on.png
%%DATADIR%%/qss/qdarkstyle/branch_closed.png
%%DATADIR%%/qss/qdarkstyle/branch_open-on.png
%%DATADIR%%/qss/qdarkstyle/branch_open.png
%%DATADIR%%/qss/qdarkstyle/checkbox.png
%%DATADIR%%/qss/qdarkstyle/close.png
%%DATADIR%%/qss/qdarkstyle/down_arrow.png
%%DATADIR%%/qss/qdarkstyle/down_arrow_disabled.png
%%DATADIR%%/qss/qdarkstyle/left_arrow.png
%%DATADIR%%/qss/qdarkstyle/left_arrow_disabled.png
%%DATADIR%%/qss/qdarkstyle/right_arrow.png
%%DATADIR%%/qss/qdarkstyle/right_arrow_disabled.png
%%DATADIR%%/qss/qdarkstyle/sizegrip.png
%%DATADIR%%/qss/qdarkstyle/stylesheet-branch-end.png
%%DATADIR%%/qss/qdarkstyle/stylesheet-branch-more.png
%%DATADIR%%/qss/qdarkstyle/stylesheet-vline.png
%%DATADIR%%/qss/qdarkstyle/transparent.png
%%DATADIR%%/qss/qdarkstyle/undock.png
%%DATADIR%%/qss/qdarkstyle/up_arrow.png
%%DATADIR%%/qss/qdarkstyle/up_arrow_disabled.png
%%DATADIR%%/qss/qlive.qss
%%DATADIR%%/qss/qlive/qb.png
%%DATADIR%%/qss/qlive/qb2.png
%%DATADIR%%/qss/redscorpion.qss
%%DATADIR%%/qss/redscorpion/red.png
%%DATADIR%%/qss/redscorpion/red2.png
%%DATADIR%%/qss/silver.qss
%%DATADIR%%/qss/silver/silver.png
%%DATADIR%%/qss/silver/silver2.png
%%DATADIR%%/qss/silvergrey.qss
%%DATADIR%%/qss/uus.qss
%%DATADIR%%/qss/uus/uus.png
%%DATADIR%%/qss/uus/uus2.png
%%DATADIR%%/qss/wx.qss
%%DATADIR%%/qss/wx/wx.png
%%DATADIR%%/qss/yaba.qss
%%DATADIR%%/qss/yaba/yaba.png
%%DATADIR%%/qss/yaba/yaba2.png
%%DATADIR%%/qss/yaba/yaba3.png
%%DATADIR%%/qss/yeah.qss
%%DATADIR%%/qss/yeah/yeah.png
%%DATADIR%%/sounds/alert.wav
%%DATADIR%%/sounds/chat1.wav
%%DATADIR%%/sounds/chat2.wav
%%DATADIR%%/sounds/file.wav
%%DATADIR%%/sounds/ft_complete.wav
%%DATADIR%%/sounds/ft_incoming.wav
%%DATADIR%%/sounds/incomingchat.wav
%%DATADIR%%/sounds/notify.wav
%%DATADIR%%/sounds/offline.wav
%%DATADIR%%/sounds/online1.wav
%%DATADIR%%/sounds/online2.wav
%%DATADIR%%/sounds/receive.wav
%%DATADIR%%/sounds/send1.wav
%%DATADIR%%/sounds/send2.wav
%%DATADIR%%/sounds/startup.wav
%%DATADIR%%/stylesheets/Bubble/history/hincoming.htm
%%DATADIR%%/stylesheets/Bubble/history/houtgoing.htm
%%DATADIR%%/stylesheets/Bubble/history/images.sh
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-blue/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-blue/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-blue/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-blue/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-blue/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-blue/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-blue/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-blue/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-blue/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-blue/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-blue/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-blue/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-green/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-green/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-green/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-green/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-green/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-green/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-green/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-green/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-green/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-green/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-green/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-green/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-grey/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-grey/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-grey/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-grey/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-grey/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-grey/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-grey/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-grey/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-grey/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-grey/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-grey/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-grey/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-orange/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-orange/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-orange/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-orange/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-orange/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-orange/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-orange/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-orange/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-orange/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-orange/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-orange/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-orange/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-red/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-red/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-red/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-red/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-red/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-red/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-red/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-red/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-red/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-red/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-red/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble/history/img/bubble-red/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble/history/incoming.htm
%%DATADIR%%/stylesheets/Bubble/history/info.xml
%%DATADIR%%/stylesheets/Bubble/history/main.css
%%DATADIR%%/stylesheets/Bubble/history/ooutgoing.htm
%%DATADIR%%/stylesheets/Bubble/history/outgoing.htm
%%DATADIR%%/stylesheets/Bubble/history/system.htm
%%DATADIR%%/stylesheets/Bubble/history/variants/color.css
%%DATADIR%%/stylesheets/Bubble/history/variants/standard.css
%%DATADIR%%/stylesheets/Bubble/private/hincoming.htm
%%DATADIR%%/stylesheets/Bubble/private/houtgoing.htm
%%DATADIR%%/stylesheets/Bubble/private/images.sh
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-blue/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-blue/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-blue/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-blue/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-blue/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-blue/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-blue/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-blue/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-blue/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-blue/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-blue/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-blue/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-green/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-green/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-green/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-green/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-green/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-green/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-green/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-green/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-green/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-green/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-green/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-green/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-grey/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-grey/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-grey/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-grey/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-grey/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-grey/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-grey/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-grey/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-grey/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-grey/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-grey/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-grey/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-orange/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-orange/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-orange/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-orange/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-orange/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-orange/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-orange/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-orange/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-orange/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-orange/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-orange/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-orange/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-red/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-red/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-red/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-red/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-red/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-red/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-red/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-red/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-red/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-red/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-red/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble/private/img/bubble-red/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble/private/incoming.htm
%%DATADIR%%/stylesheets/Bubble/private/info.xml
%%DATADIR%%/stylesheets/Bubble/private/main.css
%%DATADIR%%/stylesheets/Bubble/private/ooutgoing.htm
%%DATADIR%%/stylesheets/Bubble/private/outgoing.htm
%%DATADIR%%/stylesheets/Bubble/private/system.htm
%%DATADIR%%/stylesheets/Bubble/private/variants/color.css
%%DATADIR%%/stylesheets/Bubble/private/variants/standard.css
%%DATADIR%%/stylesheets/Bubble/public/hincoming.htm
%%DATADIR%%/stylesheets/Bubble/public/houtgoing.htm
%%DATADIR%%/stylesheets/Bubble/public/images.sh
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-blue/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-blue/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-blue/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-blue/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-blue/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-blue/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-blue/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-blue/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-blue/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-blue/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-blue/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-blue/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-green/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-green/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-green/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-green/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-green/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-green/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-green/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-green/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-green/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-green/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-green/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-green/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-grey/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-grey/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-grey/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-grey/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-grey/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-grey/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-grey/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-grey/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-grey/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-grey/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-grey/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-grey/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-orange/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-orange/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-orange/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-orange/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-orange/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-orange/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-orange/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-orange/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-orange/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-orange/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-orange/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-orange/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-red/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-red/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-red/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-red/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-red/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-red/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-red/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-red/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-red/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-red/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-red/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble/public/img/bubble-red/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble/public/incoming.htm
%%DATADIR%%/stylesheets/Bubble/public/info.xml
%%DATADIR%%/stylesheets/Bubble/public/main.css
%%DATADIR%%/stylesheets/Bubble/public/ooutgoing.htm
%%DATADIR%%/stylesheets/Bubble/public/outgoing.htm
%%DATADIR%%/stylesheets/Bubble/public/system.htm
%%DATADIR%%/stylesheets/Bubble/public/variants/color.css
%%DATADIR%%/stylesheets/Bubble/public/variants/standard.css
%%DATADIR%%/stylesheets/Bubble/src/images.sh
%%DATADIR%%/stylesheets/Bubble/src/img.svg
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-blue/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-blue/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-blue/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-blue/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-blue/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-blue/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-blue/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-blue/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-blue/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-blue/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-blue/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-blue/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-green/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-green/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-green/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-green/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-green/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-green/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-green/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-green/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-green/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-green/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-green/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-green/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-grey/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-grey/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-grey/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-grey/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-grey/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-grey/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-grey/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-grey/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-grey/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-grey/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-grey/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-grey/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-orange/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-orange/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-orange/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-orange/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-orange/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-orange/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-orange/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-orange/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-orange/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-orange/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-orange/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-orange/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-red/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-red/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-red/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-red/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-red/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-red/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-red/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-red/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-red/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-red/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-red/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble/src/img/bubble-red/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/Kopie von incoming.htm
%%DATADIR%%/stylesheets/Bubble_Compact/private/hincoming.htm
%%DATADIR%%/stylesheets/Bubble_Compact/private/houtgoing.htm
%%DATADIR%%/stylesheets/Bubble_Compact/private/images.sh
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-blue/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-green/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-grey/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-orange/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_BC.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_BL.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_BR.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_CC.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_CL.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_CR.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_TC.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_TL.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_TR.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_tick-left.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_tick-right.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/img/bubble-red/bubble_tick.png
%%DATADIR%%/stylesheets/Bubble_Compact/private/incoming.htm
%%DATADIR%%/stylesheets/Bubble_Compact/private/info.xml
%%DATADIR%%/stylesheets/Bubble_Compact/private/main.css
%%DATADIR%%/stylesheets/Bubble_Compact/private/ooutgoing.htm
%%DATADIR%%/stylesheets/Bubble_Compact/private/outgoing.htm
%%DATADIR%%/stylesheets/Bubble_Compact/private/system.htm
%%DATADIR%%/stylesheets/Bubble_Compact/private/variants/color.css
%%DATADIR%%/stylesheets/Bubble_Compact/private/variants/standard.css
%%DATADIR%%/webui/app.css
%%DATADIR%%/webui/app.js
%%DATADIR%%/webui/img/logo_splash.png
%%DATADIR%%/webui/index.html
share/applications/retroshare.desktop
share/icons/hicolor/128x128/apps/retroshare.png
share/icons/hicolor/24x24/apps/retroshare.png
share/icons/hicolor/48x48/apps/retroshare.png
share/icons/hicolor/64x64/apps/retroshare.png
share/pixmaps/retroshare.xpm