commit: a4c98d7bd3aa414c16d5dd3da8eda727123341cb Author: Seth M. Price <sprice623 <AT> aol <DOT> com> AuthorDate: Wed Jan 10 00:40:21 2024 +0000 Commit: Seth Price <sprice623 <AT> aol <DOT> com> CommitDate: Wed Jan 10 00:40:21 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a4c98d7b
net-dialup/minimodem: add 9999 Signed-off-by: Seth M. Price <sprice623 <AT> aol.com> net-dialup/minimodem/minimodem-9999.ebuild | 32 ++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/net-dialup/minimodem/minimodem-9999.ebuild b/net-dialup/minimodem/minimodem-9999.ebuild new file mode 100644 index 0000000000..85cb2a58b4 --- /dev/null +++ b/net-dialup/minimodem/minimodem-9999.ebuild @@ -0,0 +1,32 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools git-r3 + +DESCRIPTION="General-purpose software audio FSK modem" +HOMEPAGE="http://www.whence.com/minimodem/" +EGIT_REPO_URI="https://github.com/kamalmostafa/minimodem" + +LICENSE="GPL-3+" +SLOT="0" +IUSE="alsa +pulseaudio sndfile sndio" +REQUIRED_USE+="|| ( alsa pulseaudio sndfile sndio )" + +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) $(use_with sndio)" + econf $my_args +}
