blob: 9eca27e095d9bee837963f719be3a3d08fb82aab (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/t-prot/t-prot-1.98.ebuild,v 1.1 2005/03/06 23:25:18 tove Exp $
inherit eutils
DESCRIPTION="TOFU protection - display filter for RFC822 messages"
HOMEPAGE="http://www.escape.de/users/tolot/mutt/"
SRC_URI="http://www.escape.de/users/tolot/mutt/t-prot/downloads/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RDEPEND="dev-lang/perl
dev-perl/Getopt-Mixed"
src_unpack() {
unpack ${A}
cd ${S}
if has_version '>=mail-client/mutt-1.5.7' ; then
epatch ${S}/contrib/t-prot-r1.*-mutt157.diff
fi
if has_version '~app-crypt/gnupg-1.2.6' ; then
epatch ${S}/contrib/t-prot-r1.*-gpg126.diff
fi
}
src_install() {
dobin t-prot || die "dobin failed."
doman t-prot.1 || die "doman failed."
dodoc BUGS ChangeLog README TODO || die "dodoc failed."
docinto contrib
dodoc contrib/{README.examples,muttrc.t-prot,t-prot.sl,filter_innd.pl} \
|| die "dodoc contrib failed"
}
|