mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 00:08:58 -04:00
sndfile is a sort-of lowest common denominator, which makes it more appropriate as a default-on USE flag than more desktop-oriented options such as ALSA. Additionally, a test USE flag was added. When disabled, tests are not run. Tests depend on sndfile. Closes: https://bugs.gentoo.org/921846 Signed-off-by: Seth M. Price <sprice623@aol.com>
37 lines
808 B
Bash
37 lines
808 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="General-purpose software audio FSK modem"
|
|
HOMEPAGE="http://www.whence.com/minimodem/"
|
|
SRC_URI="http://www.whence.com/minimodem/minimodem-${PV}.tar.gz"
|
|
|
|
LICENSE="GPL-3+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="alsa pulseaudio +sndfile sndio test"
|
|
REQUIRED_USE+="|| ( alsa pulseaudio sndfile )
|
|
test? ( sndfile )"
|
|
|
|
RESTRICT="!test? ( test )"
|
|
|
|
DEPEND="sndfile? ( media-libs/libsndfile )
|
|
sci-libs/fftw:3.0
|
|
alsa? ( media-libs/alsa-lib )
|
|
pulseaudio? ( media-libs/libpulse )
|
|
sndio? ( media-sound/sndio )"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_prepare() {
|
|
eautoreconf
|
|
eapply_user
|
|
}
|
|
|
|
src_configure() {
|
|
my_args="$(use_with alsa) $(use_with pulseaudio) $(use_with sndfile)"
|
|
econf $my_args
|
|
}
|