From: Zero_Chaos Date: Wed, 22 Aug 2018 20:47:14 +0000 (+0000) Subject: net-wireless/mousejack: initial commit X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6af528a12f3155385d6d1170da5f2e891e885e6c;p=gentoo.git net-wireless/mousejack: initial commit Package-Manager: Portage-2.3.48, Repoman-2.3.10 --- diff --git a/net-wireless/mousejack/Manifest b/net-wireless/mousejack/Manifest new file mode 100644 index 000000000000..0eaba0412afc --- /dev/null +++ b/net-wireless/mousejack/Manifest @@ -0,0 +1 @@ +DIST mousejack-0.0_p20160726.tar.gz 34252 BLAKE2B 7511d29aa94f2fb5590b34d52eaa64150f3931933f043c9028e2d9cae61342a314a369e80e51e1150294afaadca06e58ec71ba4df4150a7a58d9a82d28919a58 SHA512 01fc87a347aea9ccad7611ef494da0521da278b7664e511409f0f822327b02f6fb555c5b5da86aae998b8fd34b7a55260d03594fbd9bb61c3ceca77e7d54958c diff --git a/net-wireless/mousejack/files/mousejack b/net-wireless/mousejack/files/mousejack new file mode 100644 index 000000000000..b47d365cd7f3 --- /dev/null +++ b/net-wireless/mousejack/files/mousejack @@ -0,0 +1,42 @@ +#!/bin/sh + +usage() { + printf "The following firmware's are supported:\n" + printf "Nordic Semiconductor Bootloader\n" + printf "CrazyRadio Firmware\n" + printf "RFStorm Research Firmware\n" + printf "run \"mousejack install\"\n\n" + printf "To flash Logitech Unifying Dongle C-U0007\n" + printf "run \"mousejack logitech_install\"\n\n" +} + +if [ -z "${1}" ]; then + usage + exit 1 +fi + +#parse args +while true; do + case $1 in + -h|--help) + usage + exit 0 + ;; + install) + /usr/share/mousejack-firmware/prog/usb-flash.py /usr/share/mousejack-firmware/dongle.bin + exit $? + ;; + logitech_install) + /usr/share/mousejack-firmware/prog/logitech-usb-flash.py /usr/share/mousejack-firmware/dongle.formatted.bin /usr/share/mousejack-firmware/dongle.formatted.ihx + exit $? + ;; + --) + shift + break + ;; + *) + break + ;; + esac + shift +done diff --git a/net-wireless/mousejack/metadata.xml b/net-wireless/mousejack/metadata.xml new file mode 100644 index 000000000000..c5c7cc912abc --- /dev/null +++ b/net-wireless/mousejack/metadata.xml @@ -0,0 +1,11 @@ + + + + + zerochaos@gentoo.org + Rick Farina + + + BastilleResearch/nrf-research-firmware + + diff --git a/net-wireless/mousejack/mousejack-0.0_p20160726.ebuild b/net-wireless/mousejack/mousejack-0.0_p20160726.ebuild new file mode 100644 index 000000000000..2593ee853819 --- /dev/null +++ b/net-wireless/mousejack/mousejack-0.0_p20160726.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python2_7 ) +inherit python-single-r1 + +DESCRIPTION="Firmware and research tools for nRF24LU1+ based USB dongles and breakout boards" +HOMEPAGE="https://www.mousejack.com/" +COMMIT="02b84d1c4e59c0fb98263c83b2e7c7f9863a3b93" +SRC_URI="https://github.com/BastilleResearch/nrf-research-firmware/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/nrf-research-firmware-${COMMIT}" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-embedded/sdcc[device-lib,mcs51,sdbinutils]" +RDEPEND="${DEPEND} + ${PYTHON_DEPS} + dev-python/pyusb[${PYTHON_USEDEP}]" + +src_prepare() { + mv tools/lib tools/nrf24 || die + for file in tools/nrf24-*; do + sed -i 's#from lib#from nrf24#' ${file} || die + done + default +} +src_install() { + insinto /usr/share/${PN} + doins bin/dongle.{bin,formatted.bin,formatted.ihx} + + python_domodule tools/nrf24 + python_doscript tools/nrf24-* + + python_scriptinto /usr/share/${PN}/prog + python_doscript prog/usb-flasher/usb-flash.py + python_doscript prog/usb-flasher/logitech-usb-flash.py + python_doscript prog/usb-flasher/unifying.py + + dosbin "${FILESDIR}/mousejack" +}