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 AF5081382C5 for ; Wed, 4 Apr 2018 11:25:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9AECFE0BC4; Wed, 4 Apr 2018 11:25:44 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 76154E0BC4 for ; Wed, 4 Apr 2018 11:25:44 +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 66C97335C30 for ; Wed, 4 Apr 2018 11:25:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C8A0C264 for ; Wed, 4 Apr 2018 11:25:41 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1522841135.a48309576e9c1ad40b75ec23f28ad0bf61219902.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/nx/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/nx/nx-3.5.99.16.ebuild X-VCS-Directories: net-misc/nx/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: a48309576e9c1ad40b75ec23f28ad0bf61219902 X-VCS-Branch: master Date: Wed, 4 Apr 2018 11:25:41 +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: 7fb89171-5643-4d13-8914-7d30fd89a855 X-Archives-Hash: d41047d37371a286ee6ca3b1f0319799 commit: a48309576e9c1ad40b75ec23f28ad0bf61219902 Author: Lars Wendler gentoo org> AuthorDate: Wed Apr 4 11:24:51 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Apr 4 11:25:35 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4830957 net-misc/nx: Added missing RDEPENDs. Minor cleanups. Package-Manager: Portage-2.3.28, Repoman-2.3.9 net-misc/nx/nx-3.5.99.16.ebuild | 34 +++++++++++++++++++++++++--------- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/net-misc/nx/nx-3.5.99.16.ebuild b/net-misc/nx/nx-3.5.99.16.ebuild index f051eba5a3c..e073af44a60 100644 --- a/net-misc/nx/nx-3.5.99.16.ebuild +++ b/net-misc/nx/nx-3.5.99.16.ebuild @@ -14,15 +14,29 @@ SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="elibc_glibc" -RDEPEND="media-libs/freetype:2 - >=media-libs/libpng-1.2.8:* +RDEPEND=" + dev-libs/libxml2 + >=media-libs/libpng-1.2.8:0= >=sys-libs/zlib-1.2.3 - virtual/jpeg:*" + virtual/jpeg:* + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXdmcp + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXfont2 + x11-libs/libXinerama + x11-libs/libXpm + x11-libs/libXrandr + x11-libs/libXrender + x11-libs/libXtst + x11-libs/pixman +" DEPEND="${RDEPEND} virtual/pkgconfig x11-libs/libfontenc - x11-libs/libXfont2 x11-misc/gccmakedep x11-misc/imake x11-proto/inputproto @@ -38,14 +52,15 @@ src_prepare() { sed 's@which quilt@false@' -i mesa-quilt || die # run autoreconf in all needed folders - for i in nxcomp nx-X11/lib nxcompshad nxproxy ; do - pushd ${i} || die + local subdir + for subdir in nxcomp nx-X11/lib nxcompshad nxproxy ; do + pushd ${subdir} || die eautoreconf popd || die done # From xorg-x11-6.9.0-r3.ebuild - pushd nx-X11 || die + pushd nx-X11 || die HOSTCONF="config/cf/host.def" echo "#define CcCmd $(tc-getCC)" >> ${HOSTCONF} echo "#define OptimizedCDebugFlags ${CFLAGS} GccAliasingArgs" >> ${HOSTCONF} @@ -58,8 +73,9 @@ src_prepare() { } src_configure() { - for i in nxcomp nxcompshad nxproxy ; do - pushd ${i} || die + local subdir + for subdir in nxcomp nxcompshad nxproxy ; do + pushd ${subdir} || die econf popd || die done