diff options
author | Hanno Böck <hanno@gentoo.org> | 2024-07-20 17:30:57 +0200 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2024-07-20 17:31:01 +0200 |
commit | c974a68e32eb33287f8c2590f639f4b3b113a464 (patch) | |
tree | 910c111ecd75aed1b34c7785e11e9b625903bb21 /mail-filter | |
parent | profiles: unmask couriersrs (diff) | |
download | gentoo-c974a68e32eb33287f8c2590f639f4b3b113a464.tar.gz gentoo-c974a68e32eb33287f8c2590f639f4b3b113a464.tar.bz2 gentoo-c974a68e32eb33287f8c2590f639f4b3b113a464.zip |
mail-filter/couriersrs: update EAPI 6 -> 8
Signed-off-by: Hanno Böck <hanno@gentoo.org>
Diffstat (limited to 'mail-filter')
-rw-r--r-- | mail-filter/couriersrs/couriersrs-0.1.2-r1.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/mail-filter/couriersrs/couriersrs-0.1.2-r1.ebuild b/mail-filter/couriersrs/couriersrs-0.1.2-r1.ebuild new file mode 100644 index 000000000000..0bb5b4ca7e71 --- /dev/null +++ b/mail-filter/couriersrs/couriersrs-0.1.2-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="SRS (Sender Rewriting Scheme) wrapper for the courier MTA" +HOMEPAGE="https://couriersrs.com/" +SRC_URI="https://github.com/mawis/courier-srs/releases/download/${PV}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="dev-libs/popt + mail-filter/libsrs2" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}/${P}-automake-fixes.diff" ) + +src_prepare() { + default + rm m4/*.m4 || die "rm failed!" + AT_M4DIR="m4" eautoreconf +} |