diff options
author | Jaco Kroon <jaco@uls.co.za> | 2022-01-15 10:07:26 +0200 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2022-01-15 03:59:32 -0500 |
commit | f79097b87a83e9b1064231c7740d177a70e71df5 (patch) | |
tree | 4c4f84b024adbbacdf72f37cf0b1180938dcab14 /net-dialup/xl2tpd/xl2tpd-1.3.16.ebuild | |
parent | www-client/chromium: fix building with dotprod extension on arm64 (diff) | |
download | gentoo-f79097b87a83e9b1064231c7740d177a70e71df5.tar.gz gentoo-f79097b87a83e9b1064231c7740d177a70e71df5.tar.bz2 gentoo-f79097b87a83e9b1064231c7740d177a70e71df5.zip |
net-dialup/xl2tpd: fix tmpfiles.d
Version bump to fix /var/run to /run in tmpfiles.d config file.
Closes: https://bugs.gentoo.org/829885
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Jaco Kroon <jaco@uls.co.za>
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'net-dialup/xl2tpd/xl2tpd-1.3.16.ebuild')
-rw-r--r-- | net-dialup/xl2tpd/xl2tpd-1.3.16.ebuild | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/net-dialup/xl2tpd/xl2tpd-1.3.16.ebuild b/net-dialup/xl2tpd/xl2tpd-1.3.16.ebuild deleted file mode 100644 index 5821a9c07fe3..000000000000 --- a/net-dialup/xl2tpd/xl2tpd-1.3.16.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -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 ~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_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 -} |