From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A993D138331 for ; Tue, 29 May 2018 20:10:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 71317E0788; Tue, 29 May 2018 20:10:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4BF62E0788 for ; Tue, 29 May 2018 20:10:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C2C9C335C63 for ; Tue, 29 May 2018 20:10:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4A64C2B7 for ; Tue, 29 May 2018 20:10:34 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1527624609.13db096d73d41ef74a2fa172dca61ea610e639e1.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/couriersrs/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-filter/couriersrs/couriersrs-0.1.2.ebuild X-VCS-Directories: mail-filter/couriersrs/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 13db096d73d41ef74a2fa172dca61ea610e639e1 X-VCS-Branch: master Date: Tue, 29 May 2018 20:10:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4c87eacc-4655-4377-ab53-06c50017037e X-Archives-Hash: 18e13d657c9e2f79f8fa63270005aa21 commit: 13db096d73d41ef74a2fa172dca61ea610e639e1 Author: Aaron Bauman gentoo org> AuthorDate: Tue May 29 15:10:01 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Tue May 29 20:10:09 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13db096d mail-filter/couriersrs: bump EAPI and drop eutils Package-Manager: Portage-2.3.40, Repoman-2.3.9 mail-filter/couriersrs/couriersrs-0.1.2.ebuild | 17 ++++++++--------- 1 file 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 80b3a5a3251..92219e60bf9 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 -}