media-sound/chuck: dropped obsolete 1.5.5.0

Bug: https://bugs.gentoo.org/960314
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
Miroslav Šulc
2025-07-17 17:27:36 +02:00
parent 392f8c9ac3
commit dda089d73f
2 changed files with 0 additions and 71 deletions

View File

@@ -1,2 +1 @@
DIST chuck-1.5.5.0.tgz 22341830 BLAKE2B 0f0a374b67eef1a44b2371a03e27185d53483d2ca0ef98b1eba0c353b013a8127fc2ef568fcb4eb1de15712d6768f9c77e318bd8ef5c7636093a3b172aeabf21 SHA512 1c5b0f9bfd7168d4905abd1c256d6a95b8dfbdce009f65e48f571349b22e76ef01e60bf6a5c3dcbd0287a80089fde072cd05cd626f21db6a2a3a458be516c945
DIST chuck-1.5.5.1.tgz 22361428 BLAKE2B dae842e2990ed4fc260b69c309ba6fe8adb8d9dcf2c7c76c5335c6d6239496b9a70e66a8e262a32a6b6879bff04185e1de1de440ab6c4705fb88ed2c99a0940a SHA512 e7d2268f87b551e7b9ae652328773ce2c239620db96dcbaa103345207074f0de1b433c272fb25ba840ba136b4afa1309985fef5d8debef165c5f67ebf4f67134

View File

@@ -1,70 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit flag-o-matic toolchain-funcs
DESCRIPTION="Strongly-timed, concurrent, and on-the-fly audio programming language"
HOMEPAGE="http://chuck.cs.princeton.edu/"
SRC_URI="http://chuck.cs.princeton.edu/release/files/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="+alsa jack examples"
REQUIRED_USE="|| ( alsa jack )"
RDEPEND="app-eselect/eselect-chuck
media-libs/libsndfile
alsa? ( media-libs/alsa-lib )
jack? ( virtual/jack )"
DEPEND="${RDEPEND}
app-alternatives/yacc
app-alternatives/lex"
PATCHES=(
"${FILESDIR}"/${PN}-1.4.0.0-hid-smc.patch
"${FILESDIR}"/${PN}-1.5.3.2-makefile.patch
)
compile_backend() {
backend=$1
pushd "${S}/src" &>/dev/null || die
einfo "Compiling against ${backend}"
emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" LD="$(tc-getCXX)" linux-${backend}
mv chuck{,-${backend}} || die
emake clean
popd &>/dev/null || die
}
src_compile() {
# when compile with athlon or athlon-xp flags
# chuck crashes on removing a shred with a double free or corruption
# it happens in Chuck_VM_Stack::shutdown() on the line
# SAFE_DELETE_ARRAY( stack );
replace-cpu-flags athlon athlon-xp i686
use jack && compile_backend jack
use alsa && compile_backend alsa
}
src_install() {
use jack && dobin src/chuck-jack
use alsa && dobin src/chuck-alsa
dodoc AUTHORS DEVELOPERS QUICKSTART README.md THANKS VERSIONS
if use examples; then
dodoc -r examples
docompress -x /usr/share/doc/${PF}/examples
fi
}
pkg_postinst() {
if [[ -z ${REPLACING_VERSIONS} ]]; then
elog "Chuck now can use multiple audio engines, so you can specify"
elog "the preferred audio engine with chuck-{jack,alsa}"
elog "Or you can use 'eselect chuck' to set the audio engine"
fi
eselect chuck update --if-unset
}