blob: 45cc1d3861c677ce44a81da9e866deaee6b9c206 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/gqrx/gqrx-2.2.0_p20140706.ebuild,v 1.2 2014/07/07 13:06:58 zerochaos Exp $
EAPI=5
inherit qt4-r2
DESCRIPTION="Software defined radio receiver powered by GNU Radio and Qt"
HOMEPAGE="http://gqrx.dk/"
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/csete/gqrx.git"
inherit git-2
KEYWORDS=""
else
SRC_URI="https://dev.gentoo.org/~zerochaos/distfiles/${P}.tar.xz"
KEYWORDS="~amd64 ~arm ~x86"
fi
LICENSE="GPL-3"
SLOT="0"
IUSE="pulseaudio"
DEPEND=">=net-wireless/gnuradio-3.7_rc:=
>=net-wireless/gr-osmosdr-0.1.1:=
pulseaudio? ( media-sound/pulseaudio )"
RDEPEND="${DEPEND}"
src_prepare() {
if use !pulseaudio; then
sed -i 's/AUDIO_BACKEND = pulse/#AUDIO_BACKEND = pulse/' gqrx.pro || die
fi
qt4-r2_src_prepare
}
src_install() {
dobin gqrx
}
|