# HG changeset patch # User Christophe Lincoln # Date 1197983548 -3600 # Node ID 0fcd9fbe553c8a08d40606827ddf763c817822a4 # Parent b5491484fd8d05aa6f10da60ee26ccc8cd1dfbe7 Add : sylpheed + bogofilter (anti spam) diff -r b5491484fd8d -r 0fcd9fbe553c bogofilter/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bogofilter/receipt Tue Dec 18 14:12:28 2007 +0100 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="bogofilter" +VERSION="1.1.6" +CATEGORY="extra" +SHORT_DESC="Mail filter that classifies mail as spam or ham." +MAINTAINER="pankso@slitaz.org" +DEPENDS="sqlite" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://bogofilter.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --with-database=sqlite3 \ + --prefix=/usr --sysconfdir=/etc/bogofilter \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man $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 + cp -a $_pkg/etc $fs + strip -s $fs/usr/bin/* 2>/dev/null +} diff -r b5491484fd8d -r 0fcd9fbe553c sylpheed/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sylpheed/receipt Tue Dec 18 14:12:28 2007 +0100 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="sylpheed" +VERSION="2.4.7" +CATEGORY="extra" +SHORT_DESC="Simple, lightweight but featureful, and easy-to-use e-mail client" +MAINTAINER="pankso@slitaz.org" +DEPENDS="gtk+" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://sylpheed.sraoss.jp/en/" +WGET_URL="http://sylpheed.sraoss.jp/sylpheed/v2.4/$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 + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share/pixmaps $fs/usr/share/locale + cp -a $_pkg/usr/bin $fs/usr + cp -a $src/sylpheed.png $fs/usr/share/pixmaps + cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale + strip -s $fs/usr/bin/* +}