diff options
author | Arcady Genkin <agenkin@gentoo.org> | 2002-04-02 05:00:05 +0000 |
---|---|---|
committer | Arcady Genkin <agenkin@gentoo.org> | 2002-04-02 05:00:05 +0000 |
commit | e1d9f30ba07056af5fb2d1edb1e4dd6746ec501c (patch) | |
tree | ec52c30a674f9244638e71a5cf0dc6870fa1a151 /net-mail | |
parent | new openmosix kernel (diff) | |
download | gentoo-2-e1d9f30ba07056af5fb2d1edb1e4dd6746ec501c.tar.gz gentoo-2-e1d9f30ba07056af5fb2d1edb1e4dd6746ec501c.tar.bz2 gentoo-2-e1d9f30ba07056af5fb2d1edb1e4dd6746ec501c.zip |
Version 0.50 is out!
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/tmda/ChangeLog | 8 | ||||
-rw-r--r-- | net-mail/tmda/files/digest-tmda-0.50 | 1 | ||||
-rw-r--r-- | net-mail/tmda/tmda-0.50.ebuild | 48 |
3 files changed, 56 insertions, 1 deletions
diff --git a/net-mail/tmda/ChangeLog b/net-mail/tmda/ChangeLog index 0d8153d20277..b8f70e20ac2a 100644 --- a/net-mail/tmda/ChangeLog +++ b/net-mail/tmda/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-mail/tmda # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-mail/tmda/ChangeLog,v 1.6 2002/03/16 07:23:27 agenkin Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/tmda/ChangeLog,v 1.7 2002/04/02 05:00:04 agenkin Exp $ + +*tmda-0.50 ( 1 Apr 2002 ) + + 1 Apr 2002; Arcady Genkin <agenkin@thpoon.com> tmda-0.50.ebuild : + + Version 0.50 is released. *tmda-0.49 ( 16 Mar 2002 ) diff --git a/net-mail/tmda/files/digest-tmda-0.50 b/net-mail/tmda/files/digest-tmda-0.50 new file mode 100644 index 000000000000..6167da892fd6 --- /dev/null +++ b/net-mail/tmda/files/digest-tmda-0.50 @@ -0,0 +1 @@ +MD5 7240f6f15a91b088a4ca85a1ce5f6d12 tmda-0.50.tgz 124555 diff --git a/net-mail/tmda/tmda-0.50.ebuild b/net-mail/tmda/tmda-0.50.ebuild new file mode 100644 index 000000000000..41f231795c9a --- /dev/null +++ b/net-mail/tmda/tmda-0.50.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Arcady Genkin <agenkin@thpoon.com> +# $Header: /var/cvsroot/gentoo-x86/net-mail/tmda/tmda-0.50.ebuild,v 1.1 2002/04/02 05:00:04 agenkin Exp $ + +DESCRIPTION="Python-based SPAM reduction system" +HOMEPAGE="http://software.libertine.org/tmda/index.html" + +SRC_URI="http://software.libertine.org/tmda/releases/${P}.tgz" +S="${WORKDIR}/${P}" + +DEPEND=">=dev-lang/python-2.0 + virtual/mta" + +src_compile() { + ./compileall || die +} + +src_install () { + # Figure out python version + # below hack should be replaced w/ pkg-config, when we get it working + local pv=`python -V 2>&1 | sed -e 's:Python \([0-9].[0-9]\).*:\1:'` + + # Executables + dobin bin/tmda-* + + # The Python TMDA module + insinto "/usr/lib/python${pv}/site-packages/TMDA" + doins TMDA/*.py* + + # The templates + insinto /etc/tmda + doins templates/*.txt + + # Documentation + dodoc COPYRIGHT ChangeLog README THANKS UPGRADE CRYPTO + dohtml -r htdocs/*.html + + # Contributed binaries and stuff + cd contrib + dodoc README.RELAY qmail-smtpd_auth.patch tmda.spec sample.tmdarc + exeinto /usr/lib/tmda/bin + doexe printcdb printdbm collectaddys + insinto /usr/lib/tmda + doins setup.pyc + exeinto /usr/lib/tmda + doexe setup.py +} |