From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (unknown [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 417AC158094 for ; Sat, 25 Jun 2022 15:02:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D309BE08F2; Sat, 25 Jun 2022 15:02:04 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A9208E08EB for ; Sat, 25 Jun 2022 15:02:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D78DC34175E for ; Sat, 25 Jun 2022 15:02:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 33DBD517 for ; Sat, 25 Jun 2022 15:01:55 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1656169273.470a810d903205b14079a10a66e7d9764313f4ef.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/pptpd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-vpn/pptpd/pptpd-1.4.0-r3.ebuild X-VCS-Directories: net-vpn/pptpd/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 470a810d903205b14079a10a66e7d9764313f4ef X-VCS-Branch: master Date: Sat, 25 Jun 2022 15:01:55 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4d42bd16-75f9-40c9-a1e9-2d616cc0fcac X-Archives-Hash: 1bb2376ca6b9b2845fd2e4a652e28fe2 commit: 470a810d903205b14079a10a66e7d9764313f4ef Author: Mike Gilbert gentoo org> AuthorDate: Fri Jun 24 22:05:14 2022 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sat Jun 25 15:01:13 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=470a810d net-vpn/pptpd: depend on net-libs/ppp-defs on musl Closes: https://bugs.gentoo.org/851918 Signed-off-by: Mike Gilbert gentoo.org> net-vpn/pptpd/pptpd-1.4.0-r3.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild b/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild index d22507a50d47..f07ade6610c2 100644 --- a/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild +++ b/net-vpn/pptpd/pptpd-1.4.0-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -14,9 +14,10 @@ LICENSE="GPL-2" KEYWORDS="amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86" IUSE="gre-extreme-debug tcpd" -DEPEND="net-dialup/ppp:= +RDEPEND="net-dialup/ppp:= tcpd? ( sys-apps/tcp-wrappers )" -RDEPEND="${DEPEND}" +DEPEND="${RDEPEND} + elibc_musl? ( net-libs/ppp-defs )" DOCS=( AUTHORS ChangeLog NEWS README TODO )