# HG changeset patch # User Christopher Rogers # Date 1285167289 0 # Node ID 4d6f743e4ef6a260f804e1ea1cbcd196f3b890fc # Parent a41ab4cbb99463f5fc338b904ab15f91497c918a# Parent 83e7bd2d484e6ea00e74afe9c891e9257215bd65 merge diff -r a41ab4cbb994 -r 4d6f743e4ef6 aspell-da/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/aspell-da/receipt Wed Sep 22 14:54:49 2010 +0000 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="aspell-da" +VERSION="1.4.42-1" +CATEGORY="system-tools" +SHORT_DESC="Danish aspell dictionary." +MAINTAINER="paul@slitaz.org" +DEPENDS="aspell" +BUILD_DEPENDS="aspell aspell-dev" +SOURCE="aspell5-da" +TARBALL="$SOURCE-$VERSION.tar.bz2" +WEB_SITE="ftp://ftp.gnu.org/gnu/aspell/dict/0index.html" +WGET_URL="ftp://ftp.gnu.org/gnu/aspell/dict/da/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure && \ + make && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/* $fs/usr/lib +} + diff -r a41ab4cbb994 -r 4d6f743e4ef6 polipo/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/polipo/receipt Wed Sep 22 14:54:49 2010 +0000 @@ -0,0 +1,48 @@ +# SliTaz package receipt. + +PACKAGE="polipo" +VERSION="1.0.4.1" +CATEGORY="network" +SHORT_DESC="Small and fast caching web proxy." +MAINTAINER="paul@slitaz.org" +DEPENDS="" +BUILD_DEPENDS="texinfo" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.pps.jussieu.fr/~jch/software/polipo/" +WGET_URL="http://freehaven.net/~chrisd/polipo/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + make all +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin $fs/etc/polipo $fs/usr/share/polipo/www/doc + cp -a $src/polipo $fs/usr/bin + cp -a $src/config.sample $fs/etc/polipo/config + cp -a $src/forbidden.sample $fs/etc/polipo/forbidden + cp -a $src/localindex.html $fs/usr/share/polipo/www/index.html + cp -a $src/html/* $fs/usr/share/polipo/www/doc +} + +# Create a disk cache. +post_install() +{ + echo -n "Creating disk cache..." + mkdir $1/var/cache/polipo + chown tux.tux $1/var/cache/polipo + status +} + +# Remove disk cache. +post_remove() +{ + echo -n "Removing disk cache..." + rm -rf $1/var/cache/polipo + status +} + diff -r a41ab4cbb994 -r 4d6f743e4ef6 vidalia/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vidalia/receipt Wed Sep 22 14:54:49 2010 +0000 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="vidalia" +VERSION="0.2.10" +CATEGORY="network" +SHORT_DESC="Controller GUI for the Tor software." +MAINTAINER="paul@slitaz.org" +DEPENDS="tor libQtGui libQtXml libegl-mesa" +BUILD_DEPENDS="cmake Qt4-dev wget qmake libegl-mesa" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="https://www.torproject.org/vidalia/" +# WGET_URL="https://www.torproject.org/vidalia/dist/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + # Have to use wget for https stuff + wget --no-check-certificate https://www.torproject.org/vidalia/dist/$TARBALL + tar xvf $TARBALL + cd $src + mkdir build && cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. && + make && make DESTDIR=$src/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/share/ $fs/usr +} +