commit: 5f29f78c0e1c206f9d3e66a43fdf6134d1fdbb44
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 5 05:55:20 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 5 05:56:09 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f29f78c
net-analyzer/ipv6toolkit: style tweaks
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-analyzer/ipv6toolkit/ipv6toolkit-2.2.ebuild | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/net-analyzer/ipv6toolkit/ipv6toolkit-2.2.ebuild
b/net-analyzer/ipv6toolkit/ipv6toolkit-2.2.ebuild
index b0b586a689c0..1570fd66980e 100644
--- a/net-analyzer/ipv6toolkit/ipv6toolkit-2.2.ebuild
+++ b/net-analyzer/ipv6toolkit/ipv6toolkit-2.2.ebuild
@@ -2,6 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=8
+
inherit toolchain-funcs
DESCRIPTION="Set of IPv6 security/trouble-shooting tools to send arbitrary
IPv6-based packets"
@@ -20,19 +21,18 @@ RDEPEND="
sys-apps/hwdata
"
-src_prepare() {
- default
-}
-
src_compile() {
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" PREFIX="${EPREFIX}/usr"
- sed -i -e "s:ipv6toolkit/oui.txt:hwdata/oui.txt:" data/ipv6toolkit.conf
manuals/ipv6toolkit.conf.5 || die
+
+ sed -i -e "s:ipv6toolkit/oui.txt:hwdata/oui.txt:" \
+ data/ipv6toolkit.conf \
+ manuals/ipv6toolkit.conf.5 || die
}
src_install() {
dodir /etc
emake install DESTDIR="${D}" PREFIX="${EPREFIX}/usr"
- #remove the included oui file
+ # Remove the included oui file
rm "${ED}"/usr/share/ipv6toolkit/oui.txt || die
dodoc CHANGES.TXT README.TXT
}