wok rev 14377

Move from undigest backintime duplicity dnstracer extended-actions pysize trafshow wavemon xscreensaver
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 22 18:31:43 2013 +0200 (2013-04-22)
parents a7f918cb00d1
children cb84de8a6840
files backintime/receipt dnstracer/receipt duplicity/receipt extended-actions/description.txt extended-actions/receipt pysize/receipt trafshow/receipt wavemon/receipt xscreensaver/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/backintime/receipt	Mon Apr 22 18:31:43 2013 +0200
     1.3 @@ -0,0 +1,27 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="backintime"
     1.7 +VERSION="1.0.8"
     1.8 +CATEGORY="network"
     1.9 +SHORT_DESC="A simple backup tool for linux."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +WEB_SITE="http://backintime.le-web.org/"
    1.12 +TARBALL="$PACKAGE-${VERSION}_src.tar.gz"
    1.13 +WGET_URL="http://backintime.le-web.org/download/$PACKAGE/$TARBALL"
    1.14 +
    1.15 +DEPENDS="python rsync cron"
    1.16 +BUILD_DEPENDS="$DEPENDS meld" # python-glade2 python-gnome2
    1.17 +
    1.18 +# Rules to configure and make the package.
    1.19 +compile_rules()
    1.20 +{
    1.21 +	cd $src/common
    1.22 +	./configure --prefix=/usr --sysconfdir=/etc $CONFIGURE_ARGS &&
    1.23 +	make && make DESTDIR=$DESTDIR install
    1.24 +}
    1.25 +
    1.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.27 +genpkg_rules()
    1.28 +{
    1.29 +	cp -a $install/* $fs
    1.30 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/dnstracer/receipt	Mon Apr 22 18:31:43 2013 +0200
     2.3 @@ -0,0 +1,31 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="dnstracer"
     2.7 +VERSION="1.9"
     2.8 +CATEGORY="network"
     2.9 +SHORT_DESC="Traces a chain of DNS servers to the source."
    2.10 +MAINTAINER="paul@slitaz.org"
    2.11 +DEPENDS=""
    2.12 +BUILD_DEPENDS="autoconf"
    2.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.14 +WEB_SITE="http://www.mavetju.org/unix/dnstracer.php"
    2.15 +WGET_URL="http://www.mavetju.org/download/$TARBALL"
    2.16 +
    2.17 +# Rules to configure and make the package.
    2.18 +compile_rules()
    2.19 +{
    2.20 +	cd $src
    2.21 +	autoconf
    2.22 +	./configure \
    2.23 +		--prefix=/usr \
    2.24 +		$CONFIGURE_ARGS &&
    2.25 +	make && make install
    2.26 +}
    2.27 +
    2.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.29 +genpkg_rules()
    2.30 +{
    2.31 +	mkdir -p $fs/usr
    2.32 +	cp -a $install/usr/bin $fs/usr
    2.33 +}
    2.34 +
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/duplicity/receipt	Mon Apr 22 18:31:43 2013 +0200
     3.3 @@ -0,0 +1,27 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="duplicity"
     3.7 +VERSION="0.6.20"
     3.8 +CATEGORY="network"
     3.9 +SHORT_DESC="Encrypted bandwidth-efficient backup using the rsync algorithm."
    3.10 +MAINTAINER="pascal.bellard@slitaz.org"
    3.11 +WEB_SITE="http://duplicity.nongnu.org/"
    3.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.13 +WGET_URL="https://code.launchpad.net/$PACKAGE/${VERSION%.*}-series/$VERSION/+download/$TARBALL"
    3.14 +
    3.15 +DEPENDS="python librsync gnupg paramiko cryptopp lftp"
    3.16 +BUILD_DEPENDS="wget python-dev $DEPENDS"
    3.17 +# NcFTP boto librsync-dev
    3.18 +
    3.19 +# Rules to configure and make the package.
    3.20 +compile_rules()
    3.21 +{
    3.22 +	cd $src
    3.23 +	./setup.py install --root=$DESTDIR install
    3.24 +}
    3.25 +
    3.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.27 +genpkg_rules()
    3.28 +{
    3.29 +	cp -a $install/* $fs
    3.30 +}
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/extended-actions/description.txt	Mon Apr 22 18:31:43 2013 +0200
     4.3 @@ -0,0 +1,22 @@
     4.4 +A service that allows applications to request some extended actions for a list
     4.5 +of files depending on their mimetypes and some other constraints. Any user can
     4.6 +extend their applications by adding custom actions.
     4.7 +
     4.8 +Similar to thunar-actions but distributed via dbus, any application can take
     4.9 +advantage of this service. extended-actions use traditional desktop files and
    4.10 +extend its format to configure special action(s) on files. Unity already
    4.11 +extended the desktop file application format with its quicklist.
    4.12 +
    4.13 +Maybe one day this same application format will be extended at the glib level
    4.14 +within GAppInfo or in a new class or maybe a super daemon would arise providing
    4.15 +all the informations about applications and their new uses case. And this
    4.16 +service would be obsolete.
    4.17 +
    4.18 +This project is the continuation of the work i already started in contractor.
    4.19 +
    4.20 +extended-actions already provide a list of actions in
    4.21 +/usr/share/extended-actions.
    4.22 +Any user can define some custom actions in ~/.local/share/extended-actions
    4.23 +
    4.24 +And if u have some good actions files don't hesitate to contact me i may include
    4.25 +them by default.
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/extended-actions/receipt	Mon Apr 22 18:31:43 2013 +0200
     5.3 @@ -0,0 +1,35 @@
     5.4 +# SliTaz package receipt.
     5.5 +
     5.6 +PACKAGE="extended-actions"
     5.7 +VERSION="0"
     5.8 +CATEGORY="system-tools"
     5.9 +SHORT_DESC="Service for generating extended actions on files"
    5.10 +MAINTAINER="al.bobylev@gmail.com"
    5.11 +LICENSE="GPL3"
    5.12 +WEB_SITE="https://launchpad.net/extended-actions"
    5.13 +BRANCH="5"
    5.14 +TARBALL="$PACKAGE-$BRANCH.tar.bz2"
    5.15 +WGET_URL="bzr|lp:extended-actions"
    5.16 +
    5.17 +DEPENDS="libgee libgio"
    5.18 +BUILD_DEPENDS="bazaar cmake vala glib-dev libgio-dev libgee-dev"
    5.19 +
    5.20 +TODO="Setup extended-actions specific to SliTaz"
    5.21 +
    5.22 +# Rules to configure and make the package.
    5.23 +compile_rules()
    5.24 +{
    5.25 +	# gee-1.0 is old while gee-0.8 is latest ;)
    5.26 +	sed -i 's|gee-1.0|gee-0.8|g' $(grep -l gee-1.0 $(find . -type f))
    5.27 +
    5.28 +	mkdir build && cd build &&
    5.29 +	cmake .. -DCMAKE_INSTALL_PREFIX=/usr &&
    5.30 +	make &&
    5.31 +	make DESTDIR=$install install
    5.32 +}
    5.33 +
    5.34 +# Rules to gen a SliTaz package suitable for Tazpkg.
    5.35 +genpkg_rules()
    5.36 +{
    5.37 +	cp -a $install/* $fs
    5.38 +}
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/pysize/receipt	Mon Apr 22 18:31:43 2013 +0200
     6.3 @@ -0,0 +1,27 @@
     6.4 +# SliTaz package receipt.
     6.5 +
     6.6 +PACKAGE="pysize"
     6.7 +VERSION="0.2"
     6.8 +CATEGORY="utilities"
     6.9 +SHORT_DESC="Console and graphical tool for exploring the size of directories."
    6.10 +MAINTAINER="paul@slitaz.org"
    6.11 +DEPENDS="python ncurses pygtk librsvg"
    6.12 +BUILD_DEPENDS="python-dev ncurses-dev pygtk-dev setuptools"
    6.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    6.14 +WEB_SITE="http://guichaz.free.fr/pysize/"
    6.15 +WGET_URL="http://guichaz.free.fr/pysize/files/$TARBALL"
    6.16 +
    6.17 +# Rules to configure and make the package.
    6.18 +compile_rules()
    6.19 +{
    6.20 +	cd $src
    6.21 +	python setup.py build
    6.22 +	python setup.py install --root=$DESTDIR
    6.23 +}
    6.24 +
    6.25 +# Rules to gen a SliTaz package suitable for Tazpkg.
    6.26 +genpkg_rules()
    6.27 +{
    6.28 +	cp -a $install/usr $fs
    6.29 +}
    6.30 +
     7.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.2 +++ b/trafshow/receipt	Mon Apr 22 18:31:43 2013 +0200
     7.3 @@ -0,0 +1,41 @@
     7.4 +# SliTaz package receipt.
     7.5 +
     7.6 +PACKAGE="trafshow"
     7.7 +VERSION="5.2.3"
     7.8 +CATEGORY="network"
     7.9 +SHORT_DESC="Full screen network traffic monitor."
    7.10 +MAINTAINER="paul@slitaz.org"
    7.11 +DEPENDS="ncurses libpcap"
    7.12 +BUILD_DEPENDS="ncurses-dev libpcap-dev"
    7.13 +TARBALL="$PACKAGE-$VERSION.tgz"
    7.14 +WEB_SITE="http://soft.risp.ru/trafshow/index_en.shtml"
    7.15 +WGET_URL="http://fossies.org/linux/misc/$TARBALL"
    7.16 +
    7.17 +# Rules to configure and make the package.
    7.18 +compile_rules()
    7.19 +{
    7.20 +	cd $src
    7.21 +
    7.22 +	# fix session.c bug
    7.23 +	sed -i '43d' session.c
    7.24 +
    7.25 +	./configure \
    7.26 +		--prefix=/usr \
    7.27 +		$CONFIGURE_ARGS && make 
    7.28 +}
    7.29 +
    7.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    7.31 +genpkg_rules()
    7.32 +{
    7.33 +	mkdir -p $fs/usr/bin $fs/etc
    7.34 +	cp -a $src/$PACKAGE $fs/usr/bin
    7.35 +	cp -a $src/.trafshow $fs/etc/trafshow
    7.36 +
    7.37 +	# tidy config file and change perms
    7.38 +	chown root:root $fs/etc/trafshow
    7.39 +	sed -i 's|*/icmp|#*/icmp|' $fs/etc/trafshow
    7.40 +	sed -i 's|nfs|#nfs|' $fs/etc/trafshow
    7.41 +	sed -i 's|513|#513|' $fs/etc/trafshow
    7.42 +	sed -i 's|514|#514|' $fs/etc/trafshow
    7.43 +}
    7.44 +
     8.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     8.2 +++ b/wavemon/receipt	Mon Apr 22 18:31:43 2013 +0200
     8.3 @@ -0,0 +1,30 @@
     8.4 +# SliTaz package receipt.
     8.5 +
     8.6 +PACKAGE="wavemon"
     8.7 +VERSION="0.7.5"
     8.8 +CATEGORY="network"
     8.9 +SHORT_DESC="Wavemon is an ncurses-based monitoring application for wireless network devices."
    8.10 +MAINTAINER="paul@slitaz.org"
    8.11 +DEPENDS="ncurses libcap"
    8.12 +BUILD_DEPENDS="ncurses-dev libcap-dev"
    8.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    8.14 +WEB_SITE="http://eden-feed.erg.abdn.ac.uk/wavemon/"
    8.15 +WGET_URL="http://eden-feed.erg.abdn.ac.uk/wavemon/stable-releases/$TARBALL"
    8.16 +
    8.17 +# Rules to configure and make the package.
    8.18 +compile_rules()
    8.19 +{
    8.20 +	cd $src
    8.21 +	./configure \
    8.22 +		--prefix=/usr \
    8.23 +		$CONFIGURE_ARGS &&
    8.24 +	make && make install
    8.25 +}
    8.26 +
    8.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    8.28 +genpkg_rules()
    8.29 +{
    8.30 +	mkdir -p $fs/usr
    8.31 +	cp -a $install/usr/bin $fs/usr
    8.32 +}
    8.33 +
     9.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     9.2 +++ b/xscreensaver/receipt	Mon Apr 22 18:31:43 2013 +0200
     9.3 @@ -0,0 +1,32 @@
     9.4 +# SliTaz package receipt.
     9.5 +
     9.6 +PACKAGE="xscreensaver"
     9.7 +VERSION="5.21"
     9.8 +CATEGORY="x-window"
     9.9 +SHORT_DESC="A collection of free screen savers"
    9.10 +MAINTAINER="al.bobylev@gmail.com"
    9.11 +LICENSE=""
    9.12 +WEB_SITE="http://www.jwz.org/xscreensaver/"
    9.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    9.14 +WGET_URL="$WEB_SITE/$TARBALL"
    9.15 +
    9.16 +DEPENDS=""
    9.17 +BUILD_DEPENDS="bc xorg-libX11-dev xorg-libXmu-dev xorg-libXext-dev \
    9.18 +xorg-libXinerama-dev xorg-libXi-dev xorg-libXxf86vm-dev xorg-libXrandr-dev \
    9.19 +gtk+-dev libxml2-dev mesa-dev gdk-pixbuf-dev xorg-libXpm-dev jpeg-dev \
    9.20 +xorg-libXt-dev libglade-dev"
    9.21 +
    9.22 +# Rules to configure and make the package.
    9.23 +compile_rules()
    9.24 +{
    9.25 +	export LDFLAGS="$LDFLAGS $(pkg-config --libs gtk+-2.0 gdk-pixbuf-xlib-2.0 gl)"
    9.26 +	./configure $CONFIGURE_ARGS &&
    9.27 +	make && 
    9.28 +	make install_prefix=$DESTDIR install
    9.29 +}
    9.30 +
    9.31 +# Rules to gen a SliTaz package suitable for Tazpkg.
    9.32 +genpkg_rules()
    9.33 +{
    9.34 +	cp -a $install/* $fs
    9.35 +}