diff options
author | Alexander Tsoy <alexander@tsoy.me> | 2022-10-11 20:17:56 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2022-10-12 19:23:30 +0300 |
commit | 31d01967fd17e068fa3791eb83f16288f9f99aef (patch) | |
tree | 4991a44ca1a995bebf0cd8cc8ff589baaf2f17bb /media-sound | |
parent | media-sound/klick: fix build with clang (diff) | |
download | gentoo-31d01967fd17e068fa3791eb83f16288f9f99aef.tar.gz gentoo-31d01967fd17e068fa3791eb83f16288f9f99aef.tar.bz2 gentoo-31d01967fd17e068fa3791eb83f16288f9f99aef.zip |
media-sound/klick: remove old
Closes: https://github.com/gentoo/gentoo/pull/27550
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/klick/klick-0.12.2-r2.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/media-sound/klick/klick-0.12.2-r2.ebuild b/media-sound/klick/klick-0.12.2-r2.ebuild deleted file mode 100644 index d7417732e2e2..000000000000 --- a/media-sound/klick/klick-0.12.2-r2.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) - -inherit python-any-r1 scons-utils toolchain-funcs - -DESCRIPTION="An advanced command-line based metronome for JACK" -HOMEPAGE="http://das.nasophon.de/klick" -SRC_URI="http://das.nasophon.de/download/${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="debug osc rubberband" - -RDEPEND="media-libs/libsamplerate - media-libs/libsndfile - virtual/jack - osc? ( media-libs/liblo ) - rubberband? ( media-libs/rubberband )" -DEPEND="${RDEPEND} - dev-libs/boost" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${P}-sconstruct.patch - "${FILESDIR}"/${P}-gcc6.patch -) - -HTML_DOCS=( doc/manual.html ) - -src_configure() { - MYSCONS=( - CXX="$(tc-getCXX)" - CXXFLAGS="${CXXFLAGS}" - LINKFLAGS="${LDFLAGS}" - PREFIX="${EPREFIX}/usr" - DESTDIR="${D}" - DEBUG=$(usex debug) - OSC=$(usex osc) - RUBBERBAND=$(usex rubberband) - ) -} - -src_compile() { - escons "${MYSCONS[@]}" -} - -src_install() { - escons "${MYSCONS[@]}" install - einstalldocs -} |