commit: a2bffd02321901c7237635515a4f486333544b30
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 2 00:43:47 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 3 16:10:31 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2bffd02
net-analyzer/tleds: port to EAPI 7, eutils--
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-analyzer/tleds/files/tleds.conf.d | 2 +-
net-analyzer/tleds/tleds-1.05_beta11-r2.ebuild | 21 ++++++++++++---------
2 files changed, 13 insertions(+), 10 deletions(-)
diff --git a/net-analyzer/tleds/files/tleds.conf.d
b/net-analyzer/tleds/files/tleds.conf.d
index 477408d30ed..cfca606342c 100644
--- a/net-analyzer/tleds/files/tleds.conf.d
+++ b/net-analyzer/tleds/files/tleds.conf.d
@@ -1,4 +1,4 @@
-# Copyright 2003-2004 Gentoo Foundation
+# Copyright 2003-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
IFACE="eth0"
diff --git a/net-analyzer/tleds/tleds-1.05_beta11-r2.ebuild
b/net-analyzer/tleds/tleds-1.05_beta11-r2.ebuild
index 56abdfd1f3c..34d41cc96fc 100644
--- a/net-analyzer/tleds/tleds-1.05_beta11-r2.ebuild
+++ b/net-analyzer/tleds/tleds-1.05_beta11-r2.ebuild
@@ -1,17 +1,18 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
-inherit eutils toolchain-funcs
+EAPI=7
+
+inherit toolchain-funcs
MY_P="${P/_/}"
-S="${WORKDIR}/${MY_P/eta11/}"
DESCRIPTION="Blinks keyboard LEDs indicating outgoing and incoming network
packets on selected network interface"
HOMEPAGE="http://www.hut.fi/~jlohikos/tleds_orig.html"
SRC_URI="
http://www.hut.fi/~jlohikos/tleds/public/${MY_P/11/10}.tgz
http://www.hut.fi/~jlohikos/tleds/public/${MY_P}.patch.bz2
"
+S="${WORKDIR}/${MY_P/eta11/}"
LICENSE="GPL-2"
SLOT="0"
@@ -22,14 +23,16 @@ DEPEND="X? ( x11-libs/libX11 )"
RDEPEND="${DEPEND}"
src_prepare() {
- # code patches
- epatch \
- "${WORKDIR}"/${MY_P}.patch \
- "${FILESDIR}"/${P}-gentoo.patch
+ default
+
+ eapply "${WORKDIR}"/${MY_P}.patch
+ eapply "${FILESDIR}"/${P}-gentoo.patch
}
src_compile() {
- emake CC=$(tc-getCC) $(usex X all tleds)
+ emake \
+ CC="$(tc-getCC)" \
+ $(usex X all tleds)
}
src_install() {