# HG changeset patch # User Pascal Bellard # Date 1320406561 -3600 # Node ID 7aef52db895d75ddb3b7a458acf843b5ac6f4af0 # Parent 532ab3b57d4002431e93f314c00cdd393bab7016 Add from wok-undigest: verbiste vsftpd wammu wol wput diff -r 532ab3b57d40 -r 7aef52db895d verbiste/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/verbiste/receipt Fri Nov 04 12:36:01 2011 +0100 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="verbiste" +VERSION="0.1.33" +CATEGORY="office" +SHORT_DESC="Verbiste is a French conjugation system." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://perso.b2b2c.ca/sarrazip/dev/verbiste.html" +WGET_URL="http://perso.b2b2c.ca/sarrazip/dev/$TARBALL" + +DEPENDS="gtk+ libxml2" +BUILD_DEPENDS="gtk+-dev libxml2-dev" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure $CONFIGURE_ARGS && + make && make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/share/pixmaps + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/share/verbiste-* $fs/usr/share + rm $fs/usr/share/verbiste-*/COPYING + cp $src/src/gtk/verbiste.png $fs/usr/share/pixmaps +} + diff -r 532ab3b57d40 -r 7aef52db895d verbiste/stuff/verbiste.desktop --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/verbiste/stuff/verbiste.desktop Fri Nov 04 12:36:01 2011 +0100 @@ -0,0 +1,8 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=French conjugation +Name[fr]=Conjugaison française +Exec=french-conjugator +Icon=verbiste +Type=Application +Categories=Office; diff -r 532ab3b57d40 -r 7aef52db895d vsftpd/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vsftpd/receipt Fri Nov 04 12:36:01 2011 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="vsftpd" +VERSION="2.2.0" +CATEGORY="network" +SHORT_DESC="Secure FTP server" +MAINTAINER="erjo@slitaz.org" +DEPENDS="" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://vsftpd.beasts.org/" +WGET_URL="ftp://vsftpd.beasts.org/users/cevans/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + make + #&& make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin $fs/etc + cp -a $src/vsftpd $fs/usr/bin + cp -a $src/vsftpd.conf $fs/etc +} + diff -r 532ab3b57d40 -r 7aef52db895d wammu/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wammu/receipt Fri Nov 04 12:36:01 2011 +0100 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="wammu" +VERSION="0.33" +CATEGORY="system-tools" +SHORT_DESC="Wammu is mobile phone manage." +MAINTAINER="pankso@slitaz.org" +DEPENDS="gammu python python-pybluez wxpython" +BUILD_DEPENDS="$DEPENDS gammu-dev python-dev wxpython-dev" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://wammu.eu/wammu/" +WGET_URL="$SF_MIRROR/gammu/$PACKAGE/$VERSION/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py build && + python setup.py install --root=$PWD/_pkg +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib $fs/usr + cp -a $_pkg/usr/share/Wammu $fs/usr/share +} diff -r 532ab3b57d40 -r 7aef52db895d wol/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wol/receipt Fri Nov 04 12:36:01 2011 +0100 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="wol" +VERSION="0.7.1" +CATEGORY="network" +SHORT_DESC="wol implements Wake On LAN functionality in a small program." +MAINTAINER="l.lemarinel@gmail.com" +TARBALL="${PACKAGE}-${VERSION}.tar.gz" +WGET_URL="$SF_MIRROR/ahh/$TARBALL" +WEB_SITE="http://wake-on-lan.sourceforge.net/" +BUILD_DEPENDS="" +DEPENDS="" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure $CONFIGURE_ARGS && + make && make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/bin $fs/usr +} diff -r 532ab3b57d40 -r 7aef52db895d wput/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wput/receipt Fri Nov 04 12:36:01 2011 +0100 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="wput" +VERSION="0.6.2" +CATEGORY="network" +SHORT_DESC="A tiny wget-like ftp-client for uploading files" +MAINTAINER="l.lemarinel@gmail.com" +WEB_SITE="http://wput.sourceforge.net/" +TARBALL="${PACKAGE}-${VERSION}.tgz" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +BUILD_DEPENDS="" +DEPENDS="" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + sed -i "s|^prefix *=.*|prefix = $DESTDIR/usr|" Makefile.in + ./configure --prefix=/usr \ + --disable-g-switch \ + --without-ssl && + make && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr +}