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 56BD71382C5 for ; Fri, 24 Jun 2016 07:47:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0FD6F1420D; Fri, 24 Jun 2016 07:47:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B1BFB1420D for ; Fri, 24 Jun 2016 07:47:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 54C7D340D30 for ; Fri, 24 Jun 2016 07:47:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDAE82091 for ; Fri, 24 Jun 2016 07:47:32 +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: <1466754372.8d52ad92d1f235df75d0b8bea844b8de6daad523.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/libftdi/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-embedded/libftdi/libftdi-1.2.ebuild dev-embedded/libftdi/libftdi-9999.ebuild X-VCS-Directories: dev-embedded/libftdi/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 8d52ad92d1f235df75d0b8bea844b8de6daad523 X-VCS-Branch: master Date: Fri, 24 Jun 2016 07:47:32 +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: 679164f6-07cc-4890-b53c-9ebdf20f4f42 X-Archives-Hash: d6196445d0df395c8c45a2a1bbc1cf08 commit: 8d52ad92d1f235df75d0b8bea844b8de6daad523 Author: Mike Frysinger gentoo org> AuthorDate: Fri Jun 24 07:46:12 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Fri Jun 24 07:46:12 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d52ad92 dev-embedded/libftdi: disable building of tests when USE=-test dev-embedded/libftdi/libftdi-1.2.ebuild | 3 ++- dev-embedded/libftdi/libftdi-9999.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-embedded/libftdi/libftdi-1.2.ebuild b/dev-embedded/libftdi/libftdi-1.2.ebuild index b588c75..353fcc9 100644 --- a/dev-embedded/libftdi/libftdi-1.2.ebuild +++ b/dev-embedded/libftdi/libftdi-1.2.ebuild @@ -20,7 +20,7 @@ HOMEPAGE="http://www.intra2net.com/en/developer/libftdi/" LICENSE="LGPL-2" SLOT="1" -IUSE="cxx doc examples python static-libs tools" +IUSE="cxx doc examples python static-libs test tools" RDEPEND="virtual/libusb:1 cxx? ( dev-libs/boost ) @@ -42,6 +42,7 @@ src_configure() { $(cmake-utils_use examples EXAMPLES) $(cmake-utils_use python PYTHON_BINDINGS) $(cmake-utils_use static-libs STATICLIBS) + $(cmake-utils_use test BUILD_TESTS) $(cmake-utils_use tools FTDI_EEPROM) -DCMAKE_SKIP_BUILD_RPATH=ON ) diff --git a/dev-embedded/libftdi/libftdi-9999.ebuild b/dev-embedded/libftdi/libftdi-9999.ebuild index f9ca9b5..38eb00e 100644 --- a/dev-embedded/libftdi/libftdi-9999.ebuild +++ b/dev-embedded/libftdi/libftdi-9999.ebuild @@ -20,7 +20,7 @@ HOMEPAGE="http://www.intra2net.com/en/developer/libftdi/" LICENSE="LGPL-2" SLOT="1" -IUSE="cxx doc examples python static-libs tools" +IUSE="cxx doc examples python static-libs test tools" RDEPEND="virtual/libusb:1 cxx? ( dev-libs/boost ) @@ -42,6 +42,7 @@ src_configure() { $(cmake-utils_use examples EXAMPLES) $(cmake-utils_use python PYTHON_BINDINGS) $(cmake-utils_use static-libs STATICLIBS) + $(cmake-utils_use test BUILD_TESTS) $(cmake-utils_use tools FTDI_EEPROM) -DCMAKE_SKIP_BUILD_RPATH=ON )