Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/mairix/
Date: Sun, 01 Jul 2018 04:45:54
Message-Id: 1530419999.a05b0dab35a43fb013688db5326961cc16a711e4.radhermit@gentoo
1 commit: a05b0dab35a43fb013688db5326961cc16a711e4
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 1 04:39:59 2018 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 1 04:39:59 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a05b0dab
7
8 net-mail/mairix: version bump to 0.24
9
10 net-mail/mairix/Manifest | 1 +
11 net-mail/mairix/mairix-0.24.ebuild | 47 ++++++++++++++++++++++++++++++++++++++
12 2 files changed, 48 insertions(+)
13
14 diff --git a/net-mail/mairix/Manifest b/net-mail/mairix/Manifest
15 index 83b7991d8f5..8c6a2ed3f75 100644
16 --- a/net-mail/mairix/Manifest
17 +++ b/net-mail/mairix/Manifest
18 @@ -1,2 +1,3 @@
19 DIST mairix-0.23-gnus-marks-propagation.patch.gz 3401 BLAKE2B 258e1dec608c896d7ffdff4ebffe959703ef371bcd9c3dddad44793cf43377dec78e289517c3bc5cef3f51d56eb0996c1f873c7ed092ca4d0084b50b35d10a9f SHA512 89572c1dc1913b974461a3cd75787d9360cabfaf08dc987ccf2ae5519dcf8d12935e22ca5ff3e2e58038f04b818884bab305a11393ca99bb6dad86018d863d1c
20 DIST mairix-0.23.tar.gz 193726 BLAKE2B e1de3f7d8b81a23a87845fe4cc285ee46232a14eea77e9f8191dc26fbaddd435d1a1e194158b13542ef201851cc03e32eece2e7b16fcd6be71595f60f82e10d1 SHA512 3ea372304e91eed6127d8e71cf0970c9380e4dec96fd9ad38a6deb1af455ae6eb604dfbb2ec372cbb940beb8459c39d8620af12a996d7f6a37e893fbb588e61b
21 +DIST mairix-0.24.tar.gz 206903 BLAKE2B b18832dbd5d570d428c454ade693ab0746b6e601d94a9b6d5dd4ca81356cbaecaec5c88623fe5bd612e94112dc4b6f16929fc210ce3c5c8e1e5d2a0c62309d79 SHA512 3e0af50c2c5857c5e1661e1be131c9c184377947b2ed884d1d9faa6d8bd88c17a7b7a29e105e65c990d2ede5d9fff679e57e83c4b8eedf2870493395e3ec8cf3
22
23 diff --git a/net-mail/mairix/mairix-0.24.ebuild b/net-mail/mairix/mairix-0.24.ebuild
24 new file mode 100644
25 index 00000000000..2fb5df966c5
26 --- /dev/null
27 +++ b/net-mail/mairix/mairix-0.24.ebuild
28 @@ -0,0 +1,47 @@
29 +# Copyright 1999-2018 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +
32 +EAPI=6
33 +
34 +inherit toolchain-funcs
35 +
36 +DESCRIPTION="Indexes and searches Maildir/MH folders"
37 +HOMEPAGE="http://www.rpcurnow.force9.co.uk/mairix/"
38 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
39 +
40 +LICENSE="GPL-2"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~ppc ~x86 ~x86-macos"
43 +
44 +IUSE="zlib bzip2"
45 +
46 +RDEPEND="zlib? ( sys-libs/zlib )
47 + bzip2? ( app-arch/bzip2 )"
48 +
49 +DEPEND="${RDEPEND}
50 + sys-devel/flex
51 + sys-devel/bison"
52 +
53 +# Fail on various locales
54 +RESTRICT="test"
55 +
56 +src_prepare() {
57 + default
58 +
59 + # econf would fail with unknown options.
60 + # Now it only prints "Unrecognized option".
61 + sed -i -e "/^[[:space:]]*bad_options=yes/d" "${S}"/configure || die "sed failed"
62 +}
63 +
64 +src_configure() {
65 + tc-export CC
66 + econf \
67 + $(use_enable zlib gzip-mbox) \
68 + $(use_enable bzip2 bzip-mbox)
69 +}
70 +
71 +src_install() {
72 + dobin mairix
73 + doman mairix.1 mairixrc.5
74 + dodoc NEWS README dotmairixrc.eg
75 +}