diff options
author | Rick Farina <zerochaos@gentoo.org> | 2015-01-20 20:51:58 +0000 |
---|---|---|
committer | Rick Farina <zerochaos@gentoo.org> | 2015-01-20 20:51:58 +0000 |
commit | 650e37ff01d95c17116c5b0929506169437ee578 (patch) | |
tree | 5274b4ad2b2507449f38b5f49d7258e0809bd97c /net-wireless | |
parent | QA fix bug 537028 by updating the manifest. (diff) | |
download | gentoo-2-650e37ff01d95c17116c5b0929506169437ee578.tar.gz gentoo-2-650e37ff01d95c17116c5b0929506169437ee578.tar.bz2 gentoo-2-650e37ff01d95c17116c5b0929506169437ee578.zip |
bump, and remove unneeded patch from live ebuild
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key DD11F94A)
Diffstat (limited to 'net-wireless')
-rw-r--r-- | net-wireless/gqrx/ChangeLog | 10 | ||||
-rw-r--r-- | net-wireless/gqrx/gqrx-2.3.2.ebuild | 44 | ||||
-rw-r--r-- | net-wireless/gqrx/gqrx-9999.ebuild | 5 |
3 files changed, 54 insertions, 5 deletions
diff --git a/net-wireless/gqrx/ChangeLog b/net-wireless/gqrx/ChangeLog index 1cad7aa668af..c184feebff8e 100644 --- a/net-wireless/gqrx/ChangeLog +++ b/net-wireless/gqrx/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-wireless/gqrx -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/gqrx/ChangeLog,v 1.10 2014/12/17 18:21:41 kensington Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-wireless/gqrx/ChangeLog,v 1.11 2015/01/20 20:51:58 zerochaos Exp $ + +*gqrx-2.3.2 (20 Jan 2015) + + 20 Jan 2015; Rick Farina <zerochaos@gentoo.org> +gqrx-2.3.2.ebuild, + gqrx-9999.ebuild: + bump, and remove unneeded patch from live ebuild 17 Dec 2014; Michael Palimaka <kensington@gentoo.org> gqrx-2.3.1.ebuild, gqrx-9999.ebuild: diff --git a/net-wireless/gqrx/gqrx-2.3.2.ebuild b/net-wireless/gqrx/gqrx-2.3.2.ebuild new file mode 100644 index 000000000000..45cff5479424 --- /dev/null +++ b/net-wireless/gqrx/gqrx-2.3.2.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-wireless/gqrx/gqrx-2.3.2.ebuild,v 1.1 2015/01/20 20:51: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-r3 + KEYWORDS="" +else + SRC_URI="https://github.com/csete/gqrx/archive/v${PV}.tar.gz" + KEYWORDS="~amd64 ~arm ~x86" +fi + +LICENSE="GPL-3" +SLOT="0" +IUSE="pulseaudio" + +DEPEND=">=net-wireless/gnuradio-3.7_rc:=[audio,analog,filter] + >=net-wireless/gr-osmosdr-0.1.0:= + dev-libs/boost:= + dev-qt/qtcore:4 + dev-qt/qtgui:4 + pulseaudio? ( media-sound/pulseaudio:= )" +RDEPEND="${DEPEND} + dev-qt/qtsvg:4" + +src_prepare() { + if use !pulseaudio; then + sed -i 's/AUDIO_BACKEND = pulse/#AUDIO_BACKEND = pulse/' gqrx.pro || die + fi + epatch "${FILESDIR}"/no_qtsvg.patch + qt4-r2_src_prepare +} + +src_install() { + dobin gqrx +} diff --git a/net-wireless/gqrx/gqrx-9999.ebuild b/net-wireless/gqrx/gqrx-9999.ebuild index 5064250eeb06..6e93db8672ad 100644 --- a/net-wireless/gqrx/gqrx-9999.ebuild +++ b/net-wireless/gqrx/gqrx-9999.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-wireless/gqrx/gqrx-9999.ebuild,v 1.7 2014/12/17 18:03:07 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-wireless/gqrx/gqrx-9999.ebuild,v 1.8 2015/01/20 20:51:58 zerochaos Exp $ EAPI=5 @@ -35,7 +35,6 @@ src_prepare() { if use !pulseaudio; then sed -i 's/AUDIO_BACKEND = pulse/#AUDIO_BACKEND = pulse/' gqrx.pro || die fi - epatch "${FILESDIR}"/no_qtsvg.patch qt4-r2_src_prepare } |