diff options
author | Sam James <sam@gentoo.org> | 2021-02-06 22:14:10 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-02-06 22:14:10 +0000 |
commit | 1dc1e64c80f0cc7011fecdda7f42ae4555a2d6e1 (patch) | |
tree | fd030a653d3be64d2412e4bed9c2379258237cbd /net-mail | |
parent | sci-electronics/gnucap: add missing sys-libs/readline dep (diff) | |
download | gentoo-1dc1e64c80f0cc7011fecdda7f42ae4555a2d6e1.tar.gz gentoo-1dc1e64c80f0cc7011fecdda7f42ae4555a2d6e1.tar.bz2 gentoo-1dc1e64c80f0cc7011fecdda7f42ae4555a2d6e1.zip |
net-mail/pfqueue: EAPI 7
Closes: https://bugs.gentoo.org/675232
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/pfqueue/pfqueue-0.5.6-r1.ebuild (renamed from net-mail/pfqueue/pfqueue-0.5.6.ebuild) | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/net-mail/pfqueue/pfqueue-0.5.6.ebuild b/net-mail/pfqueue/pfqueue-0.5.6-r1.ebuild index 4ba93f8746ba..ef394d85a724 100644 --- a/net-mail/pfqueue/pfqueue-0.5.6.ebuild +++ b/net-mail/pfqueue/pfqueue-0.5.6-r1.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit autotools eutils ltprune toolchain-funcs +EAPI=7 + +inherit autotools DESCRIPTION="pfqueue is an ncurses console-based tool for managing Postfix queued messages" HOMEPAGE="http://pfqueue.sourceforge.net/" @@ -11,14 +12,19 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc x86" -RDEPEND=" - sys-libs/ncurses - sys-devel/libtool -" +BDEPEND="sys-devel/libtool" +RDEPEND="sys-libs/ncurses:=" DEPEND="${RDEPEND}" +DOCS=( README ChangeLog NEWS TODO AUTHORS ) + +PATCHES=( + "${FILESDIR}"/${P}-tinfo.patch +) + src_prepare() { - epatch "${FILESDIR}"/${P}-tinfo.patch + default + eautoreconf } @@ -26,9 +32,8 @@ src_configure() { econf --disable-static } -DOCS=( README ChangeLog NEWS TODO AUTHORS ) - src_install() { default - prune_libtool_files + + find "${ED}" -name '*.la' -delete || die } |