From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 12A061382C5 for ; Wed, 28 Mar 2018 16:54:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23762E0934; Wed, 28 Mar 2018 16:54:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F0C4FE0934 for ; Wed, 28 Mar 2018 16:54:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B8A57335CBF for ; Wed, 28 Mar 2018 16:54:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A97C321D for ; Wed, 28 Mar 2018 16:54:43 +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: <1522256046.2ad501fd2410dbcb26467b3e5c723a9c80e7c51e.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/xinetd/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/xinetd/xinetd-2.3.15.3.ebuild X-VCS-Directories: sys-apps/xinetd/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 2ad501fd2410dbcb26467b3e5c723a9c80e7c51e X-VCS-Branch: master Date: Wed, 28 Mar 2018 16:54:43 +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-Archives-Salt: 25a2ef84-e73f-4a36-a9ed-fd6c803a5a7c X-Archives-Hash: 32aebc465c7c1a29bb895143f4ed66fe commit: 2ad501fd2410dbcb26467b3e5c723a9c80e7c51e Author: Mike Gilbert gentoo org> AuthorDate: Wed Mar 28 16:54:06 2018 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Wed Mar 28 16:54:06 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ad501fd sys-apps/xinetd: depend on libtirpc unconditionally on Linux confparse.c includes rpc/rpc.h unconditionally. Closes: https://bugs.gentoo.org/651838 Package-Manager: Portage-2.3.24, Repoman-2.3.6_p81 sys-apps/xinetd/xinetd-2.3.15.3.ebuild | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/sys-apps/xinetd/xinetd-2.3.15.3.ebuild b/sys-apps/xinetd/xinetd-2.3.15.3.ebuild index 39c76db8e11..02ad304a23b 100644 --- a/sys-apps/xinetd/xinetd-2.3.15.3.ebuild +++ b/sys-apps/xinetd/xinetd-2.3.15.3.ebuild @@ -11,11 +11,11 @@ SRC_URI="${HOMEPAGE}/releases/download/${PV}/${P}.tar.xz" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" -IUSE="perl rpc selinux tcpd" +IUSE="perl selinux tcpd" DEPEND=" selinux? ( sys-libs/libselinux ) - rpc? ( net-libs/libtirpc:= ) + kernel_linux? ( net-libs/libtirpc:= ) tcpd? ( >=sys-apps/tcp-wrappers-7.6-r2 ) " RDEPEND=" @@ -33,14 +33,6 @@ src_prepare() { } src_configure() { - tc-export AR PKG_CONFIG - if use rpc ; then - append-cflags $(${PKG_CONFIG} --cflags libtirpc) - else - append-cppflags -DNO_RPC - export ac_cv_header_{rpc_{rpc,rpcent,pmap_clnt},netdb}_h=no - fi - LIBS=$(${PKG_CONFIG} --libs libtirpc) \ econf \ $(use_with tcpd libwrap) \ $(use_with selinux labeled-networking) \