# HG changeset patch # User Hans-G?nter Theisgen # Date 1659431762 -3600 # Node ID c38360befd0207c91db64d15ab7a8d905dcdfadc # Parent 7efab2fe727743c21e3f784908d71ac8b5887caa updated vidalia (0.2.21 -> 0.3.1) diff -r 7efab2fe7277 -r c38360befd02 vidalia/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vidalia/description.txt Tue Aug 02 10:16:02 2022 +0100 @@ -0,0 +1,16 @@ +Vidalia is a cross-platform graphical controller for the Tor software, +built using the Qt framework. +Vidalia runs on most platforms supported by Qt 4.3 or later, including +Microsoft Windows, Apple OS X, and Linux or other Unix variants using +the X11 window system. +It was originally written by Matt Edman, and is currently maintained +by Tomás Touceda. + +Vidalia lets you start and stop Tor, see how much bandwidth you are +consuming, see how many circuits you currently have active, see where +these circuits are connected on a global map, view messages from Tor +about its progress and current state, and let you configure your Tor +client, bridge, or relay with a simple interface. +Included in Vidalia is an extensive help system which helps you +understand all of the options available to you. +All of these features are translated into a large number of languages. diff -r 7efab2fe7277 -r c38360befd02 vidalia/receipt --- a/vidalia/receipt Mon Aug 01 17:34:00 2022 +0100 +++ b/vidalia/receipt Tue Aug 02 10:16:02 2022 +0100 @@ -1,17 +1,18 @@ # SliTaz package receipt. PACKAGE="vidalia" -VERSION="0.2.21" +VERSION="0.3.1" CATEGORY="network" SHORT_DESC="Controller GUI for the Tor software." MAINTAINER="paul@slitaz.org" -LICENSE="GPL2 LGPL3" +LICENSE="GPL2+" +WEB_SITE="https://web.archive.org/web/20141121142650/https://www.torproject.org/projects/vidalia" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://web.archive.org/web/20141121142650/https://www.torproject.org/projects/vidalia" WGET_URL="https://archive.torproject.org/tor-package-archive/$PACKAGE/$TARBALL" -DEPENDS="tor libQtGui libQtXml libegl-mesa" -BUILD_DEPENDS="cmake Qt4-dev wget qmake libegl-mesa openssl-dev" +DEPENDS="libegl-mesa libQtGui libQtScript libQtXml tor" +BUILD_DEPENDS="cmake qmake libegl-mesa openssl-dev Qt4-dev" # What is the latest version available today? current_version() @@ -23,17 +24,18 @@ # Rules to configure and make the package. compile_rules() { - cd $src - mkdir build && cd build - cmake -DCMAKE_INSTALL_PREFIX=/usr .. && - make && make DESTDIR=$DESTDIR install + mkdir build && + cd build && + cmake .. \ + -D CMAKE_INSTALL_PREFIX=/usr && + make && + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/share/ $fs/usr + cook_copy_folders bin + cook_copy_folders icons }