net-dialup/xl2tpd: add 1.3.18

Closes: https://bugs.gentoo.org/884523
Signed-off-by: Jaco Kroon <jaco@uls.co.za>
Closes: https://github.com/gentoo/gentoo/pull/28568
Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
This commit is contained in:
Jaco Kroon
2022-12-06 17:21:33 +02:00
committed by Viorel Munteanu
parent 2558ddaebc
commit b93afcf45e
2 changed files with 65 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST xl2tpd-1.3.16.tar.gz 531861 BLAKE2B 2f809c8623c1a77ee538014d4ff3389e32e142f8cd6acad1657198323835574dd3d062e5ed6ee81ded5c4a1a65d8e200759ed6013884bb655ca6f5eef5333931 SHA512 d92bd9070c0e78ba1f4f7ee38be9e87d1f869fe240433f2fd7d1c974f1bce1573ab7aeb5922f316e53bd0fd4580b6152d585b1e0e0cd6fb01ef8fa85d9509b16
DIST xl2tpd-1.3.18.tar.gz 534937 BLAKE2B ce745855709ac79d5d6aefbe2fb31a4e799f01c6ad31ad2e436c276933e079116daf32bcdc97b7459e4792aa2bd1ddbb600d798d8b28d1432681ffd319fe0829 SHA512 d1114777de5f3895429409fd5474da91fe9e9c218615eb989c9294de3e4e36dea7d8ea880a9b1b1ca18760e5709c8b8156c80d81401db479eaf215c026c3d861

View File

@@ -0,0 +1,64 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit systemd toolchain-funcs tmpfiles
DESCRIPTION="A modern version of the Layer 2 Tunneling Protocol (L2TP) daemon"
HOMEPAGE="https://github.com/xelerance/xl2tpd"
SRC_URI="https://github.com/xelerance/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~x86"
IUSE="+kernel"
DEPEND="
net-libs/libpcap
>=sys-kernel/linux-headers-2.6"
RDEPEND="
${DEPEND}
net-dialup/ppp"
DOCS=( CREDITS README.md BUGS CHANGES TODO doc/README.patents )
src_prepare() {
default
sed -e 's:/var/run/:/run/:' -i \
file.h \
l2tp.h \
xl2tpd-control.c \
doc/l2tp-secrets.5 \
doc/xl2tpd.8 \
doc/xl2tpd.conf.5 \
|| die "Error updating /var/run to /run"
}
src_compile() {
tc-export CC
local OSFLAGS="-DLINUX"
use kernel && OSFLAGS+=" -DUSE_KERNEL"
emake OSFLAGS="${OSFLAGS}"
}
src_install() {
emake PREFIX=/usr DESTDIR="${D}" install
newinitd "${FILESDIR}"/xl2tpd-init-r1 xl2tpd
systemd_dounit "${FILESDIR}"/xl2tpd.service
dotmpfiles "${FILESDIR}"/xl2tpd.conf
einstalldocs
insinto /etc/xl2tpd
newins doc/l2tpd.conf.sample xl2tpd.conf
insopts -m 0600
newins doc/l2tp-secrets.sample l2tp-secrets
}
pkg_postinst() {
tmpfiles_process xl2tpd.conf
}