diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-11-08 19:09:58 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2024-11-08 19:10:33 +0100 |
commit | 881a476eccfb6374e445d923a77fb7bacc24d077 (patch) | |
tree | 2285c71f270a5b68e06a7e3384b88ab64c6e5095 /net-analyzer | |
parent | app-editors/vscode: add 1.95.2 (diff) | |
download | gentoo-881a476eccfb6374e445d923a77fb7bacc24d077.tar.gz gentoo-881a476eccfb6374e445d923a77fb7bacc24d077.tar.bz2 gentoo-881a476eccfb6374e445d923a77fb7bacc24d077.zip |
net-analyzer/portmon: add eautoreconf for modern C
Closes: https://bugs.gentoo.org/900036
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/portmon/portmon-2.0-r2.ebuild (renamed from net-analyzer/portmon/portmon-2.0-r1.ebuild) | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/net-analyzer/portmon/portmon-2.0-r1.ebuild b/net-analyzer/portmon/portmon-2.0-r2.ebuild index 5c02c83701b0..ce593ab853a8 100644 --- a/net-analyzer/portmon/portmon-2.0-r1.ebuild +++ b/net-analyzer/portmon/portmon-2.0-r2.ebuild @@ -1,7 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 + +inherit autotools DESCRIPTION="Portmon is a network service monitoring daemon" HOMEPAGE="http://aboleo.net/software/portmon/" @@ -15,6 +17,11 @@ PATCHES=( "${FILESDIR}"/${P}-fno-common.patch ) +src_prepare() { + default + eautoreconf +} + src_configure() { econf --sysconfdir=/etc/portmon } |