mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@743 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
09a17cdecc
commit
53830e61ed
209
build_scripts/debian/usr/share/doc/retroshare/README
Executable file
209
build_scripts/debian/usr/share/doc/retroshare/README
Executable file
@ -0,0 +1,209 @@
|
||||
|
||||
Compiling + Running RetroShare (V0.3.0)
|
||||
-------------------------------------------------------------
|
||||
|
||||
Quick Requirements:
|
||||
---------------------------------------------
|
||||
Libraries/Tools:
|
||||
C/C++ Compiler. (standard on Linux/cygwin)
|
||||
OpenSSL-0.9.7g-xpgp
|
||||
KadC Dht library
|
||||
Qt-4.2 development libraries.
|
||||
qskinobject library (Required when compile with QT 4.3.x)
|
||||
|
||||
RetroShare Source Code: ( from sf.net/projects/retroshare)
|
||||
Qt-GUI-XXX.tgz
|
||||
retroshare-src-v0.3.XXX.tgz
|
||||
|
||||
Windows Requirements:
|
||||
Cygwin (Windows Only)
|
||||
Pthreads (Windows Only)
|
||||
Zlib (Windows Only)
|
||||
---------------------------------------------
|
||||
|
||||
OpenSSL-0.9.7g-xpgp is available at:
|
||||
http://www.lunamutt.com/retroshare/openssl-0.9.7g-xpgp-0.1c.tgz
|
||||
|
||||
KadC (latest) is available from sourceforge.net
|
||||
|
||||
Download/Compile as per instructions...
|
||||
|
||||
---------------------------------------------
|
||||
|
||||
Compiling Linux
|
||||
---------------------------------------------
|
||||
|
||||
(1) compile openSSL-0.9.7g-xpgp.
|
||||
|
||||
(2) compile KadC. (and correct the library)
|
||||
|
||||
(4) Modify ./make.opts
|
||||
(4a) modify the Makefile so that: OS=Linux or OS=Win
|
||||
(4c) Define SSL_DIR to point to openSSL-0.9.7g-xpgp.
|
||||
(4c) Define KADC_DIR to point to KadC
|
||||
|
||||
(5) type: make
|
||||
This builds ./lib/libretroshare.a,
|
||||
and the various test programs.
|
||||
|
||||
There is server-only (no GUI) executable
|
||||
compiled in ./rsiface/retroshare-nogui,
|
||||
you can run this to check that its working.
|
||||
|
||||
---------------------------------------------
|
||||
|
||||
Compiling Linux (Alternative Instructions from Bharath)
|
||||
---------------------------------------------
|
||||
here's how to compiled retroshare on ubuntu linux:
|
||||
|
||||
compile openssl:
|
||||
1. Get the patched version of openssl (openssl-0.9.7g-xpgp, from http://www.lunamutt.com)
|
||||
2. run:
|
||||
./config
|
||||
make
|
||||
make test
|
||||
|
||||
compile KadC:
|
||||
1. Get KadC library from http://kadc.sourceforge.net/
|
||||
2. run:
|
||||
make
|
||||
|
||||
install packages needed for retroshare compile:
|
||||
sudo apt-get install libxft-dev
|
||||
sudo apt-get install libXinerama-dev
|
||||
|
||||
complile retroshare:
|
||||
1. set directories in make.opt:
|
||||
RS_DIR=/home/dev/rs-v0.3.0-pr8/src
|
||||
SSL_DIR=/home/dev/openssl-0.9.7g-xpgp-0.1c
|
||||
KADC_DIR=/home/dev/KadC
|
||||
2. comment out the directory declarations uncer Cygwin since that will override your directory declarations from 1.
|
||||
3. change RSLIBS = -L$(LIBDIR) -lretroshare -L$(SSL_DIR) -lssl -lcrypto -lpthread -lKadC
|
||||
to
|
||||
RSLIBS = -L$(LIBDIR) -lretroshare -L$(SSL_DIR) -lssl -lcrypto -lpthread -L$(KADC_DIR) -lKadC
|
||||
4. run:
|
||||
make
|
||||
|
||||
Hope this helps.
|
||||
|
||||
---------------------------------------------
|
||||
Compiling the skinobject (only Required when compile with QT 4.3.x)
|
||||
|
||||
1. Download skinobject from https://sourceforge.net/projects/qskinwindows/
|
||||
|
||||
http://downloads.sourceforge.net/qskinwindows/qskinobject-0.6.1.tar.bz2?
|
||||
|
||||
2. untar the qskinobject-0.6.1.tar.bz2
|
||||
|
||||
3. run:
|
||||
qmake
|
||||
make
|
||||
|
||||
4.Copy the libskin.a to your retroshare libs directory.
|
||||
|
||||
5.then add to LIBS= -lskin to the RetroShare.pro file:
|
||||
|
||||
example(linux):
|
||||
|
||||
TARGET = RetroShare
|
||||
RSLIBS = -L/path/to/your/retroshare/libs/directory/ -lretroshare -lKadC -lKadC -lminiupnpc -lskin -lssl -lcrypto
|
||||
LIBS = $(RSLIBS)
|
||||
|
||||
example (Windows):
|
||||
|
||||
win32
|
||||
{
|
||||
RC_FILE = gui/images/retroshare_win.rc
|
||||
|
||||
"LIBS += -L"../../winlibs" -lretroshare -lssl -lcrypto -lpthreadGC2d -lKadC -lminiupnpc -lz -lws2_32 -luuid -lole32 -liphlpapi -lcrypt32-cygwin -lskin -lgdi32
|
||||
CONFIG += qt release"
|
||||
}
|
||||
|
||||
---------------------------------------------
|
||||
Compiling QCheckers game
|
||||
_____________________________________________
|
||||
|
||||
1.qmake
|
||||
2.make
|
||||
3.Copy the libqcheckers.a to your retroshare libs directory.
|
||||
5.then add to LIBS= -lqcheckers to the RetroShare.pro file:
|
||||
|
||||
example(linux):
|
||||
|
||||
RSLIBS = -L/path/to/your/retroshare/libs/directory/ -lretroshare -lKadC -lKadC -lminiupnpc -lskin -lqcheckers -lssl -lcrypto
|
||||
LIBS = $(RSLIBS)
|
||||
|
||||
example (Windows):
|
||||
|
||||
win32
|
||||
{
|
||||
RC_FILE = gui/images/retroshare_win.rc
|
||||
|
||||
"LIBS += -L"../../winlibs" -lretroshare -lssl -lcrypto -lpthreadGC2d -lKadC -lminiupnpc -lz -lws2_32 -luuid -lole32 -liphlpapi -lcrypt32-cygwin -lskin -lqcheckers -lgdi32
|
||||
CONFIG += qt release"
|
||||
}
|
||||
|
||||
---------------------------------------------
|
||||
Compiling the Qt GUI
|
||||
_____________________________________________
|
||||
|
||||
(1) untar the Qt-GUI source package. run qmake,
|
||||
|
||||
tar -xvzf Qt-GUI-XXXX.tgz
|
||||
|
||||
cd Qt-Gui-XXX/src/
|
||||
|
||||
qmake-qt4 Retroshare.pro
|
||||
|
||||
(2) tweak the makefile: The default makefile
|
||||
doesn't have the links to the retroshare
|
||||
libraries. It should something like this:
|
||||
|
||||
RSLIBS = -L/home/dev/prog/devel/rs-v0.3.0XXX/src/lib -lretroshare -lKadC
|
||||
SSLLIBS = -L/home/dev/prog/devel/openssl-0.9.7g-xpgp -lssl -lcrypto
|
||||
LIBS = $(SUBLIBS) $(RSLIBS) $(SSLLIBS) -L/usr/lib -lQtXml -lQtGui -lQtNetwork -lQtCore -lpthread
|
||||
|
||||
This should build you an executable:
|
||||
|
||||
RetroShare.
|
||||
|
||||
------------------------------------------------
|
||||
This has been compiled on the following platforms:
|
||||
(a) Debian Linux (stable/testing/unstable)
|
||||
(b) Suse Linux (9.X/10.X)
|
||||
(c) WinXP
|
||||
|
||||
------------------------------------------------
|
||||
WIN XP Compilation.
|
||||
------------------------------------------------
|
||||
|
||||
This much harder, and more perilous than the
|
||||
Linux compilation: It requires both the cygwin
|
||||
and the mingw compilers...
|
||||
|
||||
Need:
|
||||
Cygwin development environment
|
||||
Qt4.2 opensource development kit + MinGw.
|
||||
source code for all libraries.
|
||||
|
||||
In Brief:
|
||||
UNDER Cygwin:
|
||||
(1) Compile openssl-xpgp.
|
||||
(2) Compile pthreads.
|
||||
(3) Compile zlib.
|
||||
(4) Compile KadC. (there are some tweaks,
|
||||
needed to the code)
|
||||
|
||||
(5) Compile retroshare-v0.3.0
|
||||
|
||||
UNDER Mingw:
|
||||
(6) Compile qskinobject (only under QT 4.3.x)
|
||||
(7) Compile the Qt-Gui.
|
||||
|
||||
|
||||
Email me if you're having trouble:
|
||||
retroshare@lunamutt.com
|
||||
---------------------------------------------
|
||||
|
||||
|
||||
|
BIN
build_scripts/debian/usr/share/doc/retroshare/changelog.Debian.gz
Executable file
BIN
build_scripts/debian/usr/share/doc/retroshare/changelog.Debian.gz
Executable file
Binary file not shown.
31
build_scripts/debian/usr/share/doc/retroshare/copyright
Executable file
31
build_scripts/debian/usr/share/doc/retroshare/copyright
Executable file
@ -0,0 +1,31 @@
|
||||
This package was debianized by Thomas Eimers on
|
||||
Thu, 02 OCT 2007 10:10:00 +0200.
|
||||
|
||||
It was downloaded from http://sourceforge.net/projects/retroshare/
|
||||
|
||||
Copyright:
|
||||
|
||||
/*
|
||||
* "$Id: licence,v 1.1 2007-02-18 21:46:42 rmf24 Exp $"
|
||||
*
|
||||
* TOU + 3P/PQI + RetroShare.
|
||||
*
|
||||
* Copyright 2004-2006 by Robert Fernie.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License Version 2 as published by the Free Software Foundation.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
||||
* USA.
|
||||
*
|
||||
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
||||
*
|
||||
*/
|
312
build_scripts/debian/usr/share/retroshare/kadc.ini
Executable file
312
build_scripts/debian/usr/share/retroshare/kadc.ini
Executable file
@ -0,0 +1,312 @@
|
||||
[local]
|
||||
# if the hash (first arg) is 0, a random value will be used.
|
||||
0 0.0.0.0 1234 4662 0
|
||||
[some_ignored_stuff]
|
||||
these lines...
|
||||
...under unrecognized sections...
|
||||
...are ignored and left alone...
|
||||
[overnet_peers]
|
||||
# 299 contacts follow
|
||||
00000100000000000000190100002c0d 212.21.252.42 6460 1
|
||||
00af9e4e7a2f9545411a58b21a6efd21 83.49.97.103 7125 0
|
||||
00e0d1e8361fe1a423588b6ce506421f 82.120.156.194 4393 1
|
||||
0140b99fc94590478d30f84c359f14c2 84.56.37.11 9366 0
|
||||
01d1b5dab69e5ab02d1621b38eb7b2f2 66.186.194.22 7871 0
|
||||
020721a6a5d48ef9134fa8365df7e292 59.15.108.33 6094 1
|
||||
02ee106aca50fdab30ea0f1844d9fe55 86.67.225.228 7720 0
|
||||
040fb393e5b05ef905030ebb8d25b74e 154.37.66.119 7871 0
|
||||
0428149f065519d728e1a3727f084e03 83.39.135.224 3223 0
|
||||
05119c3579eeae768186bf84e700eda4 69.143.7.190 18882 0
|
||||
058ca114eff1ad6b3338145935ca2322 203.95.6.226 8086 0
|
||||
06aed00f8ec6b321665ae8f0f20823ac 81.248.38.149 11936 1
|
||||
077e13cfed8988c047c0d23a66f8b06e 84.131.63.227 3136 1
|
||||
07e1e3ddd95503458bc94db690ef7c89 88.224.73.7 4409 0
|
||||
0932d34324a42f6e509869d2f6089845 82.93.150.100 12617 0
|
||||
0aaaa2a397c5480a9471985c17be72c9 80.57.4.124 8638 0
|
||||
0c73b9dca6adde252cef02222c906769 209.172.60.242 17967 0
|
||||
0e80d0a719cc7ae03e1ef3cf4797f340 213.219.244.76 18120 0
|
||||
100b943786231a7f6799ae20ab93b188 81.174.8.71 6188 1
|
||||
101abe3d71f08e125f1e62c20d15b173 82.32.123.65 12091 0
|
||||
103d4e7d36eb22acee381870ee9431d9 82.119.167.70 3986 0
|
||||
1049fdf830ba766894b650af7c087917 86.61.0.238 4325 0
|
||||
105bc60c5328e27429ba2bdd62f7fe02 82.234.220.162 8714 0
|
||||
106ddedbdfa3db7da6e0774cd6cf689a 201.212.19.31 8856 0
|
||||
1240028c6d7ab3992ada0e5ca55ee4f3 80.224.74.223 3816 0
|
||||
128c208b44ddb478c2d1d2731067c9a1 69.193.153.69 8657 0
|
||||
134eba47673d8a56623622ade4aa9d4d 151.37.130.189 13249 0
|
||||
13565c0d1e2d2ece72ae73e7b86fbbb0 217.229.39.74 4700 0
|
||||
135eee177f50b23b052922366c25dd40 82.231.188.24 4300 0
|
||||
13832aff0e663fc3fd2f6fdb01819a37 81.33.53.125 10571 0
|
||||
142134fc8e46477c228ab5bef2994bf0 84.180.95.254 10712 0
|
||||
146044b2cc3fcfd64d37bec976f5154b 84.176.93.7 4949 1
|
||||
14a4a1503fb10c9130f728b59d6ae775 172.186.150.84 4189 0
|
||||
14b6e3138c7184f6d02335ccd7b3d349 82.44.208.187 7989 0
|
||||
14bdb20380b9fe5fac750a7b98f1d657 82.15.75.24 10129 0
|
||||
153f1944326dac8fb5c638630b88e5bf 66.186.194.22 7871 0
|
||||
15b4649c4e9b38c4275a5a85b1907a1b 82.225.126.39 11144 0
|
||||
16913fa2d914eee2f3d1ad8e07ddef00 82.94.230.194 34663 1
|
||||
1a48ab22b7083e0d7b135368dae8409f 154.37.66.163 7871 0
|
||||
1a98534e56a82062ce61d0fe36b47763 154.37.66.210 7871 0
|
||||
1b2c06252fa8e2b27a6605700c9417aa 154.37.66.163 7871 1
|
||||
1ec0b86803e4191e925a84b38f6f66f1 59.3.128.140 10408 0
|
||||
1ec3a6e221912329740ab418f754d120 82.50.42.237 5134 0
|
||||
1f76623fb91b22b672827b4539125941 66.186.194.22 7871 1
|
||||
1f84fa0b700b830a2be30ec0b7410b4b 213.46.49.71 6883 0
|
||||
1fbbcc1f0466ff2749c6968021d0fff0 202.178.238.17 3441 1
|
||||
2057cf7bee2307429094ed2661ebce10 218.174.148.93 10288 0
|
||||
205bc023383ef54320810bfbaba35e72 200.117.179.4 4090 0
|
||||
206daeed2d1fe765c0448c16a20bbd92 86.215.227.32 11975 0
|
||||
20ac92b26096a0b26afeb62d4aa46e8a 71.143.20.229 7944 0
|
||||
22e2c394a295b790f9254f818f1d8912 82.160.111.3 43009 0
|
||||
25eb082c426f6be16c7414fc1d9d265a 66.186.194.22 7871 0
|
||||
266983a146b267ee4bc2bda18471dfba 82.98.235.75 19272 0
|
||||
284ad3e97f394270d0282fdbbc2bc5d4 154.37.66.210 7871 0
|
||||
284ad3e9af541b8d6b71c177f97e5a50 154.37.66.119 7871 0
|
||||
28eb6b33e6a36eb0c328e64f2288265c 69.36.7.238 16443 0
|
||||
2a42310b65d93d629811b2c72ca38bb6 194.176.38.39 17030 0
|
||||
2a648776c6b6d3e2f2bd5abb62bfa13e 154.37.66.164 7871 0
|
||||
2a9efbdb72ec0bf87f71bb70c8ca5104 154.37.66.118 7871 0
|
||||
2d736cb7f396677aa569f61a9994bca2 213.26.213.150 6773 0
|
||||
2dfe9e9769fe0e4e7b278cb6621ee8ae 85.118.42.2 5845 0
|
||||
2e8138bbbc6d269d8980ebb7139b2d2e 84.189.81.105 8557 1
|
||||
2eb02ae8d39b82b7de1a50d2cc730159 87.5.104.125 4534 0
|
||||
2f0345e78f62974117147a76bfcd667a 194.87.2.227 7968 0
|
||||
2f1ceeed7b1e5d8d081975f7cb16f61a 82.123.52.237 6670 1
|
||||
3109087088ea36693690736c484da5d6 66.172.60.202 7871 0
|
||||
32e5b6a07b7adcae86ec8645c3b53345 84.6.230.127 8547 0
|
||||
33ee089f36bd61642cdae4fc12887f12 213.33.74.13 4899 0
|
||||
33fc32e43569b7bf8de1d616ee582e0e 212.183.196.28 11112 1
|
||||
344475a95c8d222d931197d967838874 68.164.200.16 4666 0
|
||||
34abed90c43fd146bd48c3bf73414248 200.176.1.231 10334 0
|
||||
3c6fedeff5568a2d567d5001a8bb9799 154.37.66.164 7871 0
|
||||
3cab2ba963a2afc56c622942dffb314b 218.167.243.199 3859 0
|
||||
3d6a999afb90e3dd47deae543e7adc0f 70.225.179.150 4921 1
|
||||
402a43725e1f8e7223283d3f6b84cedb 207.226.112.34 7871 0
|
||||
402a4372b1c4b78d71443d2757b4c44f 154.37.66.209 7871 0
|
||||
40439250083714f0ef6cfbe8410b9cc7 83.28.130.39 10983 0
|
||||
41191321e4a01a960ec6a0c47c09937b 80.119.16.115 10227 0
|
||||
41308640bad797421054cffe451c88e6 85.25.5.68 13769 0
|
||||
4134f84157327b7f872266d0a3e22f9e 80.109.31.72 4367 0
|
||||
414da2a44a47b4b391580c493671ea75 81.10.173.137 12070 0
|
||||
416a9315ca6df00fe926c0f28aa367e0 62.234.42.193 12621 0
|
||||
418d7b2fc949943fc8076cc64c6d9e3c 83.5.100.89 9697 0
|
||||
4348d06909d90e864cbe58d691e2c35e 216.118.117.190 16840 1
|
||||
4384a5ed491eb69f75ca9c4f494a1983 62.79.10.192 6376 0
|
||||
439ffe9479cdbb6b010d87326469aa10 85.214.22.19 18834 0
|
||||
43cac008bf072422998e920d7b42aa66 66.186.194.22 7871 0
|
||||
46abf1d6a1c250473c3d3f3289bf32f5 84.16.239.143 9993 0
|
||||
48c8efa91c0c20a5dd2f50a42b28c526 154.37.66.209 7871 0
|
||||
48d2e9aaa05634d35a0bcefab2706da8 88.208.156.27 8008 0
|
||||
48dbe1f2e82da0e3dc948082c40cc868 81.190.226.234 10220 1
|
||||
49ad250210a9842cfce8fb6d8b848cc9 70.244.240.12 8155 0
|
||||
4a278d563f2c1b19f15ee7d0b596f4c7 222.115.96.36 10456 0
|
||||
4cb3961ab7554e5808839f17f963264a 61.64.202.121 7465 0
|
||||
502d9781477686ad9e4bb45843ade024 154.37.66.210 7871 0
|
||||
532675386d44e633c0b8159def808ffc 217.117.25.2 16608 0
|
||||
53d55836dddbb45acba4e4d976308640 81.169.154.17 13376 1
|
||||
5bed15c81eed383880466b4ca8865f1b 69.26.191.34 7871 0
|
||||
5bed15c8b315fb204f57c5447d0dc090 66.186.194.22 7871 0
|
||||
5bed15c8b53c75025fde195085bbfbe1 216.151.155.52 7871 0
|
||||
5d9df2698eb1068192081745a00db98b 84.60.110.93 8663 0
|
||||
5dbe100c54a2999a123db36344a4e617 84.159.88.123 4665 0
|
||||
606683d162f16dad43362c06b3b09d57 194.146.250.3 10301 0
|
||||
6082bbe1ed810c4ae158ad38e61a3574 67.81.84.9 3167 0
|
||||
62dfdbbd0612276897e07698f63b3b00 82.47.84.135 3736 0
|
||||
67c712cb6b84a3bdd411b1271ac63d4b 83.14.222.154 18832 0
|
||||
687d972940015e16710bab325bd8e7d5 154.37.66.119 7871 0
|
||||
689ffca94fab665884a8a77dbf374201 194.242.112.75 19269 0
|
||||
68e0d43809dc30bbfcd20b3e04a3761d 70.87.198.10 7340 0
|
||||
6928f1993de7d20516fd1dd489213dbc 64.124.113.210 3620 0
|
||||
69becb3ffc5ce5a94519c5c36eb9aba5 195.140.143.136 15695 0
|
||||
6c3955e923856041f4c3cfb39c0e67c5 211.22.103.214 5592 0
|
||||
6cc332e51993987b2e21b0d486dca397 69.26.191.34 7871 0
|
||||
6cc7b9fac6a4ea014004dd5c76e08469 83.192.104.85 3396 0
|
||||
6ed3d7ea41c715c533ef79bb61367569 195.230.85.7 2283 0
|
||||
7071f21143ad5bbad39a05b153296898 82.240.200.100 9037 0
|
||||
70ebe387c2bbe0331f1d8df2d953057d 154.37.66.187 7871 0
|
||||
737a603959b1798fb25769eaaa7ab976 193.42.213.124 16027 0
|
||||
749479e0e04443b39e7c4922b853f7f3 154.37.66.140 7873 0
|
||||
74ac75f2600609c53474af5117c512b8 84.172.75.224 5854 0
|
||||
764628faded52018202266ae46628ef3 85.118.41.68 5642 0
|
||||
7786f5e8c3a1c0082d3ed38abaa8c93b 85.10.201.173 7398 0
|
||||
77f8f3e95e4c57db1b7782c00edf2914 216.151.155.52 7871 0
|
||||
77f8f3e95e83eb64ecc97b582659e3d1 69.26.174.131 7871 0
|
||||
77f8f3e9a2fb24ab1cf7ae578c8285db 63.218.20.34 7871 0
|
||||
77f8f3e9c54ed096678a2b3ecb49c491 207.226.112.34 7871 0
|
||||
77fcd4e926de151e27a0d357f74aa8be 24.154.217.213 7194 0
|
||||
7980ecd7b95798479ae8d0a7becfe487 154.37.66.141 7871 0
|
||||
7b4f10cb049a20b4c2584ed4c7ea3b69 84.5.239.102 19424 0
|
||||
7ebb67e93c170ba83552cfa57b126bf6 216.151.155.52 7871 0
|
||||
7ebb67e9c0fe6da94ac2c54623076a66 63.218.20.34 7871 0
|
||||
7ebb67e9e38b20a8682b594392bfdcc5 207.226.112.34 7871 0
|
||||
7faea639d8ff81c851368b0b7681e0d5 85.118.33.85 10564 0
|
||||
8297e6f277809f35622ac4f4b7425daf 154.37.66.186 7871 0
|
||||
829b2ee80b9210763a886ece9614f152 80.219.2.170 10373 0
|
||||
855a58ab326abf01df6279063f9e3fc7 82.51.95.9 11335 0
|
||||
85a0ea2944de01b283d446b15d03c552 83.40.24.236 5097 0
|
||||
85da0be801a6e7943d328300397edf2c 82.243.41.167 10662 0
|
||||
8c077e53553c7105e3ec9926efb99d18 84.222.180.111 9177 0
|
||||
8d457700788ccad0edbada16f937bda0 201.233.85.178 3940 0
|
||||
8d7052be33d84b7755cab4c9ff2e9c10 220.129.138.141 9883 0
|
||||
8d717b9b83c9b4ecc8592381a91ee744 154.37.66.210 7871 0
|
||||
8d95d43ff985a72278d1a2ccec655a8b 90.4.254.199 8539 0
|
||||
8e75afe295caae2f16513f47a45b4124 82.240.158.151 4948 0
|
||||
8ed6fb87ff78d1f20ac46bfc8b8c3cbe 83.196.227.111 9741 0
|
||||
909fae42f3870358a9b8ba9416547ec1 83.7.14.58 10348 1
|
||||
90cc6ffe22eb1a3181195361b939e8e3 195.208.220.199 7393 0
|
||||
90ea49d6638d4c4bc7574f6262234e76 218.37.227.99 4325 0
|
||||
921922173a408c7c6200e0057adb2adb 81.192.23.130 4280 0
|
||||
923d586414bc080755befd8023e2229d 59.28.152.221 12457 0
|
||||
92945dd9e37901c7a3bc39d8091a9728 81.57.185.106 3419 0
|
||||
9318a08a234dcd49b4ea2867e42625d1 83.238.15.80 14488 1
|
||||
939d5a0f2d614f9584a5e3f93a1afc80 66.186.194.22 7871 0
|
||||
93f28e3f88ca20802afb8e6ef716fa37 87.8.84.101 3295 0
|
||||
941f231a607f02caabc6ed0641681e71 83.129.29.4 11793 0
|
||||
95b8c53262da0b97c826e9f6fecc5ea2 74.117.181.175 3080 0
|
||||
9605d77fb88988a3bb2dd93c91067724 154.37.66.118 7871 1
|
||||
9785c93fc9565fa36b493c2bb5047e50 88.65.65.49 8387 0
|
||||
98372a6f1b4a7580ac73a914a2b8a407 69.26.191.34 7871 0
|
||||
9860021feb8c463642faecb5aa4aa0ed 80.33.229.12 6426 0
|
||||
9938a66c1985936724ae8397cf3c6978 218.160.238.250 9568 0
|
||||
994221d75f57a31ade6d18ff72e77a94 84.153.225.190 18103 0
|
||||
996cafa0ccbf35d42037affe1d0c08aa 80.37.181.33 6832 1
|
||||
997538d77792ff6b3fe92b9012e808b6 217.84.31.107 4672 0
|
||||
99a9ec9ae015254171284f084dc1dab5 195.111.2.70 16636 0
|
||||
99bc9997cf2f94473a2e1b68f7d6c4cb 207.226.112.34 7871 0
|
||||
9a03ed6a36386cd57d0d33ee2a5c8676 81.246.230.214 10099 0
|
||||
9a0b6e12f25caff1a87bca76ddd9fe30 83.29.162.205 12471 0
|
||||
9a6236e44de5154f2d1f177a5fb02b20 81.172.41.35 8616 0
|
||||
9a7ede085ae109ca8f152e553a6c6927 62.43.139.202 5391 0
|
||||
9aafcba1ad12f2719f7a5bdd7101528d 86.59.10.250 32001 0
|
||||
9ab9d40cf5f86b93c4a35e1470508361 82.158.10.70 4472 0
|
||||
9ad62bff3ebd3db68fa5301ce067096f 83.5.188.208 3129 0
|
||||
9b4ed550ddac88058e672ed6190ca86a 195.36.241.149 6249 0
|
||||
9baca0dd2946ff2eb4cb72689c5a58db 87.219.167.129 3576 0
|
||||
9fdc0ce118b7cb3e477a33dc8cdb0e68 84.16.239.143 9699 0
|
||||
a1595db9989486ea431e8b37841f7ebd 82.156.34.116 6666 0
|
||||
a17756c5c1a078c2e240d920855abb27 172.202.206.253 12767 0
|
||||
a1b57adc9ae4e7e9b5066508cda22c21 67.68.184.245 3961 0
|
||||
a21198f7b0f7fdc590b5e8da1230b8ea 85.60.78.66 12803 0
|
||||
a218d53386ba461a6a85c24e13fa57fa 203.243.202.46 5624 0
|
||||
a2336bee1d73e849287d1b8e421633ac 218.184.139.48 4640 0
|
||||
a233f069ee8f1c25faab08a1c687b4dd 82.159.56.35 11895 0
|
||||
a2a32ae142420cfe22fa1785db27ccf0 66.172.60.178 7871 0
|
||||
a2fff1c49ce6db0ce5861a344b7bfe41 82.226.178.94 4746 0
|
||||
a323c0bfaed27e5f808042ea9c3838ea 82.232.248.126 65535 1
|
||||
a33100f68f74ba10093e33b4f58f59e9 212.187.85.225 7704 0
|
||||
a366fe3b4728eb4f88112c2e9c469f55 85.118.41.41 11699 0
|
||||
a3675da1087150f6315281f3bfe12caa 81.202.75.114 6125 0
|
||||
a3b3d00086a275fb1d89ffde2f5da0e4 201.19.172.232 3579 1
|
||||
a4b508ac564b81cf862dc872712faf35 81.155.57.198 42662 1
|
||||
a4e4d55e374d15d8eab0672fa380c838 217.172.183.55 11095 0
|
||||
a4fdc60b58038a13157e6c18520bd5de 195.140.142.44 19268 0
|
||||
a541421b8e76d46bc3cf22b29b88757a 66.172.60.178 7871 0
|
||||
a7fdebc304d9c044c0278ff1abc8be64 85.57.166.22 9190 0
|
||||
a8e72acd507239ca1723572627cb1be7 88.76.128.37 4613 0
|
||||
adf878016756f94df0b54211db7c2457 85.118.43.51 21521 0
|
||||
ae56f34ddbd1be7af1fa461f8ad114f1 88.18.218.227 11884 0
|
||||
ae7eb64853a34db0d71d0749f259eb14 80.170.250.97 8771 1
|
||||
ae87f13f62c661ab3069920b75a7eff1 61.64.255.29 6087 0
|
||||
aeb53cc7f27e67f4a10b29abc026ba9a 86.198.251.124 7736 1
|
||||
aed88c4453764a86554d6882a3e4658a 200.104.78.138 16779 0
|
||||
af4f1da80e9b30837025d9ee398f3702 84.155.56.220 12522 0
|
||||
af5223f4664e10cc44c3bfd5227ddcdf 62.94.177.72 4759 0
|
||||
b24c84a4a2dd0187e0e73a3acc8822f0 194.242.112.75 19269 0
|
||||
b26ebd37c69370f8366ab31951da5f61 74.128.193.202 4665 0
|
||||
b31c88bf52de9fa1784fe53f8c8629fc 24.232.160.205 7307 1
|
||||
b411d428f4f4216e6c4f3849891a1c22 88.191.28.136 19632 0
|
||||
b515f9378535d779180d0bf2b0c33357 85.25.67.206 15208 1
|
||||
b60dd5421cdca36b2a5a735a7e398369 89.53.24.140 12152 0
|
||||
b60ebb07da2a0c6415c69ccbd8d8968f 81.249.216.88 10056 0
|
||||
b6a40c6bf70e8710081dd202f93220b8 219.251.56.62 6842 0
|
||||
b89ac27623cfd70c62058b19e5a79a14 24.68.194.30 12782 0
|
||||
b967ab7fabdd617781efb3318b6da45c 154.37.66.119 7871 0
|
||||
b98c62dc091072f1a77e9035daebfa7b 62.4.84.40 16091 0
|
||||
b998ea936770f9df586219e2682532b4 88.19.212.210 4801 0
|
||||
bb2c1bf909ccde09114fc34bb857f906 220.118.153.133 9669 0
|
||||
befbb279d460d55c8194ca06230c84b2 80.235.67.134 5317 0
|
||||
c2d56ab4678b9b63d416ba004b082447 84.44.172.177 9945 0
|
||||
c391d9d983fae135531c06690849dd0b 70.34.72.230 6668 0
|
||||
c44a81320ee2a4525a3a1ba96046e1d8 82.146.224.58 2125 0
|
||||
c4c1aac55a8b6c5addfa24857d983c49 160.36.57.172 30255 0
|
||||
c4dff8652445761bb3c8a1bab270f423 83.115.53.251 5853 0
|
||||
c4fe269c1fd719836356f81080fd4e72 217.217.57.96 11595 0
|
||||
c5bb0c70a9003c03fc9da2d2999ae85b 130.237.63.17 12550 1
|
||||
c5c8bbdeac0e3bac9d6dc361d3077fcc 211.207.3.148 10058 0
|
||||
c607f4104093a4431de057a1e426f2c4 84.61.56.205 3747 0
|
||||
c632a74cbff1a9cbf76b1b15780c0918 211.36.163.131 7651 0
|
||||
c64e65e5e3c6fd79155411d5798a22e7 62.40.174.135 9207 0
|
||||
c74ec5e89323d4ac9ac5191ec2efe37d 154.37.66.117 7871 0
|
||||
c860e2bd634a0ff7d31813fabb83cbed 62.90.175.150 1103 0
|
||||
c89528545a025daffc675b501db056dc 195.245.215.28 7189 0
|
||||
c8f9e84d93445fca7364c7dec2ceb7c7 154.37.66.117 7871 0
|
||||
cac2747b40d61a2997eeb6e6ee7e7f5d 82.232.249.173 4152 0
|
||||
cafa3ee05c398f77f21b439437bb54cb 154.37.66.210 7871 0
|
||||
cb1870f6a04199ddd3b685ab16ab539c 87.8.110.149 12869 0
|
||||
cea9534b9f99ea2618c004759935f4f0 154.37.66.163 7871 0
|
||||
cffd2c2694680492b41dea1ab0aafdef 59.22.116.23 4662 0
|
||||
d21760e85ba48fa762a5d4ea456c8633 80.142.91.240 12141 0
|
||||
e089240010e876f89c2461a0b00c83e9 83.134.202.5 11785 0
|
||||
e1b43a96e7382b8de8c21f3b7f57986a 172.211.123.10 11321 1
|
||||
e1dbf016275cb62de457676c721248d5 84.92.168.153 8900 0
|
||||
e22f5b78f3f9a5d46ef2561ac9bd6649 85.141.157.230 10841 0
|
||||
e2448c5c1fae2931dc02cea0bb2a4c83 58.234.251.180 10482 0
|
||||
e26d3bf6031080db7886d8e17e6c7f22 87.6.33.61 5443 0
|
||||
e2f19e77fd2c8b1b122b171a6962f823 59.116.192.63 11243 1
|
||||
e3fe7af790f5320fd105d96f56779f86 194.126.121.132 6894 0
|
||||
e5a95363352cb2cdaaf70fbb0e819501 221.162.241.13 12247 0
|
||||
e62ee7fb359402073f303e5e52e97ab9 83.130.80.199 3165 0
|
||||
e6796d7ac30790e92cedc0f57ce462b8 85.48.66.77 16162 0
|
||||
e68aa70a05c0d4fccc37531bdfeca608 216.151.155.28 7871 0
|
||||
e68d99692268769e5cf3674ffe3187a4 216.151.155.28 7871 0
|
||||
e751d2dbd8654f23351c16a959deac55 85.144.36.243 5429 0
|
||||
e7566aefd5e5bfe6f376b78d6bed61f9 213.78.40.29 11874 1
|
||||
e7fa86c6cb180ec934cd63b2040314e4 83.177.236.145 4802 1
|
||||
e8a8a2480aec87a373c8ebcc3be37cb3 66.172.60.202 7871 0
|
||||
e8a8a24820d7fe54dcda9109be782c17 207.226.112.34 7871 0
|
||||
e8dd88d434bbdf36182c76fa755c535d 82.49.119.176 3443 1
|
||||
e8e030e8f2f10e7544ba4de7c0cd561f 201.29.32.163 8376 0
|
||||
e8fe3befffe4197d917ec621bb511557 83.59.108.13 4662 0
|
||||
e917ede9d82ae9b829e913aa70908652 213.238.140.25 9940 1
|
||||
e94ea878d41e2c33bbbaadf001afb850 66.186.194.22 7871 0
|
||||
e94fa6c4e4bd1b3803a4c9e505a867b1 82.98.235.75 19272 0
|
||||
e95d59cde91b269352efbcd5bd5ca7c1 59.21.126.13 3282 1
|
||||
e966a84db06a9798f4fdfb120e08f88c 24.36.113.99 5661 0
|
||||
e96ecfcea21e6d292fdc47a0f44a068c 61.78.217.22 12733 0
|
||||
e97c00ad299d3773d4e8ba09fbf5487a 83.29.133.253 3076 0
|
||||
e99b76e8a0303f3c37d5c8f205c617e2 211.187.79.3 10382 0
|
||||
e99bf426bcec1de1f2bb87a3db2aabcd 83.179.49.6 4040 0
|
||||
e9a18dbcc89063946e4c6142aef186d9 90.8.81.144 7549 0
|
||||
e9b03a2c19b99015de29452d2ead9cbd 84.166.237.91 12556 0
|
||||
e9bcfa0e991113c2c5f955498401ac35 83.43.237.134 3938 0
|
||||
e9d18bb909ba36c500cb636104719986 124.5.77.167 10943 0
|
||||
e9df9eb0f8568c29fe2c8fd5286dd23a 60.197.193.138 9936 0
|
||||
e9e6e474d866bf189382c24a8646d91c 218.161.8.39 6725 0
|
||||
e9f3f87773456a1dcbdb112fbeca314a 216.151.155.52 7871 0
|
||||
ea171dd663d4b59bce6b2f5d03edf6d1 80.138.231.107 9208 1
|
||||
eaa3b064c6d9c43cb50a217e0b9728a1 89.80.188.138 4670 0
|
||||
eb1b87c4b0adacab1011c74ad3c2e3d7 80.22.52.106 7132 0
|
||||
eb2051401fefe7bb364c24422727cfce 81.36.161.14 4711 0
|
||||
ebe1f44b4645a9c546392a67323d0a45 61.106.109.18 7399 0
|
||||
ec5ccbfc5e0ae196def3ea2800ab393b 154.37.66.209 7871 0
|
||||
f1112961a6cf6656980eaaccb86d943f 154.37.66.118 7871 0
|
||||
f256eb593dfbaf395aa9d57cb4723568 217.139.177.133 4443 0
|
||||
f2f601cb1adb7a28f1c79f3a7555f291 222.121.83.108 9286 0
|
||||
f2ffde1b08c6aa95425b604ebe343306 69.159.35.127 5499 0
|
||||
f5e0257988e9090c4d6096d3efd370f1 211.192.175.117 7450 0
|
||||
f5ec709930a25afddf45a0df6287bc1d 58.121.96.43 7453 0
|
||||
f60a2921569652297ef8d3ab2438c810 195.140.141.164 19266 0
|
||||
f6c5b0a96ceb1f4551f63e6f43ce9be8 74.12.162.182 10532 1
|
||||
f745da4c555281344ca1395b25653baa 213.231.124.131 7736 0
|
||||
f77ef36aaf54bf5b1c8fbf846c7ca125 218.167.64.149 5150 0
|
||||
f79137d56128b19756fd9d051dbbf313 213.93.225.31 12106 1
|
||||
f7bbee236e5d5fcc615bf88ac8bccf30 62.45.25.149 7976 0
|
||||
f85456440bafc8a2146d4353dcc56f6c 88.17.41.220 12554 0
|
||||
f9b1de9f76a38b89b5ad845b3140ffc7 59.16.163.89 5684 1
|
||||
f9f3904a985d51317ff4c0f805b37b80 194.242.112.196 15116 0
|
||||
fd24d63ccb4bf36dd979a3faa2104904 62.107.223.189 9259 0
|
||||
ff39d7435625c9b2efef2829ec6422c2 81.225.57.115 5753 0
|
||||
[other_stuff]
|
||||
blah blah
|
||||
blah
|
||||
[blacklisted_nodes]
|
11
build_scripts/debian/usr/share/retroshare/retroshare.desktop
Executable file
11
build_scripts/debian/usr/share/retroshare/retroshare.desktop
Executable file
@ -0,0 +1,11 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Exec=retroshare
|
||||
Icon=/usr/share/retroshare/retroshare.png
|
||||
Type=Application
|
||||
Terminal=false
|
||||
MultipleArgs=false
|
||||
Name=Retroshare
|
||||
GenericName=Sharing Network
|
||||
StartupNotify=true
|
||||
Categories=Application;Network;
|
BIN
build_scripts/debian/usr/share/retroshare/retroshare.png
Executable file
BIN
build_scripts/debian/usr/share/retroshare/retroshare.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
Loading…
Reference in New Issue
Block a user