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 164481397D4 for ; Wed, 12 Aug 2015 10:38:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 152FF1420D; Wed, 12 Aug 2015 10:38:24 +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 439FC1420D for ; Wed, 12 Aug 2015 10:38:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2605B340A44 for ; Wed, 12 Aug 2015 10:38:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 25A5D14F for ; Wed, 12 Aug 2015 10:38:20 +0000 (UTC) From: "Mike Frysinger" 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 Frysinger" Message-ID: <1439375889.29a9b9b90f986edfdbea997315d7bb34762e32a1.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/ncurses/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/ncurses/ncurses-6.0.ebuild X-VCS-Directories: sys-libs/ncurses/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 29a9b9b90f986edfdbea997315d7bb34762e32a1 X-VCS-Branch: master Date: Wed, 12 Aug 2015 10:38:20 +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: 79b578b7-27ef-4924-ba94-d73fe940fe45 X-Archives-Hash: caa950b90052338d478bac6c6cf0cf02 commit: 29a9b9b90f986edfdbea997315d7bb34762e32a1 Author: Mike Frysinger gentoo org> AuthorDate: Wed Aug 12 10:23:40 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Aug 12 10:38:09 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29a9b9b9 sys-libs/ncurses: avoid building tests when unused If the user isn't going to run the testsuite, there's no point in building all the test binaries, so put that logic behind the standard USE=test. sys-libs/ncurses/ncurses-6.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys-libs/ncurses/ncurses-6.0.ebuild b/sys-libs/ncurses/ncurses-6.0.ebuild index 7372e09..8a055bf 100644 --- a/sys-libs/ncurses/ncurses-6.0.ebuild +++ b/sys-libs/ncurses/ncurses-6.0.ebuild @@ -18,7 +18,7 @@ LICENSE="MIT" # The subslot reflects the SONAME. SLOT="5/6" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" -IUSE="ada +cxx debug doc gpm minimal profile static-libs tinfo trace unicode" +IUSE="ada +cxx debug doc gpm minimal profile static-libs test tinfo trace unicode" DEPEND="gpm? ( sys-libs/gpm[${MULTILIB_USEDEP}] )" # berkdb? ( sys-libs/db )" @@ -115,6 +115,7 @@ do_configure() { $(use_enable !debug leaks) $(use_with debug expanded) $(use_with !debug macros) + $(use_with test tests) $(use_with trace) $(use_with tinfo termlib) )