blob: be0c0e5e59cf7f87fadb996a249fdbff9a70601e (
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
inherit toolchain-funcs eutils
DESCRIPTION="simple Mode S decoder for RTLSDR devices"
#Original repo
#HOMEPAGE="https://github.com/antirez/dump1090"
#Repo that has actually been touched recenly
HOMEPAGE="https://github.com/mutability/dump1090"
if [[ ${PV} == "9999" ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/mutability/${PN}.git"
KEYWORDS=""
else
KEYWORDS="~amd64 ~x86"
SRC_URI="https://dev.gentoo.org/~zerochaos/distfiles/${P}.tar.xz"
S="${WORKDIR}/${PN}"
fi
LICENSE="BSD"
SLOT="0"
IUSE=""
RDEPEND="net-wireless/rtl-sdr
virtual/libusb:1"
DEPEND="${RDEPEND}"
src_compile() {
emake CC="$(tc-getCC)" \
UNAME="Linux"
CFLAGS="$($(tc-getPKG_CONFIG) --cflags librtlsdr) ${CFLAGS}" \
EXTRACFLAGS="-DHTMLPATH='/usr/share/dump1090/html'" \
LIBS="${LDFLAGS} $($(tc-getPKG_CONFIG) --libs librtlsdr) -lm -lpthread"
}
src_install() {
dobin ${PN}
dobin view1090
dodoc README.md
insinto /usr/share/${PN}/html
doins -r public_html/*
insinto /usr/share/${PN}/tools
doins -r tools/*
}
|