diff options
author | Thomas Beierlein <tomjbe@gentoo.org> | 2015-07-16 05:03:01 +0000 |
---|---|---|
committer | Thomas Beierlein <tomjbe@gentoo.org> | 2015-07-16 05:03:01 +0000 |
commit | b47084c7fcb3ed6b2e728ebe3a683a0f238d3dee (patch) | |
tree | be6957122087a54e60e04e99ea88bcb75b1305bd /media-radio | |
parent | add partial patch to build with uclibc submitted by René Rhéaume via bug #5... (diff) | |
download | gentoo-2-b47084c7fcb3ed6b2e728ebe3a683a0f238d3dee.tar.gz gentoo-2-b47084c7fcb3ed6b2e728ebe3a683a0f238d3dee.tar.bz2 gentoo-2-b47084c7fcb3ed6b2e728ebe3a683a0f238d3dee.zip |
Version bump
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0x24083D3E28343508)
Diffstat (limited to 'media-radio')
-rw-r--r-- | media-radio/fldigi/ChangeLog | 7 | ||||
-rw-r--r-- | media-radio/fldigi/fldigi-3.22.11.ebuild | 40 |
2 files changed, 46 insertions, 1 deletions
diff --git a/media-radio/fldigi/ChangeLog b/media-radio/fldigi/ChangeLog index ce21da62bc06..775025b0e06d 100644 --- a/media-radio/fldigi/ChangeLog +++ b/media-radio/fldigi/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-radio/fldigi # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-radio/fldigi/ChangeLog,v 1.111 2015/06/02 05:24:33 tomjbe Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-radio/fldigi/ChangeLog,v 1.112 2015/07/16 05:03:01 tomjbe Exp $ + +*fldigi-3.22.11 (16 Jul 2015) + + 16 Jul 2015; Thomas Beierlein <tomjbe@gentoo.org> +fldigi-3.22.11.ebuild: + Version bump *fldigi-3.22.10 (02 Jun 2015) diff --git a/media-radio/fldigi/fldigi-3.22.11.ebuild b/media-radio/fldigi/fldigi-3.22.11.ebuild new file mode 100644 index 000000000000..4e0be832174e --- /dev/null +++ b/media-radio/fldigi/fldigi-3.22.11.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-radio/fldigi/fldigi-3.22.11.ebuild,v 1.1 2015/07/16 05:03:01 tomjbe Exp $ + +EAPI=5 + +DESCRIPTION="Sound card based multimode software modem for Amateur Radio use" +HOMEPAGE="http://www.w1hkj.com/Fldigi.html" +SRC_URI="http://www.w1hkj.com/downloads/fldigi/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="hamlib nls portaudio pulseaudio sndfile" + +RDEPEND="x11-libs/fltk:1[threads,xft] + media-libs/libsamplerate + media-libs/libpng:0 + x11-misc/xdg-utils + dev-perl/RPC-XML + dev-perl/Term-ReadLine-Perl + hamlib? ( media-libs/hamlib ) + portaudio? ( >=media-libs/portaudio-19_pre20071207 ) + pulseaudio? ( media-sound/pulseaudio ) + sndfile? ( >=media-libs/libsndfile-1.0.10 )" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext ) + virtual/pkgconfig" + +DOCS=( AUTHORS ChangeLog NEWS README ) + +src_configure() { + econf $(use_with sndfile) \ + $(use_with portaudio) \ + $(use_with hamlib) \ + $(use_enable nls) \ + $(use_with pulseaudio) \ + --disable-silent-rules \ + --without-asciidoc +} |