diff options
author | Alexey Sokolov <alexey+gentoo@asokolov.org> | 2022-01-11 19:28:02 +0000 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2022-01-12 09:34:36 +0100 |
commit | 54a23786de97567ce2c3c32c5989fb96d65c7026 (patch) | |
tree | bc190adb4dce4bdc4262c15e0f43e11fdf881bab /media-sound | |
parent | media-sound/scream: version 3.9 (diff) | |
download | gentoo-54a23786de97567ce2c3c32c5989fb96d65c7026.tar.gz gentoo-54a23786de97567ce2c3c32c5989fb96d65c7026.tar.bz2 gentoo-54a23786de97567ce2c3c32c5989fb96d65c7026.zip |
media-sound/scream: drop old
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org>
Closes: https://github.com/gentoo/gentoo/pull/23743
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/scream/Manifest | 1 | ||||
-rw-r--r-- | media-sound/scream/scream-3.8.ebuild | 43 |
2 files changed, 0 insertions, 44 deletions
diff --git a/media-sound/scream/Manifest b/media-sound/scream/Manifest index b3e52d7a1dfc..99e80ea18113 100644 --- a/media-sound/scream/Manifest +++ b/media-sound/scream/Manifest @@ -1,2 +1 @@ -DIST scream-3.8.tar.gz 1114613 BLAKE2B 7c178477bbe2e1079394319657ff5bef2cacddb7ebbac0c527ff676ebd1fb66c4f00cff6578202deda96baa78d1d3a95a994e658d2bc893f10a3f3f13cf3d2eb SHA512 0ec3e68177a5852528b8dc0eed35088c7b399a59762063c5f08e06581340884123d37aebcedc0534acfb0ab0702c2d6dfc033cfcbf6d7e80faf8963ab0827983 DIST scream-3.9.tar.gz 1114518 BLAKE2B f7ae8ca69bc786fdb8055b2d1d5cd8fb9350c147465e1d75936defba8ea630351b4a559e508ef3b1f3bbd24d9b2bf96b6450577c7e5e334aacfd54f71efc5928 SHA512 83cb5b9daca82395b955fc8e01be4a466c6ebcc3839179c47912a78294ca98abed3833b6c636632a37e9d944750f56680a2a55975376756d183c9ed9b1d3dede diff --git a/media-sound/scream/scream-3.8.ebuild b/media-sound/scream/scream-3.8.ebuild deleted file mode 100644 index 82133a82fe29..000000000000 --- a/media-sound/scream/scream-3.8.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 2020-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="Plays sound received from network or from a QEMU Windows VM" -HOMEPAGE="https://github.com/duncanthrax/scream" -S="${WORKDIR}/${P}/Receivers/unix" - -if [[ ${PV} == *9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/duncanthrax/scream.git" -else - SRC_URI="https://github.com/duncanthrax/scream/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" -fi - -LICENSE="Ms-PL" -SLOT="0" -IUSE="alsa jack pcap pulseaudio" - -RDEPEND=" - alsa? ( media-libs/alsa-lib ) - jack? ( - media-libs/soxr - virtual/jack - ) - pcap? ( net-libs/libpcap ) - pulseaudio? ( media-sound/pulseaudio )" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -src_configure() { - local mycmakeargs=( - -DALSA_ENABLE=$(usex alsa) - -DJACK_ENABLE=$(usex jack) - -DPCAP_ENABLE=$(usex pcap) - -DPULSEAUDIO_ENABLE=$(usex pulseaudio) - ) - cmake_src_configure -} |