diff options
author | Jakov Smolic <jakov.smolic@sartura.hr> | 2021-07-19 19:51:19 +0100 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2021-07-29 13:46:06 +0300 |
commit | 8476a0fa92485d7b5a363ddffcc1239c3ae0ca88 (patch) | |
tree | 147ced0ac85d54d5469454ae4ebbdbda3d991d05 /media-sound | |
parent | media-sound/snapcast: Version bump to 0.25.0 (diff) | |
download | gentoo-8476a0fa92485d7b5a363ddffcc1239c3ae0ca88.tar.gz gentoo-8476a0fa92485d7b5a363ddffcc1239c3ae0ca88.tar.bz2 gentoo-8476a0fa92485d7b5a363ddffcc1239c3ae0ca88.zip |
media-sound/snapcast: Remove 9999 ebuild
* There is no real benefit in having a live ebuild
for this package so let's just remove it
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
Closes: https://github.com/gentoo/gentoo/pull/21716
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/snapcast/snapcast-9999.ebuild | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/media-sound/snapcast/snapcast-9999.ebuild b/media-sound/snapcast/snapcast-9999.ebuild deleted file mode 100644 index 6228cd7ec667..000000000000 --- a/media-sound/snapcast/snapcast-9999.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="Synchronous multi-room audio player" -HOMEPAGE="https://github.com/badaix/snapcast" - -if [[ ${PV} == 9999 ]] ; then - inherit git-r3 - - EGIT_REPO_URI="https://github.com/badaix/snapcast.git" - EGIT_BRANCH="develop" -else - SRC_URI="https://github.com/badaix/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="GPL-3+" -SLOT="0" -IUSE="+client +expat +flac +opus +server static-libs tremor +vorbis +zeroconf" - -REQUIRED_USE="|| ( server client )" - -RDEPEND="client? ( - acct-user/snapclient - media-libs/alsa-lib ) - expat? ( dev-libs/expat ) - flac? ( media-libs/flac ) - opus? ( media-libs/opus ) - server? ( - acct-group/snapserver - acct-user/snapserver ) - tremor? ( media-libs/tremor ) - vorbis? ( media-libs/libvorbis ) - zeroconf? ( net-dns/avahi[dbus] )" -DEPEND="${RDEPEND} - >=dev-cpp/aixlog-1.2.1 - >=dev-cpp/asio-1.12.1 - >=dev-cpp/popl-1.2.0" - -src_configure() { - local mycmakeargs=( - -DBUILD_CLIENT=$(usex client) - -DBUILD_WITH_EXPAT=$(usex expat) - -DBUILD_WITH_FLAC=$(usex flac) - -DBUILD_WITH_OPUS=$(usex opus) - -DBUILD_SERVER=$(usex server) - -DBUILD_STATIC_LIBS=$(usex static-libs) - -DBUILD_TESTS=no - -DBUILD_WITH_TREMOR=$(usex tremor) - -DBUILD_WITH_VORBIS=$(usex vorbis) - -DBUILD_WITH_AVAHI=$(usex zeroconf) - ) - - cmake_src_configure -} - -src_install() { - cmake_src_install - - for bin in server client ; do - if use ${bin} ; then - doman "${bin}/snap${bin}.1" - - newconfd "${FILESDIR}/snap${bin}.confd" "snap${bin}" - newinitd "${FILESDIR}/snap${bin}.initd" "snap${bin}" - fi - done -} |