# HG changeset patch # User Pascal Bellard # Date 1320405787 -3600 # Node ID 532ab3b57d4002431e93f314c00cdd393bab7016 # Parent ab72a4d08ed397d73b3ee28c0c4ef904c4fbb644 Add from wok-undigest: qtwitter radiotray rdpdesk rsbep siproxd songwrite soprano soprano-dev t2 thttpd tp_smapi ucarp diff -r ab72a4d08ed3 -r 532ab3b57d40 qtwitter/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/qtwitter/receipt Fri Nov 04 12:23:07 2011 +0100 @@ -0,0 +1,41 @@ +# SliTaz package receipt. + +PACKAGE="qtwitter" +VERSION="0.10.0" +CATEGORY="network" +SHORT_DESC="A Qt-based, cross-network microblogging client." +MAINTAINER="ben@seawolfsanctuary.com" +DEPENDS="glibc-locale libQtCore libQtGui libQtNetwork libQtSvg libQtXml \ +libQtDesigner libQtScript libQt3Support libQtClucene libQtDBus libQtHelp \ +libQtOpenGL libQtSql libQtWebkit qoauth" +BUILD_DEPENDS="qmake xorg-libX11-dev dbus-dev Qt4-dev qoauth qca-dev" +TARBALL="$PACKAGE-$VERSION-src.tar.gz" +WEB_SITE="http://www.ayoy.net/$PACKAGE" +WGET_URL="http://files.ayoy.net/$PACKAGE/release/$VERSION/src/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + echo -n "Linking..." + ln -s $WOK/$PACKAGE-$VERSION-src $src + status + + cd $src + + qmake PREFIX="/usr" && \ + make -j4 && make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/bin + + # Binaries + cp -a $src/build/qtwitter $fs/usr/bin + # Libraries + cp -a $src/build/lib* $fs/usr/bin + + # Copy .desktop file: +# cp -a $WOK/$PACKAGE/stuff/* $fs/usr +} diff -r ab72a4d08ed3 -r 532ab3b57d40 radiotray/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/radiotray/receipt Fri Nov 04 12:23:07 2011 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="radiotray" +VERSION="0.6.1" +CATEGORY="multimedia" +SHORT_DESC="Online radio streaming player that runs on system tray." +MAINTAINER="pankso@slitaz.org" +DEPENDS="python python-lxml" +BUILD_DEPENDS="python python-dev python-xdg" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://radiotray.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py install --prefix=/usr --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/radiotray $fs/usr/share +} diff -r ab72a4d08ed3 -r 532ab3b57d40 rdpdesk/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/rdpdesk/receipt Fri Nov 04 12:23:07 2011 +0100 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="rdpdesk" +VERSION="3.2" +CATEGORY="network" +SHORT_DESC="RDP, VNC & ICA client." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://rdpdesk.com/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +DEPENDS="wxWidgets xorg-libXp xorg-libXaw libssl" +BUILD_DEPENDS="wxWidgets-dev xorg-imake jpeg-dev zlib-dev \ +openssl-dev xorg-libXp" +SUGGESTED="wfica rdesktop" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $_pkg/usr $fs +} diff -r ab72a4d08ed3 -r 532ab3b57d40 rsbep/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/rsbep/receipt Fri Nov 04 12:23:07 2011 +0100 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="rsbep" +VERSION="0.1.0-ttsiodras" +CATEGORY="misc" +SHORT_DESC="Shielding your files with Reed-Solomon codes." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://users.softlab.ntua.gr/~ttsiod/rsbep.html" +WGET_URL="http://users.softlab.ntua.gr/~ttsiod/$TARBALL" + +SUGGESTED="python" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr --mandir=/usr/share/man \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + 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 +} diff -r ab72a4d08ed3 -r 532ab3b57d40 siproxd/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/siproxd/receipt Fri Nov 04 12:23:07 2011 +0100 @@ -0,0 +1,36 @@ +# SliTaz package receipt. + +PACKAGE="siproxd" +VERSION="0.8.1" +CATEGORY="network" +SHORT_DESC="A masquerading SIP Proxy Server." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://siproxd.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +CONFIG_FILES="/etc/siproxd" + +DEPENDS="osip" +BUILD_DEPENDS="osip-dev" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + sed -i 's/.*const ident.*/#undef lt_preloaded_symbols\n#define lt_preloaded_symbols lt_libltdl_LTX_preloaded_symbols\nextern const lt_dlsymlist lt_preloaded_symbols[];\n&/' src/plugins.c + ./configure --prefix=/usr --mandir=/usr/share/man \ + --sysconfdir=/etc/siproxd \ + --localstatedir=/var \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/etc $fs + cp -a $_pkg/usr/sbin $fs/usr + cp -a $_pkg/usr/lib $fs/usr +} diff -r ab72a4d08ed3 -r 532ab3b57d40 songwrite/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/songwrite/receipt Fri Nov 04 12:23:07 2011 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="songwrite" +SOURCE="Songwrite2" +VERSION="0.4" +CATEGORY="multimedia" +SHORT_DESC="music score and songbook editor." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://home.gna.org/oomadness/en/songwrite/" +WGET_URL="http://download.gna.org/songwrite/$TARBALL" + +DEPENDS="python editobj gtk+ pycairo" +BUILD_DEPENDS="python" +SUGGESTED="timidity evince" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python ./setup.py install --root=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $_pkg/usr $fs +} diff -r ab72a4d08ed3 -r 532ab3b57d40 soprano-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/soprano-dev/receipt Fri Nov 04 12:23:07 2011 +0100 @@ -0,0 +1,17 @@ +# SliTaz package receipt. + +PACKAGE="soprano-dev" +VERSION="2.6.0" +CATEGORY="development" +SHORT_DESC="Soprano pkgconfig and include files." +MAINTAINER="pankso@slitaz.org" +WANTED="soprano" +WEB_SITE="http://soprano.sourceforge.net/" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib +} diff -r ab72a4d08ed3 -r 532ab3b57d40 soprano/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/soprano/receipt Fri Nov 04 12:23:07 2011 +0100 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="soprano" +VERSION="2.6.0" +CATEGORY="system-tools" +SHORT_DESC="Soprano is the Qt/C++ RDF framework" +MAINTAINER="pankso@slitaz.org" +DEPENDS="libQtCore libQtNetwork" +BUILD_DEPENDS="cmake qmake Qt4-dev" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://soprano.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + mkdir -p build && cd build + cmake \ + -DCMAKE_INSTALL_PREFIX=/usr \ + .. && + make && make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*.so* $fs/usr/lib + cp -a $install/usr/lib/soprano $fs/usr/lib + cp -a $install/usr/share $fs/usr +} diff -r ab72a4d08ed3 -r 532ab3b57d40 t2/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/t2/receipt Fri Nov 04 12:23:07 2011 +0100 @@ -0,0 +1,38 @@ +# SliTaz package receipt. + +PACKAGE="t2" +VERSION="8.0-rc2" +CATEGORY="development" +SHORT_DESC="System Development Environment." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://www.t2-project.org/" +WGET_URL="http://dl.t2-project.org/source/$TARBALL" +DEPENDS="slitaz-toolchain bash ncurses" + +# Rules to configure and make the package. +compile_rules() +{ + true +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $src $fs/usr/lib/t2 +} + +# Pre and post install commands for Tazpkg. +post_install() +{ + [ -L /usr/bin/wget ] && tazpkg get-install wget --forced + cat <