diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-08-24 06:55:10 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-08-24 06:55:10 +0000 |
commit | 22bff5b07aec905fa22daae075ab8d59ad7862cb (patch) | |
tree | 8928a75d7ea248072a7df9a50e53659f69558f8e /net-mail | |
parent | Initial version of the handly little presentation tool. (diff) | |
download | gentoo-2-22bff5b07aec905fa22daae075ab8d59ad7862cb.tar.gz gentoo-2-22bff5b07aec905fa22daae075ab8d59ad7862cb.tar.bz2 gentoo-2-22bff5b07aec905fa22daae075ab8d59ad7862cb.zip |
Version bump.
(Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/mairix/ChangeLog | 9 | ||||
-rw-r--r-- | net-mail/mairix/mairix-0.23.ebuild | 50 |
2 files changed, 57 insertions, 2 deletions
diff --git a/net-mail/mairix/ChangeLog b/net-mail/mairix/ChangeLog index 4f241b49228c..008f54e719db 100644 --- a/net-mail/mairix/ChangeLog +++ b/net-mail/mairix/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-mail/mairix -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mairix/ChangeLog,v 1.33 2010/10/24 17:16:45 radhermit Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/mairix/ChangeLog,v 1.34 2011/08/24 06:55:10 radhermit Exp $ + +*mairix-0.23 (24 Aug 2011) + + 24 Aug 2011; Tim Harder <radhermit@gentoo.org> +mairix-0.23.ebuild: + Version bump. 24 Oct 2010; Tim Harder <radhermit@gentoo.org> -mairix-0.19.ebuild, -mairix-0.21.ebuild: diff --git a/net-mail/mairix/mairix-0.23.ebuild b/net-mail/mairix/mairix-0.23.ebuild new file mode 100644 index 000000000000..e5dbc01ca130 --- /dev/null +++ b/net-mail/mairix/mairix-0.23.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/mairix/mairix-0.23.ebuild,v 1.1 2011/08/24 06:55:10 radhermit Exp $ + +EAPI=4 + +inherit toolchain-funcs eutils + +DESCRIPTION="Indexes and searches Maildir/MH folders" +HOMEPAGE="http://www.rpcurnow.force9.co.uk/mairix/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz + gnus? ( mirror://gentoo/${P}-gnus-marks-propagation.patch.gz )" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~s390 ~sh ~sparc ~x86 ~x86-macos" + +IUSE="zlib bzip2 gnus" + +RDEPEND="zlib? ( sys-libs/zlib ) + bzip2? ( app-arch/bzip2 )" + +DEPEND="${RDEPEND} + sys-devel/flex + sys-devel/bison" + +# Fail on various locales +RESTRICT="test" + +src_prepare() { + # econf would fail with unknown options. + # Now it only prints "Unrecognized option". + sed -i -e "/^[[:space:]]*bad_options=yes/d" "${S}"/configure || die "sed failed" + + # Add support for gnus marks propagation (bug #274578) + use gnus && epatch "${WORKDIR}"/${P}-gnus-marks-propagation.patch +} + +src_configure() { + tc-export CC + econf \ + $(use_enable zlib gzip-mbox) \ + $(use_enable bzip2 bzip-mbox) +} + +src_install() { + dobin mairix + doman mairix.1 mairixrc.5 + dodoc NEWS README dotmairixrc.eg +} |