From eecd75a62239257eb2235bfe8697c73887a9a080 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 29 Jan 2024 00:57:18 +0000 Subject: gentoo auto-resync : 29:01:2024 - 00:57:18 --- net-mail/Manifest.gz | Bin 14382 -> 14378 bytes net-mail/mairix/Manifest | 2 +- net-mail/mairix/mairix-0.24-r1.ebuild | 51 ++++++++++++++++++++++++++++++++++ net-mail/mairix/mairix-0.24.ebuild | 47 ------------------------------- 4 files changed, 52 insertions(+), 48 deletions(-) create mode 100644 net-mail/mairix/mairix-0.24-r1.ebuild delete mode 100644 net-mail/mairix/mairix-0.24.ebuild (limited to 'net-mail') diff --git a/net-mail/Manifest.gz b/net-mail/Manifest.gz index 84662213d498..74e43bada7f1 100644 Binary files a/net-mail/Manifest.gz and b/net-mail/Manifest.gz differ diff --git a/net-mail/mairix/Manifest b/net-mail/mairix/Manifest index dd6e52f3a3b4..402e4bf1427d 100644 --- a/net-mail/mairix/Manifest +++ b/net-mail/mairix/Manifest @@ -1,3 +1,3 @@ DIST mairix-0.24.tar.gz 206903 BLAKE2B b18832dbd5d570d428c454ade693ab0746b6e601d94a9b6d5dd4ca81356cbaecaec5c88623fe5bd612e94112dc4b6f16929fc210ce3c5c8e1e5d2a0c62309d79 SHA512 3e0af50c2c5857c5e1661e1be131c9c184377947b2ed884d1d9faa6d8bd88c17a7b7a29e105e65c990d2ede5d9fff679e57e83c4b8eedf2870493395e3ec8cf3 -EBUILD mairix-0.24.ebuild 935 BLAKE2B 672a1c538586d18718b0dc0cd7533465d9769158f608c832f4adc7451f15f1fb35054915b030b240ea98c26e7167ee46f3d6fefee514d95e4addb191c6fc4e5b SHA512 4e3e29dd22a1f4d6bdb95ccee9cb2aa67968a63b26ec4ff57731a82e62d443868a884d61cec8e8bce14e159af98d4d5ba86a62a85b67a94599b4ab4d4f165ee6 +EBUILD mairix-0.24-r1.ebuild 959 BLAKE2B 9652b81c11a6ed42c4a519e21c9efa86d690a9db883a66edfc873c8f66f33def3608d0580eaee415c0236fa44d422e0f1a0283d4fffe10c6ebe1f48fb669ca15 SHA512 d271e69d958e867ce421b94d757b697d48c25230d5e3b189c24f8586011c6b90c7bdc43be6d2a50bf990d2a469d1a9655dcd5b401ca580c6f422b0e68e8bcd05 MISC metadata.xml 244 BLAKE2B 8c6dc18220f9a688931b77c1193a6bf8e1bdcbe8ef5b5331e5a72cbc5a340d146bb203e82d3798fd5457ae072b74e7035abf38acdff53a28c990fa16664c49fc SHA512 2c148534189832be99dee382f7641ff0eafc0ad11617493a2a11faf146303d74f95b5923f6c97cdf2f77477e640901d4fc586461714f0f04cd6740328070e19f diff --git a/net-mail/mairix/mairix-0.24-r1.ebuild b/net-mail/mairix/mairix-0.24-r1.ebuild new file mode 100644 index 000000000000..ff491e5ffc50 --- /dev/null +++ b/net-mail/mairix/mairix-0.24-r1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Indexes and searches Maildir/MH folders" +HOMEPAGE="http://www.rpcurnow.force9.co.uk/mairix/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ppc x86" + +IUSE="zlib bzip2" + +RDEPEND=" + dev-libs/openssl:= + zlib? ( sys-libs/zlib ) + bzip2? ( app-arch/bzip2 ) +" + +DEPEND="${RDEPEND} + app-alternatives/lex + app-alternatives/yacc +" + +# Fail on various locales +RESTRICT="test" + +src_prepare() { + default + + # 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" +} + +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 +} diff --git a/net-mail/mairix/mairix-0.24.ebuild b/net-mail/mairix/mairix-0.24.ebuild deleted file mode 100644 index 29589d0f3a64..000000000000 --- a/net-mail/mairix/mairix-0.24.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -DESCRIPTION="Indexes and searches Maildir/MH folders" -HOMEPAGE="http://www.rpcurnow.force9.co.uk/mairix/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" - -IUSE="zlib bzip2" - -RDEPEND="zlib? ( sys-libs/zlib ) - bzip2? ( app-arch/bzip2 )" - -DEPEND="${RDEPEND} - app-alternatives/lex - app-alternatives/yacc" - -# Fail on various locales -RESTRICT="test" - -src_prepare() { - default - - # 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" -} - -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 -} -- cgit v1.2.3