media-sound/libcava: drop 0.10.6

Signed-off-by: Ceres <ceres@ceressees.dev>
This commit is contained in:
Ceres
2026-03-15 14:21:37 +00:00
parent 5f1566abd2
commit eb78cd42d6
2 changed files with 0 additions and 70 deletions

View File

@@ -1,2 +1 @@
DIST libcava-0.10.6.tar.gz 3331694 BLAKE2B 9b091e257d1972d488a78fcf21a81c38f20ef3f2074516f87b008896c940617df7ac755937e73349ea94582b9b40e2202cc3cbffc55bceb8105d96629f492048 SHA512 e4ce21d4012780ff9c9576691c130751dea48c5b78fa54c6e3226d87153928161976bac6e973d824235d733e3b509fdc5ab07c0582037a52d92869d2034f8e86
DIST libcava-0.10.7.tar.gz 3341992 BLAKE2B 147a9e9b7700300b018faffa9684ce680b9e2e5a5c8554bb3057e408b755d13981a9e461ea56e388bb9804bbc27905d5730fc690e3687f637bceb4a59a66f8e3 SHA512 d8ec3d4bde04c06286e44d52b7a4dcbe48e94e6b1f94cfa0756e9c4933679a16ca7f256ccb43d5e9a75efeea06ccca55da79e84853c87207374cc6f451c624aa

View File

@@ -1,69 +0,0 @@
# Copyright 2022-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="Console-based Audio Visualizer for Alsa"
HOMEPAGE="https://github.com/LukashonakV/cava/"
SRC_URI="https://github.com/LukashonakV/cava/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/cava-${PV}"
LICENSE="MIT Unlicense"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
IUSE="alsa jack +ncurses pipewire portaudio pulseaudio sdl sndio"
RDEPEND="
dev-libs/iniparser
sci-libs/fftw:3.0=
alsa? ( media-libs/alsa-lib )
jack? ( virtual/jack )
ncurses? ( sys-libs/ncurses:= )
pipewire? ( media-video/pipewire:= )
portaudio? ( media-libs/portaudio )
pulseaudio? ( media-libs/libpulse )
sdl? (
media-libs/libglvnd
media-libs/libsdl2[opengl,video]
)
sndio? ( media-sound/sndio:= )
"
DEPEND="${RDEPEND}
virtual/pkgconfig
"
MYMESONARGS="-Dcava_font=false"
src_prepare() {
default
echo ${PV} > version || die
}
src_configure() {
meson_src_configure
}
src_compile() {
mkdir -p "${BUILD_DIR}"/example_files || die
cp "${S}"/example_files/config "${BUILD_DIR}"/example_files/ || die
mkdir -p "${BUILD_DIR}"/src/output/{shaders,themes} || die
cp "${S}"/src/output/shaders/* "${BUILD_DIR}"/src/output/shaders/ || die
cp "${S}"/src/output/themes/* "${BUILD_DIR}"/src/output/themes/ || die
meson_src_compile
}
pkg_postinst() {
if [[ -z ${REPLACING_VERSIONS} ]]; then
elog "A default ~/.config/cava/config will be created after initial"
elog "use of ${PN}, see it and ${EROOT}/usr/share/doc/${PF}/README*"
elog "for configuring audio input and more."
elif ver_test ${REPLACING_VERSIONS##* } -lt 0.9; then
elog "If used, the noise_reduction config option in ~/.config/cava/config needs"
elog "to be updated from taking a float to integer (e.g. replace 0.77 with 77)."
fi
}