net-libs/liquid-dsp: drop 1.6.0

Closes: https://bugs.gentoo.org/926131
Signed-off-by: Rick Farina <zerochaos@gentoo.org>
This commit is contained in:
Rick Farina 2025-09-11 21:39:45 -04:00
parent 43f78d7884
commit 286c8631a0
No known key found for this signature in database
GPG Key ID: A29433C0AA431DDC
2 changed files with 0 additions and 43 deletions

View File

@ -1,2 +1 @@
DIST liquid-dsp-1.6.0.tar.gz 1243435 BLAKE2B 5bfb93e1b3396d654a78ab153d963df80ed7f23b5023c26302d229bd4109a54d7f72862d15f1fe8f2d27371509010c8571734e5e173efcb75a13923b00dbed40 SHA512 2567d03515e87ab0c047158aeaabb560be711ac54d0b8294b19782104089c4cc61e5b1ec6d3e9ab78162224d4a2d4623e3694e497572d573cb4ce6f451d0a078
DIST liquid-dsp-1.7.0.tar.gz 1281395 BLAKE2B fdeb3ee3eaef6fe94fc72d00a7a8ffc7e607b7a9170c60a32b28b48700edd27fd5bbc048dffa36e10cb0e99b8a4ae6a5387f8f5c2fa64928c9b8d10381d0aa47 SHA512 04988cfc68ea562a47f16f5232e5eafada29d37e517ccfadd8dac9d83270c2cc2c1b5e9725e92b7cf6fed6d954aaa89b254038a2d7481e87202048a9521e4e22

View File

@ -1,42 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="digital signal processing library for software-defined radios"
HOMEPAGE="https://liquidsdr.org"
LICENSE="MIT"
SLOT="0"
if [ "${PV}" = "9999" ]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/jgaeddert/liquid-dsp.git"
else
KEYWORDS="~amd64 ~x86"
SRC_URI="https://github.com/jgaeddert/liquid-dsp/archive/v${PV}.tar.gz -> ${P}.tar.gz"
fi
IUSE="static-libs"
DEPEND="sci-libs/fftw:3.0="
RDEPEND="${DEPEND}"
src_prepare() {
eapply_user
eautoreconf
}
src_configure() {
#without this rather odd looking bit, it installs libraries into /usr/usr/$(get_libdir)
#what is super special is that if exec-prefix is unset, libdir is lib64...
#but if exec-prefix is default then libdir ends up as /usr/lib64 in makefile...
econf --exec-prefix="" --libdir="/usr/$(get_libdir)"
}
src_install() {
default
! use static-libs && rm "${ED}"/usr/"$(get_libdir)"/libliquid.a
}