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 0B2F5138335 for ; Thu, 16 Aug 2018 20:45:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 88B58E089A; Thu, 16 Aug 2018 20:45:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 61309E0897 for ; Thu, 16 Aug 2018 20:45:38 +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 479F9335D65 for ; Thu, 16 Aug 2018 20:45:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 54FF93B5 for ; Thu, 16 Aug 2018 20:45:34 +0000 (UTC) From: "Richard Farina" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Richard Farina" Message-ID: <1534452328.2d91c96f1e692139514a4d95103bdae4d1c3c968.zerochaos@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/bladerf-fpga/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/bladerf-fpga/bladerf-fpga-0.7.3.ebuild X-VCS-Directories: net-wireless/bladerf-fpga/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Richard Farina X-VCS-Revision: 2d91c96f1e692139514a4d95103bdae4d1c3c968 X-VCS-Branch: master Date: Thu, 16 Aug 2018 20:45:34 +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: 4153b1a6-5ade-4c2c-ae48-682d93e75d91 X-Archives-Hash: ec0300daa10d8724d698bffb85b89036 commit: 2d91c96f1e692139514a4d95103bdae4d1c3c968 Author: Zero_Chaos gentoo org> AuthorDate: Thu Aug 16 20:44:35 2018 +0000 Commit: Richard Farina gentoo org> CommitDate: Thu Aug 16 20:45:28 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d91c96f net-wireless/bladerf-fpga: fix new images actually install new images don't try to unpack nothing Package-Manager: Portage-2.3.46, Repoman-2.3.10 net-wireless/bladerf-fpga/bladerf-fpga-0.7.3.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/net-wireless/bladerf-fpga/bladerf-fpga-0.7.3.ebuild b/net-wireless/bladerf-fpga/bladerf-fpga-0.7.3.ebuild index 071ffc8524c..739ce1773ca 100644 --- a/net-wireless/bladerf-fpga/bladerf-fpga-0.7.3.ebuild +++ b/net-wireless/bladerf-fpga/bladerf-fpga-0.7.3.ebuild @@ -24,8 +24,14 @@ RDEPEND="${DEPEND}" S="${DISTDIR}" +src_unpack() { + true +} + src_install() { insinto /usr/share/Nuand/bladeRF/ + use xA4 && newins hostedxA4-${PV}.rbf hostedxA4.rbf + use xA9 && newins hostedxA9-${PV}.rbf hostedxA9.rbf use x40 && newins hostedx40-${PV}.rbf hostedx40.rbf use x115 && newins hostedx115-${PV}.rbf hostedx115.rbf }