# HG changeset patch # User Christophe Lincoln # Date 1205850649 -3600 # Node ID a7bd0e5069b6694fa73aad87d4655fae0be365eb # Parent 638a532403f880313774f1d27bb84c2a04ff89a6 Add: tar, xarchiver, listpatron and fix deps for obconf (tar) diff -r 638a532403f8 -r a7bd0e5069b6 listpatron/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/listpatron/receipt Tue Mar 18 15:30:49 2008 +0100 @@ -0,0 +1,36 @@ +# SliTaz package receipt. + +PACKAGE="listpatron" +VERSION="0.1.1" +CATEGORY="office" +SHORT_DESC="GTK+2 application for maintaining lists of information.." +MAINTAINER="pankso@slitaz.org" +DEPENDS="gtk+" +BUILD_DEPENDS="gtk+-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.electricmonk.nl/Programmings/ListPatron" +WGET_URL="http://projects.electricmonk.nl/projects/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --libexecdir=/usr/lib/$PACKAGE \ + $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share/pixmaps + cp -a $_pkg/usr/bin $fs/usr + #cp -a $_pkg/usr/lib $fs/usr + cp -a $_pkg/usr/share/pixmaps $fs/usr/share + cp $_pkg/usr/share/icons/hicolor/48x48/apps/xarchiver.png \ + $fs/usr/share/pixmaps +} + diff -r 638a532403f8 -r a7bd0e5069b6 listpatron/stuff/listpatron.desktop --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/listpatron/stuff/listpatron.desktop Tue Mar 18 15:30:49 2008 +0100 @@ -0,0 +1,7 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=ListPatron +Exec=listpatron +Icon=/usr/share/pixmaps/listpatron/icons/listpatron-col-add.png +Type=Application +Categories=Office; diff -r 638a532403f8 -r a7bd0e5069b6 obconf/receipt --- a/obconf/receipt Tue Mar 18 14:47:15 2008 +0100 +++ b/obconf/receipt Tue Mar 18 15:30:49 2008 +0100 @@ -5,7 +5,7 @@ CATEGORY="x-window" SHORT_DESC="Openbox WM configuration interface." MAINTAINER="pankso@slitaz.org" -DEPENDS="openbox gtk+ libglade" +DEPENDS="openbox gtk+ libglade tar" BUILD_DEPENDS="xorg-dev gtk+-dev libglade-dev" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://icculus.org/openbox/" diff -r 638a532403f8 -r a7bd0e5069b6 tar/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tar/receipt Tue Mar 18 15:30:49 2008 +0100 @@ -0,0 +1,43 @@ +# SliTaz package receipt. + +PACKAGE="tar" +VERSION="1.19" +CATEGORY="utilities" +SHORT_DESC="GNU tar archiving tools." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="" +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" + + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --libexecdir=/usr/lib/$PACKAGE \ + $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/usr/bin $fs/usr +} + +# Prevent erasing busybox... +pre_install() +{ + local root + root=$1 + rm -f $root/usr/bin/tar +} + +post_remove() +{ + ln -s /bin/busybox /usr/bin/tar +} diff -r 638a532403f8 -r a7bd0e5069b6 xarchiver/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xarchiver/receipt Tue Mar 18 15:30:49 2008 +0100 @@ -0,0 +1,36 @@ +# SliTaz package receipt. + +PACKAGE="xarchiver" +VERSION="0.4.6" +CATEGORY="utilities" +SHORT_DESC="GTK+2 frontend to various command line archiving tools." +MAINTAINER="pankso@slitaz.org" +DEPENDS="gtk+ tar" +BUILD_DEPENDS="gtk+-dev" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://xarchiver.xfce.org/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --libexecdir=/usr/lib/$PACKAGE \ + $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share/pixmaps + cp -a $_pkg/usr/bin $fs/usr + #cp -a $_pkg/usr/lib $fs/usr + cp -a $_pkg/usr/share/pixmaps $fs/usr/share + cp $_pkg/usr/share/icons/hicolor/48x48/apps/xarchiver.png \ + $fs/usr/share/pixmaps +} +