Install this version:
emerge -a =net-misc/vmnet-0.4
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit flag-o-matic toolchain-funcs
DESCRIPTION="A simple virtual networking program - SLIP over stdin/out"
HOMEPAGE="ftp://ftp.xos.nl/pub/linux/vmnet/"
# The main site is often down
# So this might be better but it's a different filename
# http://ftp.debian.org/debian/pool/main/${PN:0:1}/${PN}/${P/-/_}.orig.tar.gz
# We use the debian patch anyway
SRC_URI="
ftp://ftp.xos.nl/pub/linux/${PN}/${P}.tar.gz
mirror://debian/pool/main/${PN:0:1}/${PN}/${P/-/_}-1.diff.gz
"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
RDEPEND="sys-apps/net-tools"
DEPEND="${RDEPEND}"
PATCHES=(
"${WORKDIR}"/${P/-/_}-1.diff
"${FILESDIR}"/${PN}-0.4-Fix-build-with-Clang-16.patch
"${FILESDIR}"/${PN}-0.4-replace-missing-musl-function.patch
)
src_compile() {
append-ldflags -Wl,-z,now
emake CC="$(tc-getCC)"
}
src_install() {
dobin ${PN}
fperms 4711 /usr/bin/${PN}
doman ${PN}.1
dodoc README debian/${PN}.sgml
insinto /etc
doins debian/${PN}.conf
}
pkg_postinst() {
einfo "Don't forgot to ensure SLIP support is in your kernel!"
}
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | vmnet-0.4.tar.gz | 11362 bytes | ftp://ftp.xos.nl/pub/linux/vmnet/vmnet-0.4.tar.gz |
| DIST | vmnet_0.4-1.diff.gz | 5084 bytes | mirror://debian/pool/main/v/vmnet/vmnet_0.4-1.diff.gz |