From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 5DA9058973 for ; Fri, 29 Jan 2016 15:55:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B744121C014; Fri, 29 Jan 2016 15:55:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 468DA21C017 for ; Fri, 29 Jan 2016 15:55:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2A81F340B03 for ; Fri, 29 Jan 2016 15:55:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6DF1D8EC for ; Fri, 29 Jan 2016 15:55:40 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1454082927.11299625dbb3c9585dfd6a8505f82324144c8b82.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/tigervnc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/tigervnc/tigervnc-1.6.0.ebuild X-VCS-Directories: net-misc/tigervnc/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 11299625dbb3c9585dfd6a8505f82324144c8b82 X-VCS-Branch: master Date: Fri, 29 Jan 2016 15:55:40 +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: a4007f0b-cc97-45b9-9ccd-3df532b2eb48 X-Archives-Hash: 94cb29c9a6839a82e9274a5dc74c30dc commit: 11299625dbb3c9585dfd6a8505f82324144c8b82 Author: Michał Górny gentoo org> AuthorDate: Fri Jan 29 15:37:47 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jan 29 15:55:27 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11299625 net-misc/tigervnc: Avoid building unnecessary parts of xorg-server net-misc/tigervnc/tigervnc-1.6.0.ebuild | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/net-misc/tigervnc/tigervnc-1.6.0.ebuild b/net-misc/tigervnc/tigervnc-1.6.0.ebuild index eaa275f..6d9e1a6 100644 --- a/net-misc/tigervnc/tigervnc-1.6.0.ebuild +++ b/net-misc/tigervnc/tigervnc-1.6.0.ebuild @@ -139,7 +139,16 @@ src_configure() { src_compile() { cmake-utils_src_compile - use server && emake -C unix/xserver + if use server; then + # deps of the vnc module and the module itself + local d subdirs=( + fb xfixes Xext dbe glx randr render damageext miext Xi xkb + composite dix mi os hw/vnc + ) + for d in "${subdirs[@]}"; do + emake -C unix/xserver/"${d}" + done + fi } src_install() {