From ca1e8436215ebab63284e968a2ba33ed34bd2b09 Mon Sep 17 00:00:00 2001 From: Sam James Date: Sat, 8 Oct 2022 19:33:01 +0100 Subject: [PATCH] net-vpn/pptpd: drop eutils Signed-off-by: Sam James --- net-vpn/pptpd/pptpd-1.4.0-r3.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild b/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild index f07ade6610c29..3a01c176e4483 100644 --- a/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild +++ b/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools eutils flag-o-matic toolchain-funcs +inherit autotools flag-o-matic toolchain-funcs DESCRIPTION="Linux Point-to-Point Tunnelling Protocol Server" HOMEPAGE="http://poptop.sourceforge.net/" @@ -31,7 +31,7 @@ PATCHES=( src_prepare() { # Match pptpd-logwtmp.so's version with pppd's version (#89895) - local PPPD_VER=`best_version net-dialup/ppp` + local PPPD_VER=$(best_version net-dialup/ppp) PPPD_VER=${PPPD_VER#*/*-} #reduce it to ${PV}-${PR} PPPD_VER=${PPPD_VER%%[_-]*} # main version without beta/pre/patch/revision sed -i -e "s:\\(#define[ \\t]*VERSION[ \\t]*\\)\".*\":\\1\"${PPPD_VER}\":" plugins/patchlevel.h || die