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 1F8751384B4 for ; Thu, 31 Dec 2015 16:23:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5446221C045; Thu, 31 Dec 2015 16:23:39 +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 03C4F21C045 for ; Thu, 31 Dec 2015 16:23:37 +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 0CDC9340928 for ; Thu, 31 Dec 2015 16:23:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5EE95CF6 for ; Thu, 31 Dec 2015 16:23:35 +0000 (UTC) From: "Sven Wegener" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Wegener" Message-ID: <1451578939.4089192d18b55c8a80aae2775b18b8c34d76216e.swegener@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/urjtag/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-embedded/urjtag/urjtag-0.10-r1.ebuild X-VCS-Directories: dev-embedded/urjtag/ X-VCS-Committer: swegener X-VCS-Committer-Name: Sven Wegener X-VCS-Revision: 4089192d18b55c8a80aae2775b18b8c34d76216e X-VCS-Branch: master Date: Thu, 31 Dec 2015 16:23:35 +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: b5d15865-4108-45a1-b92d-6194d7504bce X-Archives-Hash: 3e02bf132fd7c01138732638a2143bf6 commit: 4089192d18b55c8a80aae2775b18b8c34d76216e Author: Sven Wegener gentoo org> AuthorDate: Thu Dec 31 16:22:19 2015 +0000 Commit: Sven Wegener gentoo org> CommitDate: Thu Dec 31 16:22:19 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4089192d dev-embedded/urjtag: Remove ftd2xx from release ebuild Signed-off-by: Sven Wegener gentoo.org> dev-embedded/urjtag/urjtag-0.10-r1.ebuild | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/dev-embedded/urjtag/urjtag-0.10-r1.ebuild b/dev-embedded/urjtag/urjtag-0.10-r1.ebuild index ca8cb8e..40d1c68 100644 --- a/dev-embedded/urjtag/urjtag-0.10-r1.ebuild +++ b/dev-embedded/urjtag/urjtag-0.10-r1.ebuild @@ -21,10 +21,9 @@ HOMEPAGE="http://urjtag.sourceforge.net/" LICENSE="GPL-2" SLOT="0" -IUSE="ftd2xx ftdi readline usb" +IUSE="ftdi readline usb" DEPEND="ftdi? ( dev-embedded/libftdi:0 ) - ftd2xx? ( dev-embedded/libftd2xx ) readline? ( sys-libs/readline:= ) usb? ( virtual/libusb:0 )" RDEPEND="${DEPEND} @@ -40,13 +39,11 @@ src_prepare() { src_configure() { use readline || export vl_cv_lib_readline=no - use ftd2xx && LDFLAGS="${LDFLAGS} -L/opt/$(get_libdir)" econf \ --disable-werror \ --disable-python \ $(use_with ftdi libftdi) \ - $(use_with ftd2xx) \ $(use_with usb libusb) }