Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in mail-filter/tmda: tmda-1.1.12.ebuild ChangeLog
Date: Thu, 07 Jan 2010 14:37:26
Message-Id: E1NStUK-0005W8-UC@stork.gentoo.org
1 patrick 10/01/07 14:37:24
2
3 Modified: ChangeLog
4 Added: tmda-1.1.12.ebuild
5 Log:
6 Bump for #149173, thanks to Sean C. McCord for some fixups
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.17 mail-filter/tmda/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/tmda/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/tmda/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/tmda/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/mail-filter/tmda/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 22 Feb 2007 01:04:04 -0000 1.16
23 +++ ChangeLog 7 Jan 2010 14:37:24 -0000 1.17
24 @@ -1,6 +1,11 @@
25 # ChangeLog for mail-filter/tmda
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/mail-filter/tmda/ChangeLog,v 1.16 2007/02/22 01:04:04 peper Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/mail-filter/tmda/ChangeLog,v 1.17 2010/01/07 14:37:24 patrick Exp $
30 +
31 +*tmda-1.1.12 (07 Jan 2010)
32 +
33 + 07 Jan 2010; Patrick Lauer <patrick@g.o> +tmda-1.1.12.ebuild:
34 + Bump for #149173, thanks to Sean C. McCord for some fixups
35
36 22 Feb 2007; Piotr JaroszyƄski <peper@g.o> ChangeLog:
37 Transition to Manifest2.
38
39
40
41 1.1 mail-filter/tmda/tmda-1.1.12.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/tmda/tmda-1.1.12.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/mail-filter/tmda/tmda-1.1.12.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tmda-1.1.12.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/mail-filter/tmda/tmda-1.1.12.ebuild,v 1.1 2010/01/07 14:37:24 patrick Exp $
51
52 inherit eutils
53
54 DESCRIPTION="Python-based SPAM reduction system"
55 HOMEPAGE="http://www.tmda.net/"
56 LICENSE="GPL-2"
57
58 DEPEND=">=dev-lang/python-2.2
59 virtual/mta"
60
61 SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
64 IUSE=""
65
66 src_compile () {
67 # Do not open /dev/tty when in batch mode. (bug #67150) -ticho
68 epatch ${FILESDIR}/tmda-1.0-non-interactive-tty.patch
69
70 ./compileall || die "tmda compilation failed"
71 }
72
73 src_install () {
74 # Figure out python version
75 # below hack should be replaced w/ pkg-config, when we get it working
76 local pv=`python -V 2>&1 | sed -e 's:Python \([0-9].[0-9]\).*:\1:'`
77
78 # Executables
79 dobin bin/tmda-*
80
81 # The Python TMDA module
82 insinto "/usr/lib/python${pv}/site-packages/TMDA"
83 doins TMDA/*.py*
84 insinto "/usr/lib/python${pv}/site-packages/TMDA/Queue"
85 doins TMDA/Queue/*.py*
86 insinto "/usr/lib/python${pv}/site-packages/TMDA/pythonlib/email"
87 doins TMDA/pythonlib/email/*.py*
88 insinto "/usr/lib/python${pv}/site-packages/TMDA/pythonlib/email/mime"
89 doins TMDA/pythonlib/email/mime/*.py*
90
91 # The templates
92 insinto /etc/tmda
93 doins templates/*.txt
94
95 # Documentation
96 dodoc COPYING ChangeLog README THANKS UPGRADE CRYPTO CODENAMES INSTALL
97 dohtml -r htdocs/*.html
98 dohtml -r htdocs/img
99
100 # Contributed binaries and stuff
101 cd ${S}/contrib
102
103 exeinto /usr/lib/tmda/contrib
104 doexe collectaddys def2html printcdb printdbm \
105 sendit.sh smtp-check-sender update-internaldomains vadduser-tmda \
106 vmailmgr-vdir.sh vpopmail-vdir.sh wrapfd3.sh
107
108 insinto /usr/lib/tmda/contrib
109 doins ChangeLog tmda.el tmda.spec \
110 tofmipd.init tofmipd.sysconfig vtmdarc
111
112 insinto /usr/lib/tmda/contrib/dot-tmda
113 doins dot-tmda/*
114 }