net-dialup/minimodem: new package, add 0.24

Signed-off-by: Seth M. Price <sprice623@aol.com>
This commit is contained in:
Seth M. Price
2024-01-07 14:04:13 -05:00
parent c8cbf3c832
commit 2faad3d3ec
3 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST minimodem-0.24.tar.gz 159508 BLAKE2B a08c2ef87ed6d50d5bae390d97a384591da9612e4b60b10fc373fa00bceb60a3f67389179c92303a9d3008184f141d37753043355fe9de04429e5e9f8c9b8167 SHA512 5c3a5e6f185d4b09c5f24d776393f2e2d5d787c097c44490905119513b9b39db53b7f2f7e624a4b527e8e8e827a5b99af6b0df5ca525046f60b49fe9ba2b0ceb

View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<name>Seth M. Price</name>
<email>sprice623@aol.com</email>
</maintainer>
<longdescription lang="en">
Minimodem is a command-line program which decodes (or generates)
audio modem tones at any specified baud rate, using various
framing protocols. It acts a general-purpose software FSK modem,
and includes support for various standard FSK protocols such as
Bell103, Bell202, RTTY, TTY/TDD, NOAA SAME, and Caller-ID.
</longdescription>
<use>
<flag name="sndio">Enable support for the <pkg>media-sound/sndio</pkg> backend</flag>
</use>
<upstream>
<bugs-to>https://github.com/kamalmostafa/minimodem/issues</bugs-to>
<remote-id type="github">kamalmostafa/minimodem</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,32 @@
# 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"
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
}