wok rev 25396

updated vidalia (0.2.21 -> 0.3.1)
author Hans-G?nter Theisgen
date Tue Aug 02 10:16:02 2022 +0100 (20 months ago)
parents 7efab2fe7277
children 15d3cabcb53e
files vidalia/description.txt vidalia/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/vidalia/description.txt	Tue Aug 02 10:16:02 2022 +0100
     1.3 @@ -0,0 +1,16 @@
     1.4 +Vidalia is a cross-platform graphical controller for the Tor software,
     1.5 +built using the Qt framework.
     1.6 +Vidalia runs on most platforms supported by Qt 4.3 or later, including
     1.7 +Microsoft Windows, Apple OS X, and Linux or other Unix variants using
     1.8 +the X11 window system.
     1.9 +It was originally written by Matt Edman, and is currently maintained
    1.10 +by Tomás Touceda.
    1.11 +
    1.12 +Vidalia lets you start and stop Tor, see how much bandwidth you are
    1.13 +consuming, see how many circuits you currently have active, see where
    1.14 +these circuits are connected on a global map, view messages from Tor
    1.15 +about its progress and current state, and let you configure your Tor
    1.16 +client, bridge, or relay with a simple interface.
    1.17 +Included in Vidalia is an extensive help system which helps you
    1.18 +understand all of the options available to you.
    1.19 +All of these features are translated into a large number of languages.
     2.1 --- a/vidalia/receipt	Mon Aug 01 17:34:00 2022 +0100
     2.2 +++ b/vidalia/receipt	Tue Aug 02 10:16:02 2022 +0100
     2.3 @@ -1,17 +1,18 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="vidalia"
     2.7 -VERSION="0.2.21"
     2.8 +VERSION="0.3.1"
     2.9  CATEGORY="network"
    2.10  SHORT_DESC="Controller GUI for the Tor software."
    2.11  MAINTAINER="paul@slitaz.org"
    2.12 -LICENSE="GPL2 LGPL3"
    2.13 +LICENSE="GPL2+"
    2.14 +WEB_SITE="https://web.archive.org/web/20141121142650/https://www.torproject.org/projects/vidalia"
    2.15 +
    2.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.17 -WEB_SITE="https://web.archive.org/web/20141121142650/https://www.torproject.org/projects/vidalia"
    2.18  WGET_URL="https://archive.torproject.org/tor-package-archive/$PACKAGE/$TARBALL"
    2.19  
    2.20 -DEPENDS="tor libQtGui libQtXml libegl-mesa"
    2.21 -BUILD_DEPENDS="cmake Qt4-dev wget qmake libegl-mesa openssl-dev"
    2.22 +DEPENDS="libegl-mesa libQtGui libQtScript libQtXml tor"
    2.23 +BUILD_DEPENDS="cmake qmake libegl-mesa openssl-dev Qt4-dev"
    2.24  
    2.25  # What is the latest version available today?
    2.26  current_version()
    2.27 @@ -23,17 +24,18 @@
    2.28  # Rules to configure and make the package.
    2.29  compile_rules()
    2.30  {
    2.31 -	cd $src
    2.32 -	mkdir build && cd build
    2.33 -	cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
    2.34 -	make && make DESTDIR=$DESTDIR install
    2.35 +	mkdir build &&
    2.36 +	cd build &&
    2.37 +	cmake	..				\
    2.38 +		-D CMAKE_INSTALL_PREFIX=/usr &&
    2.39 +	make &&
    2.40 +	make install DESTDIR=$DESTDIR
    2.41  }
    2.42  
    2.43  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.44  genpkg_rules()
    2.45  {
    2.46 -	mkdir -p $fs/usr
    2.47 -	cp -a $install/usr/bin $fs/usr
    2.48 -	cp -a $install/usr/share/ $fs/usr
    2.49 +	cook_copy_folders	bin
    2.50 +	cook_copy_folders	icons
    2.51  }
    2.52