[Pkg-privacy-commits] [vidalia] 01/160: Initial import of vidalia version 0.2.6-1
Ximin Luo
infinity0 at moszumanska.debian.org
Sat Aug 22 13:13:52 UTC 2015
This is an automated email from the git hooks/post-receive script.
infinity0 pushed a commit to branch master
in repository vidalia.
commit 22cc8cc5f6bca8b362b6c4e58e0031d13372772a
Author: dererk <dererk at erebus.dererk.com.ar>
Date: Wed Jan 27 10:32:42 2010 -0300
Initial import of vidalia version 0.2.6-1
---
FAQ | 116 ++++++++
README.Debian | 53 ++++
README.source | 61 +++++
changelog | 158 +++++++++++
compat | 1 +
config | 43 +++
control | 20 ++
copyright | 497 ++++++++++++++++++++++++++++++++++
docs | 2 +
menu | 6 +
patches/debians-tor-binary-path.patch | 14 +
patches/kFreeBSD-gcc4.4-fix.patch | 11 +
patches/series | 2 +
po/POTFILES.in | 1 +
po/ca.po | 48 ++++
po/cs.po | 46 ++++
po/de.po | 50 ++++
po/es.po | 49 ++++
po/fi.po | 52 ++++
po/fr.po | 52 ++++
po/it.po | 47 ++++
po/pt.po | 51 ++++
po/ru.po | 51 ++++
po/sv.po | 49 ++++
po/templates.pot | 41 +++
po/zh_CN.po | 45 +++
po/zh_TW.po | 45 +++
postinst | 7 +
rules | 106 ++++++++
templates | 11 +
upstream-keyring.pubkey | 94 +++++++
vidalia.desktop | 10 +
vidalia.install | 2 +
vidalia.xpm | 150 ++++++++++
watch | 4 +
35 files changed, 1995 insertions(+)
diff --git a/FAQ b/FAQ
new file mode 100644
index 0000000..de38453
--- /dev/null
+++ b/FAQ
@@ -0,0 +1,116 @@
+Frequently Asked Questions
+==========================
+
+ 1. General
+ 1. What is Vidalia?
+ 2. Does Vidalia run on my operating system?
+ 3. How can I find out when new Vidalia releases are available?
+ 4. Where can I get additional support for Vidalia?
+ 2. Running
+ 1. I installed Vidalia/Tor/Privoxy. Now what?
+ 2. Can I run Vidalia from a USB drive?
+ 3. Can Vidalia "attach" to an existing Tor process?
+ 4. Why do I see connections to geoip.vidalia-project.net in my network map?
+ 5. Can I run a relay without worrying about abuse complaints?
+ 3. Common problems
+ 1. When I try to start Tor I get an error message in Vidalia's message log ...
+
+
+1.General
+=========
+
+1.1 What is Vidalia?
+--------------------
+
+Vidalia is a GUI for Tor, making it easy for you to run, monitor, and configure your installation of Tor. It lets you start and stop Tor, as well as letting you know when things go wrong. Vidalia also lets you see how much bandwidth Tor is using and can even help you set up your own Tor server.
+
+
+1.2 Does Vidalia run on my operating system?
+-------------------------------------------
+
+Vidalia is a cross-platform GUI built using the Qt GUI toolkit. Vidalia should run on any platform supported by Qt, which includes (but is not necessarily limited to):
+
+ * Windows 95/98/Me, NT4, 2000, XP, and Vista
+ * Mac OS X Panther (10.3), Tiger (10.4), and Leopard (10.5)
+ * Linux or other Unix variants running the X Window system.
+
+
+1.3 How can I find out when new Vidalia releases are available?
+---------------------------------------------------------------
+
+Vidalia is still under active development and we tend to put out a new release approximately every 1-2 months. You can subscribe to our Trac RSS feed to learn when we have put out a new release. We also announce new releases on our homepage and on our download page.
+
+
+1.4 Where can I get additional support for Vidalia?
+---------------------------------------------------
+
+First, read through this FAQ and also search the documentation on our wiki. If you prefer IRC, you can find us in #vidalia on irc.oftc.net. Otherwise, we have a vidalia-users mailing list set up for Vidalia users to help out and answer each others' questions.
+
+
+2 Running
+=========
+
+2.1 I installed Vidalia/Tor/Privoxy. Now what?
+----------------------------------------------
+
+Now you need to configure your applications to send their traffic through Tor. Scott Squires has created an extension for Firefox called Torbutton that lets you easily toggle your browser's use of Tor. You might also check out FoxTor for a similar Firefox extension.
+
+See the Torify How-To for information on configuring several other applications to use Tor. The Tor documentation for Windows, Mac OS X, or Linux/BSD/Unix might be useful for you, as well.
+
+
+2.2 Can I run Vidalia from a USB drive?
+---------------------------------------
+
+Yes! You can run Vidalia from a USB drive, perhaps for a portable Tor/Vidalia/Polipo or Tor/Vidalia/Privoxy combination, by using Vidalia's -datadir command-line argument. The -datadir argument tells Vidalia where you would like it to store all of its configuration and application data. For example, you might have a batch file on your USB drive that starts Vidalia as follows:
+
+vidalia -datadir "."
+
+The above line would tell Vidalia to use the current working directory as its data directory. You can also configure Vidalia to look for a Tor executable and configuration file (torrc) on your USB drive using Vidalia's Settings dialog or editing Vidalia's configuration file (vidalia.conf).
+
+If you want to run the Windows version of Vidalia from a USB drive, you may also need to copy mingwm10.dll from a Vidalia or MinGW package onto your USB drive in the same directory as vidalia.exe.
+
+
+2.3 Can Vidalia "attach" to an existing Tor process?
+----------------------------------------------------
+
+Yes. Before Vidalia starts its own Tor process, it always first checks to see if it can connect to the control port of an existing Tor process. All you need to do is enable a control port on the Tor you already have running, and Vidalia will connect to it instead of starting its own Tor process. You first need to open your `torrc` in a text editor. Then, add the following line on a line by itself anywhere in your torrc:
+
+ ControlPort 9051
+
+You will also likely want to set a password for your control port to limit what applications are allowed to connect to it. To do so, you first need to open up a terminal or command prompt and run the following command (you may need to cd to the location of your Tor executable):
+
+# tor --hash-password mypassword
+
+Replace "mypassword" with whatever password you would like to use for your control port. The last line of output from the above command will contain a string that starts with "16:" and is followed by a long string letters and numbers. This string is a hash of the password you supplied as an argument to the --hash-password command above. Copy this entire string, and then add a HashedControlPassword line to your torrc similar to the following:
+
+ "HashedControlPassword 16:816172DEB125A9CA603A6A8A5C16D0642DA4556E4EC417E6B9AAC9AF0D"
+
+Save your torrc changes and either restart or "HUP" your Tor process to reload your configuration. Then you can click 'Start Tor' in Vidalia, which will connect to your Tor process and then prompt you to enter your original control password ("mypassword" in the example above).
+
+
+
+2.4 Why do I see connections to geoip.vidalia-project.net in my network map?
+----------------------------------------------------------------------------
+
+Vidalia 0.0.5 added a network map feature that lets you see where in the world your traffic is going. To be able to map Tor relay IP addresses to approximate geographic locations, we use the GeoLite City database from MaxMind. Unfortunately, the database is around 24MB and shipping it alongside the Vidalia binary would be unreasonable. Consequently, we host the database on our servers and created a small perl script interface to it, allowing Vidalia clients to query the database via stan [...]
+
+All communication between Vidalia and our servers is done over Tor, so our servers do not know who is making the requests. Additionally, no identifying information is included in the requests. Of course, you can verify this by looking at the source code, such as geoipresolver.cpp and torsocket.cpp. We also have a specification for the format of our geographic information requests and responses.
+
+
+2.5 Can I run a relay without worrying about abuse complaints?
+--------------------------------------------------------------
+
+Tor relay operators can specify which services and/or ports clients are allowed to access from their relay. From Vidalia's Exit Policies tab, you can select what services you want to allow clients to access from your relay. Vidalia's help documentation explains what each exit policy option means. By default, Tor relays allow access to many popular services, but restricts some (such as port 25) due to the potential for abuse. Tor's FAQ has more information for relay operators on how to av [...]
+
+Rather than running a normal, public Tor relay, you might also consider running a bridge relay. Some Internet Service Providers (ISPs) attempt to prevent users from accessing the Tor network by blocking connections to known Tor relays. Bridge relays (or bridges for short) are relays that help these censored users access the Tor network. Unlike other Tor relays, bridges are not listed in the same public directories as normal relays. Since there is no complete public list of them, even if [...]
+
+
+3 Common problems
+=================
+
+3.1 When I try to start Tor I get an error message in Vidalia's message log that says, "Failed to parse/validate config: Failed to bind one of the listener ports." What's that mean?
+-----------------------
+
+This error message typically means you already have a Tor process running that does not have an open control port. When Vidalia tried to start its own Tor process, Vidalia's Tor process conflicted with your existing Tor process. On Windows, you can look in your Task Manager for a process called tor.exe, select it, and then click "End Process" to terminate your Tor process. On most other operating systems, the ps and kill commands can help you find and terminate your existing Tor process. [...]
+
+If you would like Vidalia to connect to your existing Tor instead of starting a new Tor process, see the FAQ entry above on configuring a control port and password for your existing Tor process.
diff --git a/README.Debian b/README.Debian
new file mode 100644
index 0000000..8fd686e
--- /dev/null
+++ b/README.Debian
@@ -0,0 +1,53 @@
+Vidalia for Debian
+------------------
+
+There are currently two ways of communication supported between
+Tor daemon (carried with 'tor' package), and Vidalia interface:
+
+1. Letting Vidalia start Tor process by its own.
+ ---------------------------------------------
+
+ This is default option on debconf while configuring vidalia package
+ (easy reconfigurable by running 'dpkg-reconfigure vidalia').
+
+ This option implies that you have to manually disable Tor
+ starting automatically on every reboot, as shown below:
+
+ # update-rc.d -f tor remove
+ Removing any system startup links for /etc/init.d/tor ...
+ /etc/rc0.d/K20tor
+ /etc/rc1.d/K20tor
+ /etc/rc2.d/S20tor
+ /etc/rc3.d/S20tor
+ /etc/rc4.d/S20tor
+ /etc/rc5.d/S20tor
+ /etc/rc6.d/K20tor
+
+ You can create all the symlinks back by using:
+ # update-rc.d tor defaults
+
+
+2. Enable Tor to use a control port to communicate with Vidalia.
+ -------------------------------------------------------------
+
+ This can be easily done by editing Tor configuration file, by default
+ '/etc/tor/torrc', adding or uncommenting the 'ControlPort=9051' option,
+ and adding the proper value to 'HashedControlPassword', as shown below:
+
+ # tor --hash-password SOME_PASSWORD_HERE
+ Sep 17 18:48:49.421 [notice] Tor v0.2.0.30 (r15956). This is experimental software. Do not rely on it for strong anonymity. (Running on Linux x86_64)
+ 16:167F667A98F859D2600BD708B48B95343FEF7800B479E2AA4284ACF029
+
+ You will have to have something like this:
+
+ # grep Control /etc/tor/torrc
+ ControlPort 9051
+ HashedControlPassword 16:167F667A98F859D2600BD708B48B95343FEF7800B479E2AA4284ACF029
+
+ Then start/restart Tor daemon and then run Vidalia GUI.
+ It will ask Tor what auth modes it accepts and if everything is OK,
+ You will be asked for the password, in the example, 'SOME_PASSWORD_HERE'
+ (as you pass it with --hash-password, not the hash).
+
+
+ -- Ulises Vitulli <uvitulli at fi.uba.ar> Wed, 17 Sep 2008 17:24:06 -0300
diff --git a/README.source b/README.source
new file mode 100644
index 0000000..25804bc
--- /dev/null
+++ b/README.source
@@ -0,0 +1,61 @@
+Repackaging upstream source
+===========================
+
+Official source has been repkg to exclude debian/ directory coming from official
+ release.
+
+This is the whole process applied to exclude that directory could be found on
+ the source-rpkg debian/rules target:
+
+dererk <at> erebus[~/debian/vidalia/devel/vidalia-0.2.4]$ debian/rules source-repkg
+gpg: Signature made Mon Sep 7 14:15:07 2009 ART using DSA key ID 5FA14861
+gpg: Good signature from "Matt Edman <edmanm at rpi.edu>"
+gpg: aka "Matt Edman <edmanm2 at cs.rpi.edu>"
+gpg: aka "Matt Edman <Matt_Edman at baylor.edu>"
+gpg: aka "Matt Edman <edmanm at vidalia-project.net>"
+gpg: WARNING: This key is not certified with a trusted signature!
+gpg: There is no indication that the signature belongs to the owner.
+Primary key fingerprint: 9467 294A 9985 3C9C 65CB 141D AF7E 0E43 5FA1 4861
+Repackaged source file located in /home/dererk/debian/vidalia/devel/vidalia-0.2.4/debian/rpkg-source
+Target accomplished.
+
+
+
+Building Vidalia from source
+============================
+
+#
+# getting the upstream sources
+#
+New official upstream tarballs are located here http://www.torproject.org/vidalia/
+
+
+#
+# Debian specific patches
+#
+Debian specific patches reside in debian/patches/ and are applied with quilt.
+
+#
+# using pbuilder
+#
+tar -zxf vidalia-0.1.15.tar.gz
+cd vidalia-0.1.15/
+pbuilder
+
+Here a small readme in order to use the upstream tarballs:
+
+I'm used to this pbuilderrc to ease my life:
+ MIRRORSITE="http://mirrors.163.com/debian/"
+ DEBBUILDOPTS="-i.git -si"
+ DEBOOTSTRAP="debootstrap"
+ APTCACHE="/var/cache/apt/archives"
+ DEBIAN_FRONTEND="readline"
+ AUTO_DEBSIGN=yes
+
+So for building this package go to vidalia-0.1.15/ and call there e.g.:
+ % ln -sf ../vidalia-0.1.15.tar.gz vidalia_0.1.15.orig.tar.gz
+ % dch -i
+ % pdebuild
+
+the resulting files are found in /var/cache/pbuilder/result/
+
diff --git a/changelog b/changelog
new file mode 100644
index 0000000..6acd97a
--- /dev/null
+++ b/changelog
@@ -0,0 +1,158 @@
+vidalia (0.2.6-1) experimental; urgency=low
+
+ * New upstream release.
+ * Patch fixing gcc4-4 behaviour affecting kFreeBSD ports:
+ - kFreeBSD-gcc4.4-fix.patch
+
+ -- Ulises Vitulli <uvitulli at fi.uba.ar> Fri, 22 Jan 2010 18:32:37 -0300
+
+vidalia (0.2.5-1) experimental; urgency=low
+
+ * Upstream development release:
+ o Add support in the Network settings page for configuring the
+ Socks4Proxy and Socks5Proxy* options added on Tor 0.2.2.1-alpha.
+ o Add a context menu for highlighted event items in the "Basic" message
+ log view that allows the user to copy the selected item text to the
+ clipboard.
+ o Maybe fix a time conversion bug that could result in Vidalia
+ displaying the wrong uptime for a relay in the network map.
+ o Stop trying to enforce proper quoting and escaping of arguments to be
+ given to the proxy executable.
+
+ -- Ulises Vitulli <uvitulli at fi.uba.ar> Tue, 27 Oct 2009 14:16:32 -0300
+
+vidalia (0.2.4-2) experimental; urgency=low
+
+ * Added repackaging from source target functionalty on debian scripts
+ - README.Source
+ - debian/rules
+ * Fix bug which points to a non running Tor process
+
+ -- Ulises Vitulli <uvitulli at fi.uba.ar> Mon, 19 Oct 2009 19:36:29 -0300
+
+vidalia (0.2.4-1) experimental; urgency=low
+
+ * Upstream development branch sync.
+
+ -- Ulises Vitulli <uvitulli at fi.uba.ar> Sat, 12 Sep 2009 09:26:18 -0300
+
+vidalia (0.2.0-1) experimental; urgency=low
+
+ * Upload of development branch.
+
+ -- Ulises Vitulli <uvitulli at fi.uba.ar> Thu, 23 Jul 2009 22:48:05 -0300
+
+vidalia (0.1.15-2) unstable; urgency=low
+
+ * Added repackaging from source target functionalty on debian scripts
+ - README.Source
+ - debian/rules
+ * Fix bug which points to a non running Tor process (Closes: #542670).
+
+ -- Ulises Vitulli <uvitulli at fi.uba.ar> Mon, 19 Oct 2009 19:20:36 -0300
+
+vidalia (0.1.15-1) unstable; urgency=low
+
+ * New upstream release.
+ * Debconf translations:
+ - Czech (Closes: #535973).
+ * Really fix debconf script issue.
+ * Update Standard-version to 3.8.2 (no changes needed)
+
+ -- Ulises Vitulli <uvitulli at fi.uba.ar> Tue, 21 Jul 2009 06:00:49 -0300
+
+vidalia (0.1.13-3) unstable; urgency=low
+
+ * Fixing debconf scripts issue that output twice the same message.
+
+ -- Ulises Vitulli <uvitulli at fi.uba.ar> Thu, 11 Jun 2009 00:48:57 -0300
+
+vidalia (0.1.13-2) unstable; urgency=low
+
+ * Update Upstream URL on debian/watch
+
+ -- Ulises Vitulli <uvitulli at fi.uba.ar> Tue, 09 Jun 2009 22:05:58 -0300
+
+vidalia (0.1.13-1) unstable; urgency=low
+
+ [ Vern Sun ]
+ * New upstream release.
+ * Add Debconf zh_TW.po.
+
+ [ Ulises Vitulli ]
+ * Force scripts to die in case something goes wrong:
+ - debian/config
+ - debian/postinst
+ * Remove deprecated directive dh_desktop.
+
+ -- Ulises Vitulli <uvitulli at fi.uba.ar> Wed, 03 Jun 2009 20:11:57 -0300
+
+vidalia (0.1.12-1) unstable; urgency=low
+
+ [ Vern Sun ]
+ * New upstream release
+
+ [ Ulises Vitulli ]
+ * debian/watch: avoid evaluating development releases.
+ * debian/control: updated to 3.8.1 Policy.
+
+ -- Ulises Vitulli <uvitulli at fi.uba.ar> Sat, 11 Apr 2009 11:00:18 -0300
+
+vidalia (0.1.11-1) unstable; urgency=low
+
+ * New upstream release.
+ * Added README.source.
+
+ -- Vern Sun <s5unty at gmail.com> Wed, 25 Feb 2009 11:55:46 +0800
+
+vidalia (0.1.10-1) unstable; urgency=low
+
+ [ Vern Sun ]
+ * New upstream release.
+ * Debconf translations:
+ - Swedish (Closes: #508751)
+
+ [ Ulises Vitulli ]
+ * DQT_LRELEASE_EXECUTABLE and QT_LUPDATE_EXECUTABLE pointing to qt4 libs
+ avoids building conflicts if alternatives are pointing to qt3 ones.
+ * Applying temporal patch pointing to default Debian Tor's binary.
+ * Little pkg modifications:
+ - Added Vidalia's FAQ licence
+ - Moved .xpm and .desktop to vidalia.install.
+ - Added Description on quilt patch
+ - Remove 'Encoding' field on vidalia.desktop
+
+ -- Ulises Vitulli <uvitulli at fi.uba.ar> Wed, 14 Jan 2009 14:02:06 -0200
+
+vidalia (0.1.9-3) unstable; urgency=low
+
+ * Fixing missing copyright holders.
+
+ -- Ulises Vitulli <uvitulli at fi.uba.ar> Mon, 27 Oct 2008 12:20:26 -0200
+
+vidalia (0.1.9-2) unstable; urgency=low
+
+ * Moved Pre-depens with debconf to Depends
+
+ -- Ulises Vitulli <uvitulli at fi.uba.ar> Sun, 28 Sep 2008 20:04:44 +0200
+
+vidalia (0.1.9-1) unstable; urgency=low
+
+ [ Vern Sun ]
+ * Initial release (Closes: #405431).
+
+ [ Ulises Vitulli ]
+ * Added README.Debian and FAQ.txt.
+ * Added menu and .desktop files.
+ * Added vidalia.xpm icon (provided by upstream).
+ * Debconf translations:
+ - Spanish.
+ - Catalan.
+ - Russian.
+ - Finnish.
+ - Italian.
+ - French.
+ - German.
+ - Portuguese.
+
+ -- Ulises Vitulli <uvitulli at fi.uba.ar> Sat, 20 Sep 2008 05:45:56 -0300
diff --git a/compat b/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/compat
@@ -0,0 +1 @@
+5
diff --git a/config b/config
new file mode 100644
index 0000000..90e4c2d
--- /dev/null
+++ b/config
@@ -0,0 +1,43 @@
+#!/bin/sh
+
+set -e
+if [ -f /usr/share/debconf/confmodule ]; then
+ . /usr/share/debconf/confmodule
+fi
+
+
+seen='false'
+askuser() {
+ question='vidalia/info'
+ db_input high $question || true
+ db_go || true
+ db_get $question
+}
+
+if [ "$1" = "configure" ] || [ "$1" = "reconfigure" ]; then
+ if dpkg -l tor > /dev/null 2>&1; then
+ # installed
+ if [ -e '/var/run/tor/tor.pid' ]; then
+ # and already running
+ askuser
+ seen='true'
+ if [ "$RET" = "true" ]; then
+ invoke-rc.d --force tor stop
+ fi
+ fi
+ fi
+
+ if pgrep -x tor > /dev/null 2>&1; then
+ # still running?? (e.g. chroot)
+ if [ "$seen" = "false" ]; then
+ askuser
+ if [ "$RET" = "true" ]; then
+ echo -n "Stopping tor daemon: "
+ pkill -x tor > /dev/null && echo "tor." || echo 'Failed!'
+ fi
+ fi
+ fi
+ db_stop
+fi
+
+#DEBHELPER#
diff --git a/control b/control
new file mode 100644
index 0000000..fed6be9
--- /dev/null
+++ b/control
@@ -0,0 +1,20 @@
+Source: vidalia
+Section: net
+Priority: extra
+Maintainer: Vern Sun <s5unty at gmail.com>
+Uploaders: Ulises Vitulli <uvitulli at fi.uba.ar>
+Build-Depends: debhelper (>= 5), autotools-dev, libqt4-dev (>= 4.1.0), po-debconf (>= 1.0), cmake (>= 2.4.8), libssl-dev (>= 0.9.8g), quilt
+Standards-Version: 3.8.3
+Homepage: http://www.vidalia-project.net
+
+Package: vidalia
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, debconf (>=1.5.11) | debconf-2.0
+Recommends: tor
+Suggests: iceweasel-torbutton
+Description: controller GUI for the Tor software
+ Vidalia allows you to start and stop Tor, view the status of Tor at a glance,
+ and monitor Tor's bandwidth usage. Vidalia also makes it easy to contribute to
+ the Tor network by helping you setup a Tor server, if you wish. To find more
+ information about what Tor is and how to use it, see the Tor homepage:
+ https://www.torproject.org/
diff --git a/copyright b/copyright
new file mode 100644
index 0000000..afb28e0
--- /dev/null
+++ b/copyright
@@ -0,0 +1,497 @@
+This is Debian's prepackaged version of Vidalia, controller GUI for the Tor
+software.
+
+Original source has been downloaded from:
+
+ http://www.torproject.org/vidalia/dist/vidalia-0.1.13.tar.gz
+
+The following copyright notices apply to most of the program. Some modules are
+under different licenses, or in the public domain.
+
+Please note that this is by no means an exhaustive list of all the persons who
+have been contributing to this program. Please see the credits for a (probably
+still non complete) list of the persons who have been helpful with the
+development of this program.
+
+Copyright (C) 2006-2007, Matt Edman <edmanm at vidalia-project.net>
+Copyright (C) 2006-2007, Justin Hipple <hipplej at vidalia-project.net>
+Copyright (C) 2005, Hvard Tautra Knutsen <havtknut at tihlde.org>
+Copyright (C) 2001-2007, Roger Dingledine
+Copyright (C) 2004-2007, Nick Mathewson
+Copyright (C) 1998, Todd C. Miller <Todd.Miller at courtesan.com>
+Copyright (C) 2007, Steven J. Murdoch <Steven.Murdoch at cl.cam.ac.uk>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+===================================================================
+
+Vidalia is distributed under the following license:
+
+Copyright (C) 2006, Matt Edman, Justin Hipple
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation; either version 2
+of the License, or (at your option) any later version.
+
+This program 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 General Public License for more details.
+
+
+ _OpenSSL exception_
+
+0. Definitions
+
+"Vidalia" means Vidalia software licensed under version 2 or any later
+version of the GNU General Public License (collectively, "GPL"), or a
+work based on such software and licensed under the GPL.
+
+"OpenSSL" means OpenSSL toolkit software distributed by the OpenSSL
+Project and licensed under the OpenSSL Licenses, or a work based on such
+software and licensed under the OpenSSL Licenses.
+
+"OpenSSL Licenses" means the OpenSSL License and Original SSLeay License
+under which the OpenSSL Project distributes the OpenSSL toolkit software,
+as those licenses appear in the file LICENSE-OPENSSL.
+
+1. Exception
+
+You have permission to copy, modify, propagate, and distribute a work
+formed by combining OpenSSL with Vidalia, or a work derivative of such a
+combination, even if such copying, modification, propagation, or
+distribution would otherwise violate the terms of the GPL. You must
+comply with the GPL in all respects for all of the code used other than
+OpenSSL.
+
+You may include this OpenSSL Exception and its grant of permissions when
+you distribute Vidalia. Inclusion of this notice with such a
+distribution constitutes a grant of such permission. If you do not wish
+to grant these permissions, remove this section entitled "OpenSSL
+Exception" from your distribution.
+===================================================================
+
+Some of the help documentation text used in Vidalia is derived from the TorFAQ
+Wiki <http://wiki.noreply.org/noreply/TheOnionRouter/TorFAQ>. It is licensed
+under the MIT license as follows:
+
+ Copyright (c) 2003-2006 Roger Dingledine
+ Copyright (c) 2004-2005 Nick Mathewson
+ Copyright (c) 2004 Douglas F. Calvert
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+===============================================================================
+
+There are two licenses, one for the C library software, and one for
+the database.
+
+SOFTWARE LICENSE (C library)
+
+The GeoIP C Library is licensed under the LGPL. For details see
+the COPYING file.
+
+OPEN DATA LICENSE (GeoLite Country and GeoLite City databases)
+
+Copyright (c) 2008 MaxMind, Inc. All Rights Reserved.
+
+All advertising materials and documentation mentioning features or use of
+this database must display the following acknowledgment:
+"This product includes GeoLite data created by MaxMind, available from
+http://maxmind.com/"
+
+Redistribution and use with or without modification, are permitted provided
+that the following conditions are met:
+1. Redistributions must retain the above copyright notice, this list of
+conditions and the following disclaimer in the documentation and/or other
+materials provided with the distribution.
+2. All advertising materials and documentation mentioning features or use of
+this database must display the following acknowledgement:
+"This product includes GeoLite data created by MaxMind, available from
+http://maxmind.com/"
+3. "MaxMind" may not be used to endorse or promote products derived from this
+database without specific prior written permission.
+
+THIS DATABASE IS PROVIDED BY MAXMIND.COM ``AS IS'' AND ANY
+EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL MAXMIND.COM BE LIABLE FOR ANY
+DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+DATABASE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+===============================================================================
+
+License of zlib.h and zconf.h:
+
+ Interface of the 'zlib' general purpose compression library version 1.2.3,
+ July 18th, 2005
+
+ Copyright (C) 1995-2005 Jean-loup Gailly and Mark Adler
+
+ This software is provided 'as-is', without any express or implied
+ warranty. In no event will the authors be held liable for any damages
+ arising from the use of this software.
+
+ Permission is granted to anyone to use this software for any purpose,
+ including commercial applications, and to alter it and redistribute it
+ freely, subject to the following restrictions:
+
+ 1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+ 2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
+ 3. This notice may not be removed or altered from any source distribution.
+
+ Jean-loup Gailly Mark Adler
+ jloup at gzip.org madler at alumni.caltech.edu
+
+
+ The data format used by the zlib library is described by RFCs (Request for
+ Comments) 1950 to 1952 in the files http://www.ietf.org/rfc/rfc1950.txt
+ (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
+===============================================================================
+
+License of FindOpenSSL.cmake:
+
+ It incorporates work covered by the following copyright and
+ permission notice:
+
+ Copyright (c) 2006, Alexander Neundorf, <neundorf at kde.org>
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+
+ * Neither the names of the copyright owners nor the names of its
+ contributors may be used to endorse or promote products derived from this
+ software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+===============================================================================
+
+License of crypto.cpp and crypto.h
+
+ Pseudorandom number generation support in this file is derived from
+ Tor's crypto.[ch]. Tor is distributed under this license.
+
+ Copyright (c) 2001-2004, Roger Dingledine
+ Copyright (c) 2004-2007, Roger Dingledine, Nick Mathewson
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above
+ copyright notice, this list of conditions and the following disclaimer
+ in the documentation and/or other materials provided with the
+ distribution.
+
+ * Neither the names of the copyright owners nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+==============================================================================
+
+License of zlibbytearray.cpp and zlibbytearray.h:
+
+ Zlib support in this class is derived from Tor's torgzip.[ch].
+ Tor is distributed under this license:
+
+ Copyright (c) 2001-2004, Roger Dingledine
+ Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above
+ copyright notice, this list of conditions and the following disclaimer
+ in the documentation and/or other materials provided with the
+ distribution.
+
+ * Neither the names of the copyright owners nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+==============================================================================
+
+License of bsdqueue.h:
+
+ Copyright (c) 1991, 1993
+ The Regents of the University of California. All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ 3. Neither the name of the University nor the names of its contributors
+ may be used to endorse or promote products derived from this software
+ without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ SUCH DAMAGE.
+==============================================================================
+
+License of igd_desc_parse.c, igd_desc_parse.h, minisoap.c, minisoap.h,
+ minissdpc.c, minissdpc.h, miniupnpc.c, miniupnpc.h, miniupnpcmodule.c,
+ miniwget.c, miniwget.h, minixml.c, minixml.h, upnpcommands.c, upnpcommands.h,
+ upnperrors.c, upnperrors.h, upnpreplyparse.c and upnpreplyparse.h
+
+ Copyright (c) 2005-2007, Thomas BERNARD
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above
+ copyright notice, this list of conditions and the following
+ disclaimer in the documentation and/or other materials
+ provided with the distribution.
+
+ * Neither the names of the copyright owners nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+==============================================================================
+
+Vidalia incorporates icons from KDE's Oxygen icon theme. It is
+licensed as follows:
+
+ Copyright (C) 2007 David Vignoni <david at icon-king.com>
+ Copyright (C) 2007 Johann Ollivier Lapeyre <johann at oxygen-icons.org>
+ Copyright (C) 2007 Kenneth Wimer <kwwii at bootsplash.org>
+ Copyright (C) 2007 Nuno Fernades Pinheiro <nf.pinheiro at gmail.com>
+ Copyright (C) 2007 Riccardo Iaconelli <riccardo at oxygen-icons.org>
+ Copyright (C) 2007 David Miller <miller at oxygen-icons.org>
+
+and others
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU Library General Public
+License as published by the Free Software Foundation; either
+version 3 of the License, or (at your option) any later version.
+
+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.
+==============================================================================
+
+License of default.action and privoxy.config:
+
+ Copyright (C) 2001-2006 Privoxy Developers http://privoxy.org
+
+Privoxy is free software; you can redistribute it and/or modify it under
+the terms of the GNU General Public License, version 2, as published
+by the Free Software Foundation.
+==============================================================================
+
+License of buildmpkg.sh.in and TorPostFlight:
+
+ This files are part of Vidalia, and are subject to the license terms found in
+ this copyright file.
+
+ buildmpkg.sh.in is derived from contrib/osx/package.sh from Tor
+ (https://www.torproject.org), licensed as follows:
+
+ Copyright (c) 2001-2004, Roger Dingledine
+ Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson
+ Copyright (c) 2008, Andrew Lewman
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above
+ copyright notice, this list of conditions and the following disclaimer
+ in the documentation and/or other materials provided with the
+ distribution.
+
+ * Neither the names of the copyright owners nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+==============================================================================
+Tor is distributed under this license:
+
+Copyright (c) 2001-2004, Roger Dingledine
+Copyright (c) 2004-2007, Roger Dingledine, Nick Mathewson
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+ * Redistributions of source code must retain the above copyright
+notice, this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above
+copyright notice, this list of conditions and the following disclaimer
+in the documentation and/or other materials provided with the
+distribution.
+
+ * Neither the names of the copyright owners nor the names of its
+contributors may be used to endorse or promote products derived from
+this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+If you got Tor as a static binary with OpenSSL included, then you should know:
+ "This product includes software developed by the OpenSSL Project
+ for use in the OpenSSL Toolkit (http://www.openssl.org/)"
+==============================================================================
+
+License of src/common/strlcat.c and src/common/strlcpy.c:
+
+ Copyright (c) 1998 Todd C. Miller <Todd.Miller at courtesan.com>
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ 3. The name of the author may not be used to endorse or promote products
+ derived from this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+ AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
+ THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+ OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+==============================================================================
+
+Some of the help documentation text used in this package was copied from the
+Vidalia FAQ Wiki <http://trac.vidalia-project.net/wiki/FAQ>.
+It's content is licensed under the Creative Commons Attribution-Share Alike 3.0.
+ Copyright (C) 2006-2008, Matt Edman <edmanm at vidalia-project.net>
+==============================================================================
+
+
+On Debian systems, the complete text of the GNU General Public Licenses can be
+found in `/usr/share/common-licenses/'.
diff --git a/docs b/docs
new file mode 100644
index 0000000..975d514
--- /dev/null
+++ b/docs
@@ -0,0 +1,2 @@
+CREDITS
+debian/FAQ
diff --git a/menu b/menu
new file mode 100644
index 0000000..876da77
--- /dev/null
+++ b/menu
@@ -0,0 +1,6 @@
+?package(vidalia):needs="X11"\
+ hints="Vidalia,Tor,Routing,Network Routing,Anonymous,Kde4,Onion"\
+ section="Applications/System/Security"\
+ title="Vidalia-Tor Onion Routing GUI"\
+ command="/usr/bin/vidalia"\
+ icon="/usr/share/pixmaps/vidalia.xpm"
diff --git a/patches/debians-tor-binary-path.patch b/patches/debians-tor-binary-path.patch
new file mode 100644
index 0000000..f12f55c
--- /dev/null
+++ b/patches/debians-tor-binary-path.patch
@@ -0,0 +1,14 @@
+Author: dererk
+Description: Even though upstream has implemented a block of code to perform this check, as Tor's binary is located in /usr/sbin path, regular users are likely to lack that path in their PATH enviroment variable. This patch purpose is setting it to the right Debian's Tor package.
+--- old/src/vidalia/config/TorSettings.cpp 2009-01-14 13:56:54.000000000 -0200
++++ new/src/vidalia/config/TorSettings.cpp 2010-01-23 06:02:41.930010310 -0300
+@@ -68,7 +68,8 @@
+ else
+ setDefault(SETTING_TOR_EXECUTABLE, programFiles + "\\Tor\\tor.exe");
+ #else
+- setDefault(SETTING_TOR_EXECUTABLE, "tor");
++ /** Debian patch for proper tor binary path */
++ setDefault(SETTING_TOR_EXECUTABLE, "/usr/sbin/tor");
+ #endif
+
+ setDefault(SETTING_TORRC, Vidalia::dataDirectory() + "/torrc");
diff --git a/patches/kFreeBSD-gcc4.4-fix.patch b/patches/kFreeBSD-gcc4.4-fix.patch
new file mode 100644
index 0000000..31c973f
--- /dev/null
+++ b/patches/kFreeBSD-gcc4.4-fix.patch
@@ -0,0 +1,11 @@
+--- vidalia-0.2.4.orig/src/common/ZlibByteArray.cpp 2009-04-28 22:28:01.000000000 +0200
++++ vidalia-0.2.4/src/common/ZlibByteArray.cpp 2010-01-22 18:55:46.000000000 +0100
+@@ -56,7 +56,7 @@
+
+ #ifdef HAVE_LIMITS_H
+ #include <limits.h>
+-#elif HAVE_SYS_LIMITS_H
++#elif defined HAVE_SYS_LIMITS_H
+ #include <sys/limits.h>
+ #endif
+
diff --git a/patches/series b/patches/series
new file mode 100644
index 0000000..84f62f6
--- /dev/null
+++ b/patches/series
@@ -0,0 +1,2 @@
+debians-tor-binary-path.patch
+kFreeBSD-gcc4.4-fix.patch
diff --git a/po/POTFILES.in b/po/POTFILES.in
new file mode 100644
index 0000000..cef83a3
--- /dev/null
+++ b/po/POTFILES.in
@@ -0,0 +1 @@
+[type: gettext/rfc822deb] templates
diff --git a/po/ca.po b/po/ca.po
new file mode 100644
index 0000000..b6adc3f
--- /dev/null
+++ b/po/ca.po
@@ -0,0 +1,48 @@
+# Copyright (C) 2008 UlisesVitulli
+# This file is distributed under the same license as the Vidalia package.
+# Ulises Vitulli <uvitulli at fi.uba.ar>
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: 0.1.9-1\n"
+"Report-Msgid-Bugs-To: vidalia at packages.debian.org\n"
+"POT-Creation-Date: 2008-09-18 00:31-0300\n"
+"PO-Revision-Date: 2008-09-17 16:17-0300\n"
+"Last-Translator: Ulises Vitulli <uvitulli at fi.uba.ar>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"Do you want to stop the existing Tor process and let Vidalia start Tor?"
+msgstr ""
+"Voleu parar l'actual execució de Tor i permetre que Vidalia engegue Tor?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"It looks like there is a Tor process already running. If you want to start "
+"Tor using Vidalia, you might have to stop the existing Tor process. "
+"Otherwise you will have to enable 'ControlPort' option into Tor as explained "
+"in the documentation carried with this package ('/usr/share/doc/vidalia/"
+"README.Debian')."
+msgstr ""
+"Pareix que encara està en marxa el Tor. Si voleu engegar Tor amb el Vidalia,"
+"hauríeu de detindre el procés de Tor què està en execució.Si no, haureu "
+"d'engegar l'opció «ControlPort» a Tor,tal com s'explica a la documentació que "
+"suministra aquest paquet(/usr/share/doc/vidalia/README.Debian)"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"Note that if you choose to let Vidalia start Tor, you will have to manually "
+"disable Tor starting automatically on every reboot (See 'README.Debian')."
+msgstr ""
+"Adoneu-vos que si trieu que Vidalia engegue Tor, haureu de deshabilitar de forma "
+"manual l'engegat de Tor automàtic a cada reinici (Vegeu «README.Debian»)."
diff --git a/po/cs.po b/po/cs.po
new file mode 100644
index 0000000..5b0362d
--- /dev/null
+++ b/po/cs.po
@@ -0,0 +1,46 @@
+# This file is distributed under the same license as the vidalia package.
+# Martin Sin <martin.sin at zshk.cz>, 2009.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: vidalia 0.1.13-3\n"
+"Report-Msgid-Bugs-To: vidalia at packages.debian.org\n"
+"POT-Creation-Date: 2008-09-18 15:32-0300\n"
+"PO-Revision-Date: 2009-07-06 16:01+0200\n"
+"Last-Translator: Martin Sin <martin.sin at zshk.cz>\n"
+"Language-Team: Czech <debian-l10n-czech at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want to stop the existing Tor process and let Vidalia start Tor?"
+msgstr "Přejete si ukončit stávající proces Tor a spustit ho pomocí Vidalia?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"It looks like there is a Tor process already running. If you want to start "
+"Tor using Vidalia, you might have to stop the existing Tor process. "
+"Otherwise you will have to enable 'ControlPort' option into Tor as explained "
+"in the documentation carried with this package ('/usr/share/doc/vidalia/"
+"README.Debian')."
+msgstr ""
+"Vypadá to, že proces Tor už běží. Pokud chcete začít používat Vidalia v Tor, "
+"měli byste ukončit běžící proces. Jinak budete muset povolit volbu "
+"'ControlPort' v Tor tak, jak je vysvětleno v dokumentaci tohoto balíčku "
+"('/usr/share/doc/vidalia/README.Debian')."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"Note that if you choose to let Vidalia start Tor, you will have to manually "
+"disable Tor starting automatically on every reboot (See 'README.Debian')."
+msgstr ""
+"Pamatujte, že jakmile umožníte Vidalia spustit Tor, budete muset ještě ručně "
+"zakázat automatické spuštění při každém restartu počítače (viz. "
+"'README.Debian')."
diff --git a/po/de.po b/po/de.po
new file mode 100644
index 0000000..8c4194b
--- /dev/null
+++ b/po/de.po
@@ -0,0 +1,50 @@
+# Translation of vidalia debconf templates to German
+# Copyright (C) Helge Kreutzmann <debian at helgefjell.de>, 2008.
+# This file is distributed under the same license as the vidalia package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: vidalia\n"
+"Report-Msgid-Bugs-To: vidalia at packages.debian.org\n"
+"POT-Creation-Date: 2008-09-18 15:32-0300\n"
+"PO-Revision-Date: 2008-09-19 20:34+0200\n"
+"Last-Translator: Helge Kreutzmann <debian at helgefjell.de>\n"
+"Language-Team: de <debian-l10n-german at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want to stop the existing Tor process and let Vidalia start Tor?"
+msgstr ""
+"Möchten Sie den vorhandenen Tor-Prozess anhalten und Tor von Vidalia starten "
+"lassen?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"It looks like there is a Tor process already running. If you want to start "
+"Tor using Vidalia, you might have to stop the existing Tor process. "
+"Otherwise you will have to enable 'ControlPort' option into Tor as explained "
+"in the documentation carried with this package ('/usr/share/doc/vidalia/"
+"README.Debian')."
+msgstr ""
+"Ein Tor-Prozess scheint bereits zu laufen. Falls Sie Tor mittels Vidalia "
+"starten wollen, müssen Sie den vorhandenen Tor-Prozess anhalten. Andernfalls "
+"müssen Sie die Option »ControlPort« in Tor aktivieren, wie dies in der "
+"Dokumentation in diesem Paket (»/usr/share/doc/vidalia/README.Debian«) "
+"beschrieben ist."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"Note that if you choose to let Vidalia start Tor, you will have to manually "
+"disable Tor starting automatically on every reboot (See 'README.Debian')."
+msgstr ""
+"Beachten Sie, dass Sie Tor manuell nach jedem Systemstart beenden müssen, "
+"falls Sie hier entscheiden, dass Tor durch Vidalia gestartet werden soll "
+"(lesen Sie »README.Debian«)."
diff --git a/po/es.po b/po/es.po
new file mode 100644
index 0000000..ac623d5
--- /dev/null
+++ b/po/es.po
@@ -0,0 +1,49 @@
+# Copyright (C) 2008 UlisesVitulli
+# This file is distributed under the same license as the Vidalia package.
+# Ulises Vitulli <uvitulli at fi.uba.ar>
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: 0.1.9-1\n"
+"Report-Msgid-Bugs-To: vidalia at packages.debian.org\n"
+"POT-Creation-Date: 2008-09-18 00:31-0300\n"
+"PO-Revision-Date: 2008-09-17 16:17-0300\n"
+"Last-Translator: Ulises Vitulli <uvitulli at fi.uba.ar>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"Do you want to stop the existing Tor process and let Vidalia start Tor?"
+msgstr ""
+"¿Desea detener el proceso Tor existente y dejar que Vidalia lo inicie?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"It looks like there is a Tor process already running. If you want to start "
+"Tor using Vidalia, you might have to stop the existing Tor process. "
+"Otherwise you will have to enable 'ControlPort' option into Tor as explained "
+"in the documentation carried with this package ('/usr/share/doc/vidalia/"
+"README.Debian')."
+msgstr ""
+" Parece que hay un proceso Tor ya en marcha. Si desea iniciar Tor utilizando "
+"Vidalia, tendrá que detener el proceso actual de Tor. De lo contrario tendrá "
+"que activar la opción 'ControlPort' de Tor tal y como se explica en la "
+"documentación que acompaña este paquete ('/usr/share/doc/vidalia/README."
+"Debian')."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"Note that if you choose to let Vidalia start Tor, you will have to manually "
+"disable Tor starting automatically on every reboot (See 'README.Debian')."
+msgstr ""
+"Tenga en cuenta que si decide dejar que Vidalia sea quien inicie Tor, tendrá "
+"que manualmente desactivar el inicio automático de Tor (Ver 'README.Debian')."
diff --git a/po/fi.po b/po/fi.po
new file mode 100644
index 0000000..d33a630
--- /dev/null
+++ b/po/fi.po
@@ -0,0 +1,52 @@
+# Copyright (C) 2008 Esko Arajärvi <edu at iki.fi>
+# This file is distributed under the same license as the Vidalia package.
+# Esko Arajärvi <edu at iki.fi>
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: vidalia\n"
+"Report-Msgid-Bugs-To: vidalia at packages.debian.org\n"
+"POT-Creation-Date: 2008-09-18 15:32-0300\n"
+"PO-Revision-Date: \n"
+"Last-Translator: Esko Arajärvi <edu at iki.fi>\n"
+"Language-Team: Finnish <debian-l10n-finnish at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Finnish\n"
+"X-Poedit-Country: FINLAND\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want to stop the existing Tor process and let Vidalia start Tor?"
+msgstr ""
+"Tulisiko olemassa oleva Tor-prosessi keskeyttää ja käynnistää Tor Vidalian "
+"avulla?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"It looks like there is a Tor process already running. If you want to start "
+"Tor using Vidalia, you might have to stop the existing Tor process. "
+"Otherwise you will have to enable 'ControlPort' option into Tor as explained "
+"in the documentation carried with this package ('/usr/share/doc/vidalia/"
+"README.Debian')."
+msgstr ""
+"Näyttää siltä, että Tor-prosessi on jo käynnissä. Jos Tor halutaan "
+"käynnistää Vidalian avulla, olemassa oleva Tor-prosessi täytyy ehkä "
+"keskeyttää. Muussa tapauksessa Torin valitsin ”ControlPort” täytyy ottaa "
+"käyttöön paketin dokumentaatiossa kerrotulla tavalla (tiedostossa /usr/share/"
+"doc/vidalia/README.Debian). "
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"Note that if you choose to let Vidalia start Tor, you will have to manually "
+"disable Tor starting automatically on every reboot (See 'README.Debian')."
+msgstr ""
+"Jos Tor käynnistetään Vidalialla, täytyy Torin automaattinen käynnistyminen "
+"järjestelmän käynnistymisen yhteydessä ottaa pois käytöstä. (Katso tiedostoa "
+"README.Debian.)"
diff --git a/po/fr.po b/po/fr.po
new file mode 100644
index 0000000..8d7523d
--- /dev/null
+++ b/po/fr.po
@@ -0,0 +1,52 @@
+# Translation of vidalia debconf templates to French
+# Copyright (C) 2008 Christian Perrier <bubulle at debian.org>
+# This file is distributed under the same license as the vidalia package.
+#
+# Christian Perrier <bubulle at debian.org>, 2008.
+msgid ""
+msgstr ""
+"Project-Id-Version: fr\n"
+"Report-Msgid-Bugs-To: vidalia at packages.debian.org\n"
+"POT-Creation-Date: 2008-09-18 15:32-0300\n"
+"PO-Revision-Date: 2008-09-19 07:18+0200\n"
+"Last-Translator: Christian Perrier <bubulle at debian.org>\n"
+"Language-Team: French <debian-l10n-french at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want to stop the existing Tor process and let Vidalia start Tor?"
+msgstr ""
+"Faut-il interrompre le processus Tor en cours et laisser Vidalia démarrer "
+"Tor ?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"It looks like there is a Tor process already running. If you want to start "
+"Tor using Vidalia, you might have to stop the existing Tor process. "
+"Otherwise you will have to enable 'ControlPort' option into Tor as explained "
+"in the documentation carried with this package ('/usr/share/doc/vidalia/"
+"README.Debian')."
+msgstr ""
+"Un processus Tor semble être en cours d'exécution. Si vous souhaitez lancer "
+"Tor avec Vidalia, il peut être nécessaire d'interrompre ce processus. Dans "
+"le cas contraire, vous devrez activer l'option « ControlPort » de Tor, selon "
+"les instructions fournies avec ce paquet dans le fichier usr/share/doc/"
+"vidalia/README.Debian."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"Note that if you choose to let Vidalia start Tor, you will have to manually "
+"disable Tor starting automatically on every reboot (See 'README.Debian')."
+msgstr ""
+"Veuillez noter que si vous choisissez de lancer Tor avec Vidalia, il sera "
+"nécessaire de désactiver le lancement automatique de Tor au démarrage du "
+"système (comme expliqué dans le fichier README.Debian)."
diff --git a/po/it.po b/po/it.po
new file mode 100644
index 0000000..c2f538f
--- /dev/null
+++ b/po/it.po
@@ -0,0 +1,47 @@
+# Copyright (C) 2008 Vincenzo Campanella
+# This file is distributed under the same license as the Vidalia package.
+# Vincenzo Campanella <vinz65 at gmail.com>
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: 0.1.9-1\n"
+"Report-Msgid-Bugs-To: vidalia at packages.debian.org\n"
+"POT-Creation-Date: 2008-09-18 15:32-0300\n"
+"PO-Revision-Date: 2008-09-17 16:17-0300\n"
+"Last-Translator: Vincenzo Campanella <vinz65 at gmail.com>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want to stop the existing Tor process and let Vidalia start Tor?"
+msgstr "Vuoi arrestare il processo di Tor esistente e che Vidalia avvii Tor?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"It looks like there is a Tor process already running. If you want to start "
+"Tor using Vidalia, you might have to stop the existing Tor process. "
+"Otherwise you will have to enable 'ControlPort' option into Tor as explained "
+"in the documentation carried with this package ('/usr/share/doc/vidalia/"
+"README.Debian')."
+msgstr ""
+"Sembra che ci sia già un processo di Tor in esecuzione. Se vuoi avviare Tor "
+"utilizzando Vidalia, dovresti arrestare il processo di Tor in esecuzione. In "
+"caso contrario dovrai abilitare l'opzione 'ControlPort' in Tor come "
+"illustrato nella documentazione allegata a questo pacchetto ('usr/share/doc/"
+"vidalia/README.Debian')."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"Note that if you choose to let Vidalia start Tor, you will have to manually "
+"disable Tor starting automatically on every reboot (See 'README.Debian')."
+msgstr ""
+"Nota che se scegli che Vidalia avvii Tor, dovrai disabilitare manualmente "
+"l'esecuzione automatica di Tor ad ogni riavvio (vedi 'README.Debian')."
diff --git a/po/pt.po b/po/pt.po
new file mode 100644
index 0000000..4ded3ec
--- /dev/null
+++ b/po/pt.po
@@ -0,0 +1,51 @@
+# translation of vidalia debconf to Portuguese
+# Copyright (C) 2008 Américo Monteiro
+# This file is distributed under the same license as the vidalia package.
+#
+# Américo Monteiro <a_monteiro at netcabo.pt>, 2008.
+msgid ""
+msgstr ""
+"Project-Id-Version: vidalia 0.1.9-1\n"
+"Report-Msgid-Bugs-To: vidalia at packages.debian.org\n"
+"POT-Creation-Date: 2008-09-18 15:32-0300\n"
+"PO-Revision-Date: 2008-09-19 21:35+0100\n"
+"Last-Translator: Américo Monteiro <a_monteiro at netcabo.pt>\n"
+"Language-Team: Portuguese <traduz at debianpt.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want to stop the existing Tor process and let Vidalia start Tor?"
+msgstr ""
+"Deseja parar o processo Tor existente e deixar o Vidalia iniciar o Tor?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"It looks like there is a Tor process already running. If you want to start "
+"Tor using Vidalia, you might have to stop the existing Tor process. "
+"Otherwise you will have to enable 'ControlPort' option into Tor as explained "
+"in the documentation carried with this package ('/usr/share/doc/vidalia/"
+"README.Debian')."
+msgstr ""
+"Parece que já existe um processo Tor a correr. Se você deseja iniciar o Tor "
+"usando o Vidalia, você poderá ter que parar o processo Tor existente. Caso "
+"contrário você terá que activar a opção 'ControlPort' no Tor como está "
+"explicado na documentação que acompanha este pacote ('/usr/share/doc/vidalia/"
+"README.Debian')."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"Note that if you choose to let Vidalia start Tor, you will have to manually "
+"disable Tor starting automatically on every reboot (See 'README.Debian')."
+msgstr ""
+"Note que se você deseja que o Vidalia inicie o Tor, você terá que desactivar "
+"manualmente o arranque automático do Tor a cada arranque da máquina (veja "
+"'README.Debian')."
diff --git a/po/ru.po b/po/ru.po
new file mode 100644
index 0000000..ea4589b
--- /dev/null
+++ b/po/ru.po
@@ -0,0 +1,51 @@
+# translation of ru.po to Russian
+# Copyright (C) 2008 Yuri Kozlov
+# This file is distributed under the same license as the vidalia package.
+#
+# Yuri Kozlov <kozlov.y at gmail.com>, 2008.
+msgid ""
+msgstr ""
+"Project-Id-Version: ru\n"
+"Report-Msgid-Bugs-To: vidalia at packages.debian.org\n"
+"POT-Creation-Date: 2008-09-18 15:32-0300\n"
+"PO-Revision-Date: 2008-09-18 23:02+0400\n"
+"Last-Translator: Yuri Kozlov <kozlov.y at gmail.com>\n"
+"Language-Team: Russian <debian-l10n-russian at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want to stop the existing Tor process and let Vidalia start Tor?"
+msgstr "Остановить работающий процесс Tor и позволить Vidalia запустить Tor?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"It looks like there is a Tor process already running. If you want to start "
+"Tor using Vidalia, you might have to stop the existing Tor process. "
+"Otherwise you will have to enable 'ControlPort' option into Tor as explained "
+"in the documentation carried with this package ('/usr/share/doc/vidalia/"
+"README.Debian')."
+msgstr ""
+"Кажется, что процесс Tor уже запущен. Если вы хотите запустить Tor используя "
+"Vidalia, то нужно остановить работающий процесс Tor. Или же вы можете "
+"включить параметр 'ControlPort' в Tor (см. документацию по этому пакету, "
+"файл /usr/share/doc/vidalia/README.Debian)."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"Note that if you choose to let Vidalia start Tor, you will have to manually "
+"disable Tor starting automatically on every reboot (See 'README.Debian')."
+msgstr ""
+"Заметим, что если вы выберете запуск Tor с помощью Vidalia, то вам нужно "
+"самостоятельно выключить автоматический запуск Tor при включении машины (см. "
+"'README.Debian')."
diff --git a/po/sv.po b/po/sv.po
new file mode 100644
index 0000000..1c310dc
--- /dev/null
+++ b/po/sv.po
@@ -0,0 +1,49 @@
+# This file is distributed under the same license as the vidalia package.
+#
+# translation of vidalia.po to swedish
+# Martin Bagge <brother at bsnet.se>, 2008.
+msgid ""
+msgstr ""
+"Project-Id-Version: vidalia\n"
+"Report-Msgid-Bugs-To: vidalia at packages.debian.org\n"
+"POT-Creation-Date: 2008-09-18 15:32-0300\n"
+"PO-Revision-Date: 2008-12-09 04:46+0100\n"
+"Last-Translator: Martin Bagge <brother at bsnet.se>\n"
+"Language-Team: swedish <debian-l10n-swedish at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want to stop the existing Tor process and let Vidalia start Tor?"
+msgstr ""
+"Vill du stoppa den existerande Torprocessen för att låta Vidalia starta Tor?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"It looks like there is a Tor process already running. If you want to start "
+"Tor using Vidalia, you might have to stop the existing Tor process. "
+"Otherwise you will have to enable 'ControlPort' option into Tor as explained "
+"in the documentation carried with this package ('/usr/share/doc/vidalia/"
+"README.Debian')."
+msgstr ""
+"Det verkar som om det finns en Torprocess igång på den här datorn. Om du "
+"vill starta Tor med Vidalia behöver den nuvarande Torprocessen först "
+"avslutas. I annat fall måste du aktivera alternativet 'ControlPort' i Tor "
+"vilket förklaras i dokumentationen till det här paketet ('/usr/share/doc/"
+"vidalia/README.Debian')."
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"Note that if you choose to let Vidalia start Tor, you will have to manually "
+"disable Tor starting automatically on every reboot (See 'README.Debian')."
+msgstr ""
+"Kom ihåg att om du låter Vidalia starta Tor måste du avaktivera automatisk "
+"start av Tor vid uppstart av systemet. (Läs mer i 'README.Debian')."
diff --git a/po/templates.pot b/po/templates.pot
new file mode 100644
index 0000000..04fb91b
--- /dev/null
+++ b/po/templates.pot
@@ -0,0 +1,41 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL at ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: vidalia at packages.debian.org\n"
+"POT-Creation-Date: 2008-09-18 15:32-0300\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid "Do you want to stop the existing Tor process and let Vidalia start Tor?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"It looks like there is a Tor process already running. If you want to start "
+"Tor using Vidalia, you might have to stop the existing Tor process. "
+"Otherwise you will have to enable 'ControlPort' option into Tor as explained "
+"in the documentation carried with this package ('/usr/share/doc/vidalia/"
+"README.Debian')."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"Note that if you choose to let Vidalia start Tor, you will have to manually "
+"disable Tor starting automatically on every reboot (See 'README.Debian')."
+msgstr ""
diff --git a/po/zh_CN.po b/po/zh_CN.po
new file mode 100644
index 0000000..c0e6d53
--- /dev/null
+++ b/po/zh_CN.po
@@ -0,0 +1,45 @@
+# This file is distributed under the same license as the Vidalia package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Vidalia 0.1.13\n"
+"Report-Msgid-Bugs-To: vidalia at packages.debian.org\n"
+"POT-Creation-Date: 2008-09-18 00:31-0300\n"
+"PO-Revision-Date: 2008-05-21 21:26+0800\n"
+"Last-Translator: Vern Sun <s5unty at gmail.com>\n"
+"Language-Team: Simplified Chinese <debian-chinese-gb at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"Do you want to stop the existing Tor process and let Vidalia start Tor?"
+msgstr "您希望停止正在运行的 Tor 进程并且让 Vidalia 启动 Tor 吗?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"It looks like there is a Tor process already running. If you want to start "
+"Tor using Vidalia, you might have to stop the existing Tor process. "
+"Otherwise you will have to enable 'ControlPort' option into Tor as explained "
+"in the documentation carried with this package ('/usr/share/doc/vidalia/"
+"README.Debian')."
+msgstr ""
+"看起来这里已经有一个 Tor 程序正在运行。如果您想用 Vidalia 启动 Tor,您或许要"
+"停止当前正在运行的 Tor 程序。否则您应该像本软件包提供的说明('/usr/share/doc/"
+"vidalia/README.Debian')那样启用 Tor 的 'ControlPort' 选项。"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"Note that if you choose to let Vidalia start Tor, you will have to manually "
+"disable Tor starting automatically on every reboot (See 'README.Debian')."
+msgstr ""
+"请注意如果您选择让 Vidalia 启动 Tor,那么您应该手工禁止 Tor 在每次计算机重启"
+"时自动运行 (请参考 'README.Debian')。"
+
diff --git a/po/zh_TW.po b/po/zh_TW.po
new file mode 100644
index 0000000..2cb3951
--- /dev/null
+++ b/po/zh_TW.po
@@ -0,0 +1,45 @@
+# This file is distributed under the same license as the Vidalia package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Vidalia 0.1.13\n"
+"Report-Msgid-Bugs-To: vidalia at packages.debian.org\n"
+"POT-Creation-Date: 2008-09-18 00:31-0300\n"
+"PO-Revision-Date: 2009-06-01 14:26+0800\n"
+"Last-Translator: Vern Sun <s5unty at gmail.com>\n"
+"Language-Team: Traditional Chinese <debian-chinese-big5 at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"Do you want to stop the existing Tor process and let Vidalia start Tor?"
+msgstr "您希望停止正在運行的 Tor 進程並且讓 Vidalia 啟動 Tor 嗎?"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"It looks like there is a Tor process already running. If you want to start "
+"Tor using Vidalia, you might have to stop the existing Tor process. "
+"Otherwise you will have to enable 'ControlPort' option into Tor as explained "
+"in the documentation carried with this package ('/usr/share/doc/vidalia/"
+"README.Debian')."
+msgstr ""
+"看起來這裏已經有一個 Tor 程序正在運行。如果您想用 Vidalia 啟動 Tor,您或許要"
+"停止當前正在運行的 Tor 程序。否則您應該像本軟件包提供的説明('/usr/share/doc/"
+"vidalia/README.Debian')那樣啟用 Tor 的 'ControlPort' 選項。"
+
+#. Type: boolean
+#. Description
+#: ../templates:1001
+msgid ""
+"Note that if you choose to let Vidalia start Tor, you will have to manually "
+"disable Tor starting automatically on every reboot (See 'README.Debian')."
+msgstr ""
+"請注意如果您選擇讓 Vidalia 啟動 Tor,那麼您應該手工禁止 Tor 在每次計算機重啓"
+"時自動運行 (請參考 'README.Debian')。"
+
diff --git a/postinst b/postinst
new file mode 100644
index 0000000..c369c73
--- /dev/null
+++ b/postinst
@@ -0,0 +1,7 @@
+#!/bin/sh
+set -e
+if [ -f /usr/share/debconf/confmodule ]; then
+ . /usr/share/debconf/confmodule
+fi
+
+#DEBHELPER#
diff --git a/rules b/rules
new file mode 100755
index 0000000..5804380
--- /dev/null
+++ b/rules
@@ -0,0 +1,106 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+include /usr/share/quilt/quilt.make
+
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+# Used for repacking upstream tarball
+UPVERSION=$(shell echo `head -n 1 debian/changelog|sed -e 's/^[^(]*(\([^)]*\)).*/\1/'`|sed -e 's/-.*//')
+
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+ CFLAGS += -O0
+else
+ CFLAGS += -O2
+endif
+
+configure: configure-stamp
+configure-stamp:
+ dh_testdir
+ touch configure-stamp
+
+build: build-stamp $(QUILT_STAMPFN)
+
+build-stamp:
+ dh_testdir
+ mkdir -p debian/build;
+ cd debian/build; \
+ cmake -DCMAKE_INSTALL_PREFIX=/usr \
+ -DQT_LRELEASE_EXECUTABLE=/usr/bin/lrelease-qt4 \
+ -QT_LUPDATE_EXECUTABLE=/usr/bin/lupdate-qt4 ../.. ;\
+ make
+ touch $@
+
+clean: unpatch
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp CMakeCache.txt doc/Doxyfile \
+ doc/vidalia.1 src/vidalia/res/vidalia_win.rc
+ rm -rf debian/build CMakeFiles
+ for f in src/vidalia/i18n/*.qm; do\
+ rm -rf $$f; \
+ done
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs usr/share/pixmaps
+ # Install the package
+ cd debian/build; \
+ make install DESTDIR=$(CURDIR)/debian/vidalia
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+ dh_testdir
+ dh_testroot
+ dh_install
+ dh_installdocs
+ dh_installchangelogs CHANGELOG
+ dh_installman doc/vidalia.1
+ dh_installdebconf
+ dh_installmenu
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+source-repkg:
+ [ -d $(CURDIR)/debian/rpkg-source ] || mkdir $(CURDIR)/debian/rpkg-source ; \
+ cd debian/rpkg-source; \
+ wget -q http://www.torproject.org/vidalia/dist/vidalia-$(UPVERSION).tar.gz ; \
+ wget -q http://www.torproject.org/vidalia/dist/vidalia-$(UPVERSION).tar.gz.asc ; \
+ gpg --no-default-keyring --keyring repackaging-keyring.gpg --import ../upstream-keyring.pubkey ; \
+ gpg --no-default-keyring --keyring repackaging-keyring.gpg --verify vidalia-$(UPVERSION).tar.gz.asc || \
+ exit 1 ; \
+ tar zxf vidalia-$(UPVERSION).tar.gz ; \
+ rm -rf vidalia-$(UPVERSION)/debian ; \
+ tar zcf vidalia-$(UPVERSION).repkg.tar.gz vidalia-$(UPVERSION) && \
+ echo "Target accomplished. Repackaged source file located in $(CURDIR)/debian/rpkg-source"
+
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
diff --git a/templates b/templates
new file mode 100644
index 0000000..bfb5735
--- /dev/null
+++ b/templates
@@ -0,0 +1,11 @@
+Template: vidalia/info
+Type: boolean
+Default: true
+_Description: Do you want to stop the existing Tor process and let Vidalia start Tor?
+ It looks like there is a Tor process already running. If you want to start Tor
+ using Vidalia, you might have to stop the existing Tor process. Otherwise you
+ will have to enable 'ControlPort' option into Tor as explained in the documentation
+ carried with this package ('/usr/share/doc/vidalia/README.Debian').
+ .
+ Note that if you choose to let Vidalia start Tor, you will have to manually disable
+ Tor starting automatically on every reboot (See 'README.Debian').
diff --git a/upstream-keyring.pubkey b/upstream-keyring.pubkey
new file mode 100644
index 0000000..22d036c
--- /dev/null
+++ b/upstream-keyring.pubkey
@@ -0,0 +1,94 @@
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+Version: GnuPG v1.4.10 (GNU/Linux)
+
+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
+AIuUiJcO
+=1pjw
+-----END PGP PUBLIC KEY BLOCK-----
diff --git a/vidalia.desktop b/vidalia.desktop
new file mode 100644
index 0000000..1627eac
--- /dev/null
+++ b/vidalia.desktop
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Version=1.0
+Name=Vidalia
+GenericName=GUI controller for Tor Onion Routing Network
+Comment=GUI controller for Tor Onion Routing Network
+Exec=/usr/bin/vidalia
+Terminal=false
+Type=Application
+Icon=/usr/share/pixmaps/vidalia.xpm
+Categories=Network;Qt;Security;
diff --git a/vidalia.install b/vidalia.install
new file mode 100644
index 0000000..081729d
--- /dev/null
+++ b/vidalia.install
@@ -0,0 +1,2 @@
+debian/vidalia.xpm usr/share/pixmaps
+debian/vidalia.desktop usr/share/applications
diff --git a/vidalia.xpm b/vidalia.xpm
new file mode 100644
index 0000000..2323b2b
--- /dev/null
+++ b/vidalia.xpm
@@ -0,0 +1,150 @@
+/* XPM */
+static char *vidalia[] = {
+/* columns rows colors chars-per-pixel */
+"30 30 114 2",
+" c #010101",
+". c #0A0A0A",
+"X c #131313",
+"o c #1B1B1B",
+"O c #242424",
+"+ c #2C2C2C",
+"@ c #333333",
+"# c #373A37",
+"$ c #3B3C3B",
+"% c #196919",
+"& c #205D20",
+"* c #324132",
+"= c #3B4E3B",
+"- c #246724",
+"; c #3C6D3C",
+": c #434343",
+"> c #454A45",
+", c #4B4B4B",
+"< c #4A534A",
+"1 c #545454",
+"2 c #5B5C5B",
+"3 c #476847",
+"4 c #5B625B",
+"5 c #587858",
+"6 c #636463",
+"7 c #606B60",
+"8 c #6B6B6B",
+"9 c #657A65",
+"0 c #6F766F",
+"q c #737473",
+"w c #707D70",
+"e c #7B7B7B",
+"r c #078907",
+"t c #039303",
+"y c #009C00",
+"u c #0C9E0C",
+"i c #119411",
+"p c #03A103",
+"a c #03AB02",
+"s c #09A409",
+"d c #10A90F",
+"f c #01B300",
+"g c #0DB20C",
+"h c #0DB80C",
+"j c #10B60F",
+"k c #19A619",
+"l c #13B912",
+"z c #28A528",
+"x c #2AA92A",
+"c c #3BB63B",
+"v c #3EC03D",
+"b c #479747",
+"n c #5C945C",
+"m c #599A59",
+"M c #40B940",
+"N c #58A758",
+"B c #54B754",
+"V c #6D816D",
+"C c #679B67",
+"Z c #6C9A6C",
+"A c #738473",
+"S c #788478",
+"D c #7F8A7F",
+"F c #6FA26F",
+"G c #60BA60",
+"H c #6AB76A",
+"J c #5BCD5A",
+"K c #6ACC69",
+"L c #7FCE7E",
+"P c #828282",
+"I c #848A84",
+"U c #8C8C8C",
+"Y c #929392",
+"T c #969896",
+"R c #9C9D9C",
+"E c #9BAA9B",
+"W c gray65",
+"Q c #A3ABA3",
+"! c #ACACAC",
+"~ c #ACB0AC",
+"^ c #B4B4B4",
+"/ c #B9B9B9",
+"( c #96C296",
+") c #96CD96",
+"_ c #A5C3A5",
+"` c #A3CFA3",
+"' c #A8C6A8",
+"] c #ADC8AD",
+"[ c #B4CCB4",
+"{ c #B8C7B8",
+"} c #BDCEBD",
+"| c #B4D3B4",
+" . c #B4D8B4",
+".. c #BADCBA",
+"X. c #C4C4C4",
+"o. c #C2CBC2",
+"O. c #CCCCCC",
+"+. c #C3D3C3",
+"@. c #C0DDC0",
+"#. c #CBDCCB",
+"$. c #D4D4D4",
+"%. c #DDDDDD",
+"&. c #C7E4C7",
+"*. c #CFE1CF",
+"=. c #D3EBD3",
+"-. c #DFE5DF",
+";. c #D8EAD8",
+":. c #D5F1D5",
+">. c #DBF1DB",
+",. c #E4E4E4",
+"<. c #ECECEC",
+"1. c #E5F6E5",
+"2. c gray94",
+"3. c None",
+/* pixels */
+"3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.",
+"3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.",
+"3.3.3.3.3.3.3.3.3.3.3. o + + o 3.3.3.3.3.3.3.3.3.3.3.",
+"3.3.3.3.3.3.3.3.3. 1 W ,.,.%.%.%.$.R , 3.3.3.3.3.3.3.3.3.",
+"3.3.3.3.3.3.3. , $.%.T 6 8 1 , 6 6 U X./ : 3.3.3.3.3.3.3.",
+"3.3.3.3.3.3.. Y <.U 2 > , 4 9 V 7 , , 2 e O.P . 3.3.3.3.3.3.",
+"3.3.3.3.3.. ! $.1 < < n ) :.1.1.>.` F w q 1 / Y . 3.3.3.3.3.",
+"3.3.3.3. Y $.1 $ ; B =.] S q q I [ >.G Z I 1 ^ q 3.3.3.3.",
+"3.3.3.3., %., # - c =.2 , 1 2 6 2 1 8 ;.M m T 1 ^ $ 3.3.3.3.",
+"3.3.3.. O.P > & p &.> + # : > , > : # 2 ..d C R q Y 3.3.3.",
+"3.3.3.1 O.2 * t J D . o O + @ @ @ + O o Q v u Q 8 R @ 3.3.3.",
+"3.3. R U > % a .o . X o o o o o X . $ ( f N ~ q 6 3.3.",
+"3.3. O.6 # r f #. . . . +.f k O.1 e 3.3.",
+"3.3.o $.6 = y h } +.l a { 2 P . 3.3.",
+"3.3.+ O.6 3 p | Y 4 *.j _ 8 e X 3.3.",
+"3.3.+ O.6 5 s +. o.j ' 8 8 X 3.3.",
+"3.3.o O.6 A y @.. . +.a +., , . 3.3.",
+"3.3. X.6 U i K 0 4 L k %.@ # 3.3.",
+"3.3. U P Y b a #.o . #.g H X.> O 3.3.",
+"3.3.3.: ^ 8 E z #.O o #.x #.2 : X 3.3.3.",
+"3.3.3. R q W o.O O -.O., @ 3.3.3.",
+"3.3.3.3.# W 1 X.2 8 <., : X 3.3.3.3.",
+"3.3.3.3. 6 Y 1 O.P . . Y <., : O 3.3.3.3.",
+"3.3.3.3.3.. 8 P , X.O.6 o o 8 ,.%.: : O 3.3.3.3.3.",
+"3.3.3.3.3.3. , e 2 2 X.%.O./ / O.2.%.6 , : O 3.3.3.3.3.3.",
+"3.3.3.3.3.3.3. O 1 1 , @ , 6 6 2 @ , : @ X 3.3.3.3.3.3.3.",
+"3.3.3.3.3.3.3.3.3. X O @ $ > , $ @ O X 3.3.3.3.3.3.3.3.3.",
+"3.3.3.3.3.3.3.3.3.3.3. . . . 3.3.3.3.3.3.3.3.3.3.3.",
+"3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.",
+"3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3."
+};
diff --git a/watch b/watch
new file mode 100644
index 0000000..1028d1c
--- /dev/null
+++ b/watch
@@ -0,0 +1,4 @@
+version=3
+# avoid evaluating development releases (0.2.x branches)
+opts=uversionmangle=s/0\.2\./~pre/ \
+ http://www.torproject.org/vidalia/dist/vidalia-(.*)\.tar\.gz
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-privacy/packages/vidalia.git
More information about the Pkg-privacy-commits
mailing list