Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/dovecot-antispam/
Date: Tue, 02 Feb 2016 23:40:08
Message-Id: 1454456214.34c577c1c3ed5514475297d85722b005379391fe.radhermit@gentoo
1 commit: 34c577c1c3ed5514475297d85722b005379391fe
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 2 23:35:47 2016 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 2 23:36:54 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34c577c1
7
8 mail-filter/dovecot-antispam: use system txt2man
9
10 Fixes bug #565946.
11
12 .../dovecot-antispam/dovecot-antispam-2.0_pre20130429.ebuild | 11 ++++++++---
13 1 file changed, 8 insertions(+), 3 deletions(-)
14
15 diff --git a/mail-filter/dovecot-antispam/dovecot-antispam-2.0_pre20130429.ebuild b/mail-filter/dovecot-antispam/dovecot-antispam-2.0_pre20130429.ebuild
16 index fca9408..1038b37 100644
17 --- a/mail-filter/dovecot-antispam/dovecot-antispam-2.0_pre20130429.ebuild
18 +++ b/mail-filter/dovecot-antispam/dovecot-antispam-2.0_pre20130429.ebuild
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2014 Gentoo Foundation
21 +# Copyright 1999-2016 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23 # $Id$
24
25 @@ -14,12 +14,17 @@ LICENSE="GPL-2"
26 SLOT="0"
27 KEYWORDS="~amd64 ~arm ~x86"
28
29 -DEPEND=">=net-mail/dovecot-2.1.16"
30 -RDEPEND="${DEPEND}"
31 +RDEPEND=">=net-mail/dovecot-2.1.16"
32 +DEPEND="${RDEPEND}
33 + app-text/txt2man"
34
35 DOCS=( README )
36
37 src_prepare() {
38 + # use system txt2man
39 + rm doc/txt2man || die
40 + sed -i 's#./txt2man#txt2man#' doc/Makefile || die
41 +
42 AT_M4DIR="m4" eautoreconf
43 }