# HG changeset patch # User Antoine Bodin # Date 1288532260 -3600 # Node ID c878b368c741ae5b8160730573b79afcc9fcf46a # Parent 4f69e201b1c3d6990a5cd6050e2ae96412af70c7 Add: flam3 (2.7.18), electricsheep (2.7b12) diff -r 4f69e201b1c3 -r c878b368c741 electricsheep/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/electricsheep/receipt Sun Oct 31 14:37:40 2010 +0100 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="electricsheep" +VERSION="2.7b12" +CATEGORY="graphics" +SHORT_DESC="Distributed screen-saver that harnesses idle computers into a render farm with the purpose of animating and evolving artificial life-forms." +MAINTAINER="gokhlayeh@mailoo.org" +DEPENDS="curl expat flam3 ffmpeg mplayer libglade gtk+" +BUILD_DEPENDS="curl-dev expat-dev ffmpeg-dev libglade-dev gtk+-dev flam3-dev" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://community.electricsheep.org/" +WGET_URL="ftp://ftp.archlinux.org/other/electricsheep/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make -j 4 && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $_pkg/* $fs/ + rm -r $fs/usr/share/man + rm $fs/usr/share/electricsheep/electricsheep-wait.avi +} + diff -r 4f69e201b1c3 -r c878b368c741 electricsheep/stuff/electricsheep.desktop --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/electricsheep/stuff/electricsheep.desktop Sun Oct 31 14:37:40 2010 +0100 @@ -0,0 +1,10 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=ElectricSheep +Comment=Electric Sheep is a distributed screen-saver that harnesses idle computers into a render farm with the purpose of animating and evolving artificial life-forms. +Exec=electricsheep +StartupNotify=false +Terminal=false +Icon=electricsheep.png +Type=Application +Categories=Graphics diff -r 4f69e201b1c3 -r c878b368c741 flam3-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flam3-dev/receipt Sun Oct 31 14:37:40 2010 +0100 @@ -0,0 +1,18 @@ +# SliTaz package receipt. + +PACKAGE="flam3-dev" +VERSION="2.7.18" +CATEGORY="development" +SHORT_DESC="Tools to create/display fractal flames: algorithmically generated images and animations (devel files)" +MAINTAINER="gokhlayeh@slitaz.org" +WANTED="flam3" +WEB_SITE="http://flam3.com/" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/lib $fs/usr + cp -a $_pkg/usr/include $fs/usr +} + diff -r 4f69e201b1c3 -r c878b368c741 flam3/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flam3/receipt Sun Oct 31 14:37:40 2010 +0100 @@ -0,0 +1,34 @@ +# SliTaz package receipt. + +PACKAGE="flam3" +VERSION="2.7.18" +CATEGORY="graphics" +SHORT_DESC="Tools to create/display fractal flames: algorithmically generated images and animations" +MAINTAINER="gokhlayeh@slitaz.org" +DEPENDS="expat libjpeg libpng libxml2" +BUILD_DEPENDS="expat-dev jpeg-dev libpng-dev libxml2-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://flam3.com/" +WGET_URL="http://flam3.com/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make -j 4 && make DESTDIR=$PWD/_pkg install +} + +# 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/share/flam3 $fs/usr/share/ +} + +