diff options
author | Aaron Bauman <bman@gentoo.org> | 2018-05-29 11:10:01 -0400 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2018-05-29 16:10:09 -0400 |
commit | 13db096d73d41ef74a2fa172dca61ea610e639e1 (patch) | |
tree | c91e1366e4db91bab42a2f103cbe40603bdee648 /mail-filter | |
parent | dev-db/tokyocabinet: drop EAPI=2 ebuild (diff) | |
download | gentoo-13db096d73d41ef74a2fa172dca61ea610e639e1.tar.gz gentoo-13db096d73d41ef74a2fa172dca61ea610e639e1.tar.bz2 gentoo-13db096d73d41ef74a2fa172dca61ea610e639e1.zip |
mail-filter/couriersrs: bump EAPI and drop eutils
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'mail-filter')
-rw-r--r-- | mail-filter/couriersrs/couriersrs-0.1.2.ebuild | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/mail-filter/couriersrs/couriersrs-0.1.2.ebuild b/mail-filter/couriersrs/couriersrs-0.1.2.ebuild index 80b3a5a32511..92219e60bf93 100644 --- a/mail-filter/couriersrs/couriersrs-0.1.2.ebuild +++ b/mail-filter/couriersrs/couriersrs-0.1.2.ebuild @@ -1,28 +1,27 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="2" +EAPI=6 -inherit autotools eutils +inherit autotools DESCRIPTION="SRS (Sender Rewriting Scheme) wrapper for the courier MTA" HOMEPAGE="http://couriersrs.com/" SRC_URI="http://couriersrs.com/download/${P}.tar.gz" + LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~x86" IUSE="" + DEPEND="dev-libs/popt mail-filter/libsrs2" RDEPEND="${DEPEND}" +PATCHES=( "${FILESDIR}/${P}-automake-fixes.diff" ) + src_prepare() { + default rm m4/*.m4 - epatch "${FILESDIR}/${P}-automake-fixes.diff" AT_M4DIR="m4" eautoreconf } - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS NEWS ChangeLog -} |