diff options
author | Torsten Veller <tove@gentoo.org> | 2010-02-23 09:55:29 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2010-02-23 09:55:29 +0000 |
commit | b2a9c583a16c3b72b325e9229f9cc849f3653b27 (patch) | |
tree | df3ea76d41a12ed62bc7277fd28bba6d0dbb7d91 /net-mail | |
parent | Do not install ELF files in /usr/share wrt bug #295768 by flameeyes. (diff) | |
download | gentoo-2-b2a9c583a16c3b72b325e9229f9cc849f3653b27.tar.gz gentoo-2-b2a9c583a16c3b72b325e9229f9cc849f3653b27.tar.bz2 gentoo-2-b2a9c583a16c3b72b325e9229f9cc849f3653b27.zip |
Version bump
(Portage version: 2.2_rc63/cvs/Linux x86_64)
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/t-prot/ChangeLog | 7 | ||||
-rw-r--r-- | net-mail/t-prot/t-prot-2.15.ebuild | 33 |
2 files changed, 39 insertions, 1 deletions
diff --git a/net-mail/t-prot/ChangeLog b/net-mail/t-prot/ChangeLog index 1c0485d60f3f..106691a5ddc1 100644 --- a/net-mail/t-prot/ChangeLog +++ b/net-mail/t-prot/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-mail/t-prot # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/t-prot/ChangeLog,v 1.30 2010/01/19 07:45:58 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/t-prot/ChangeLog,v 1.31 2010/02/23 09:55:29 tove Exp $ + +*t-prot-2.15 (23 Feb 2010) + + 23 Feb 2010; Torsten Veller <tove@gentoo.org> +t-prot-2.15.ebuild: + Version bump *t-prot-2.12 (19 Jan 2010) diff --git a/net-mail/t-prot/t-prot-2.15.ebuild b/net-mail/t-prot/t-prot-2.15.ebuild new file mode 100644 index 000000000000..5f19af71fcdf --- /dev/null +++ b/net-mail/t-prot/t-prot-2.15.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/t-prot/t-prot-2.15.ebuild,v 1.1 2010/02/23 09:55:29 tove Exp $ + +EAPI=2 + +inherit eutils + +DESCRIPTION="TOFU protection - display filter for RFC822 messages" +HOMEPAGE="http://www.escape.de/~tolot/mutt/" +SRC_URI="http://www.escape.de/~tolot/mutt/t-prot/downloads/${P}.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="dev-lang/perl + dev-perl/Locale-gettext + dev-perl/Getopt-Mixed" + +src_prepare() { + epatch "${S}"/contrib/t-prot-r1.*-mutt*.diff +} + +src_install() { + dobin t-prot || die "dobin failed" + doman t-prot.1 || die "doman failed" + dodoc 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" +} |