diff options
author | Sam James <sam@gentoo.org> | 2022-10-08 19:33:01 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-10-08 19:33:01 +0100 |
commit | ca1e8436215ebab63284e968a2ba33ed34bd2b09 (patch) | |
tree | 344ad374b28e91ce9117cf9a61b5fcb34a842343 /net-vpn | |
parent | media-video/vlc: fix MissingUseDepDefault on libupnp (diff) | |
download | gentoo-ca1e8436215ebab63284e968a2ba33ed34bd2b09.tar.gz gentoo-ca1e8436215ebab63284e968a2ba33ed34bd2b09.tar.bz2 gentoo-ca1e8436215ebab63284e968a2ba33ed34bd2b09.zip |
net-vpn/pptpd: drop eutils
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-vpn')
-rw-r--r-- | net-vpn/pptpd/pptpd-1.4.0-r3.ebuild | 4 |
1 files 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 f07ade6610c2..3a01c176e448 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 |