blob: cee128b2187b45d43c3abd97d5de815ae1614782 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 2002 Arcady Genkin <agenkin@thpoon.com>
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-mail/tmda/tmda-0.58.ebuild,v 1.3 2002/08/14 12:05:25 murphy Exp $
S="${WORKDIR}/${P}"
DESCRIPTION="Python-based SPAM reduction system"
HOMEPAGE="http://software.libertine.org/tmda/index.html"
SRC_URI="http://software.libertine.org/tmda/releases/${P}.tgz
http://software.libertine.org/tmda/releases/old/${P}.tgz"
DEPEND=">=dev-lang/python-2.0
virtual/mta"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc sparc64"
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
}
|