gentoo-ebuilds/media-sound/ezstream/ezstream-0.6.0-r4.ebuild
Alfred Wingate ec95f90be5
media-sound/ezstream: add dev-libs/libxml2 subslot op for incoming ABI break
Signed-off-by: Alfred Wingate <parona@protonmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/41919
Signed-off-by: Sam James <sam@gentoo.org>
2025-06-09 04:10:36 +01:00

38 lines
848 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A command line source client for Icecast media streaming servers"
HOMEPAGE="https://www.icecast.org/ezstream/"
SRC_URI="http://downloads.xiph.org/releases/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="taglib"
DEPEND="
dev-libs/libxml2:=
>=media-libs/libshout-2.2
!taglib? ( media-libs/libvorbis )
taglib? ( media-libs/taglib:= )"
RDEPEND="
${DEPEND}
net-misc/icecast"
BDEPEND="virtual/pkgconfig"
src_configure() {
econf \
--enable-examplesdir='$(docdir)/examples' \
$(use_with taglib taglib "${ESYSROOT}"/usr)
}
src_install() {
default
newinitd "${FILESDIR}"/${PN}.initd ${PN}
newconfd "${FILESDIR}"/${PN}.confd ${PN}
rm -f "${ED}"/usr/share/doc/${PF}/COPYING || die
}