forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Thomas Beierlein <[email protected]>
- Loading branch information
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST fldigi-4.0.18.tar.gz 3757912 BLAKE2B f50f9233bf077c8d53bafffe153c319778fc0f0efa5123b1c6169bce70f91bb6cd799944486b4c2eb31ecdf0f15e75d9d6b700d6c21f4a256382d947d4e14f68 SHA512 b585845b83b8f108a0aefa108349a73e53378e39c545d426c5846dc451653bcbc13d2239e33e69e6045eaeb605c4ac7dc1ae3e9cc0173962f6e0cb86bc6a4f5c | ||
DIST fldigi-4.1.00.tar.gz 3916169 BLAKE2B d41d254eb42ea4ae5cc361faf637e471b1d6ebdc08e1b2b1f9ff21e5467bbd399e219c0b350429cf68e5cc75d75492dd5614bf8630abca81376e8a6da544e90d SHA512 49673c1a45bc438ce38dd539e926f7700f6b06364a1a53592ace21387751eb782936cc619a08d94315cca33872cd9874d090d3503b087252f69a9ef99fbb392f | ||
DIST fldigi-4.1.01.tar.gz 3916445 BLAKE2B 53fe35d579ea7ac5c62fa83af794c6b1f36a40ae9bc65d19b20f5a923a3c45a79a866eb0e7cda12d3bba713f371115142aef6dca5afefc301d331403a6c7667f SHA512 f0fa33714b56d396dea59511083546765a34c645aa03875d0c6bb38af89ff79ecad6b5556895a6615d18b6340d50d94beb69e92c4a488fed346863fa1e378633 | ||
DIST fldigi-4.1.02.tar.gz 4681621 BLAKE2B d9ec93332d26f1db959f5d56388ebba63dd68aa78b1e68131a7c292326a734c361d5b564c34b540887dc2c10194c3ea69e564a69a46b06f2e4973df69c1462ef SHA512 2c99718062231b7ced1695075ffb2dfd7f628a712561c5dc9cbfb73c6b0282d54bddc1e8e417912368aba5165296e55ab1b02e122d8d0e5b213b5b9c39a9f87f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Copyright 1999-2019 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
DESCRIPTION="Sound card based multimode software modem for Amateur Radio use" | ||
HOMEPAGE="http://www.w1hkj.com" | ||
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="hamlib nls pulseaudio" | ||
IUSE_CPU_FLAGS=" sse sse2 sse3" | ||
IUSE+=" ${IUSE_CPU_FLAGS// / cpu_flags_x86_}" | ||
|
||
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 | ||
|| ( | ||
media-libs/portaudio[oss] | ||
media-libs/portaudio[alsa] | ||
) | ||
hamlib? ( media-libs/hamlib ) | ||
pulseaudio? ( media-sound/pulseaudio ) | ||
>=media-libs/libsndfile-1.0.10" | ||
DEPEND="${RDEPEND} | ||
nls? ( sys-devel/gettext ) | ||
virtual/pkgconfig" | ||
|
||
DOCS=( AUTHORS ChangeLog NEWS README ) | ||
|
||
PATCHES=( "$FILESDIR"/$PN-c++11.patch ) | ||
|
||
src_configure() { | ||
local myconf="" | ||
|
||
use cpu_flags_x86_sse && myconf="${myconf} --enable-optimizations=sse" | ||
use cpu_flags_x86_sse2 && myconf="${myconf} --enable-optimizations=sse2" | ||
use cpu_flags_x86_sse3 && myconf="${myconf} --enable-optimizations=sse3" | ||
|
||
econf ${myconf} \ | ||
--with-sndfile \ | ||
$(use_with hamlib) \ | ||
$(use_enable nls) \ | ||
$(use_with pulseaudio) \ | ||
--without-asciidoc | ||
} |