blob: 344278dba590e2b6a14c82991ef21b5a929c45b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="The swiss army knife of subGHz"
HOMEPAGE="https://bitbucket.org/atlas0fd00m/rfcat/"
if [ "${PV}" = "9999" ]; then
EHG_REPO_URI="https://bitbucket.org/atlas0fd00m/rfcat"
inherit mercurial
KEYWORDS=""
else
DATE="170508"
FIRMWARE_DATE="170313"
SRC_URI="https://bitbucket.org/atlas0fd00m/rfcat/downloads/rfcat_${DATE}.tgz \
https://bitbucket.org/atlas0fd00m/rfcat/downloads/immeSniff-${DATE}.hex \
https://bitbucket.org/atlas0fd00m/rfcat/downloads/RfCatChronosCCBootloader-${FIRMWARE_DATE}.hex \
https://bitbucket.org/atlas0fd00m/rfcat/downloads/RfCatDonsCCBootloader-${FIRMWARE_DATE}.hex \
https://bitbucket.org/atlas0fd00m/rfcat/downloads/RfCatYS1CCBootloader-${FIRMWARE_DATE}.hex"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${PN}_${DATE}"
fi
LICENSE="BSD"
SLOT="0"
IUSE=""
#DEPEND="dev-embedded/sdcc"
#RDEPEND="${DEPEND}"
src_install() {
distutils-r1_src_install
if [ "${PV}" != "9999" ]; then
insinto /usr/share/rfcat
doins "${DISTDIR}"/*.hex
fi
}
pkg_postinst() {
if [ "${PV}" = "9999" ]; then
ewarn "Right now, this only installs the rfcat host tools, nothing related to firmware"
else
einfo "Pre-compiled firmwares from upstream are installed in /usr/share/rfcat"
fi
}
|