net-misc/taptap: add missing include

Changed build process to lean more on portage infrastructure with
implicit emake rules instead of explicit edo that may be missing
compile or link flags.

Closes: https://bugs.gentoo.org/919877
Closes: https://bugs.gentoo.org/919058
Signed-off-by: NHOrus <jy6x2b32pie9@yahoo.com>
Closes: https://github.com/gentoo/gentoo/pull/40799
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
NHOrus
2025-02-27 21:59:22 +04:00
committed by Sam James
parent 7ac36f22a5
commit 31edbdb03c
2 changed files with 18 additions and 5 deletions

View File

@@ -0,0 +1,12 @@
Add missing include
https://bugs.gentoo.org/919058
--- a/taptap.c
+++ b/taptap.c
@@ -35,6 +35,7 @@
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#ifndef __NetBSD__
#include <linux/if.h>
#include <linux/if_tun.h>

View File

@@ -1,9 +1,9 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit edo toolchain-funcs
inherit toolchain-funcs
DESCRIPTION="Program to link two /dev/net/tun to form virtual ethernet"
HOMEPAGE="https://grumpf.hope-2000.org/"
@@ -13,15 +13,16 @@ S="${WORKDIR}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~sparc ~x86"
PATCHES=( "${FILESDIR}/${P}-missing-include.patch" )
src_unpack() {
cp "${DISTDIR}"/${P}.c ${P}.c || die
cp "${DISTDIR}/${P}.c" "${PN}.c" || die
}
src_compile() {
edo $(tc-getCC) ${CFLAGS} ${LDFLAGS} -o ${PN} ${P}.c
emake CC="$(tc-getCC)" "${PN}"
}
src_install() {
dobin ${PN}
dobin "${PN}"
}