diff options
author | 2022-07-29 23:38:16 +0200 | |
---|---|---|
committer | 2022-07-29 23:38:16 +0200 | |
commit | bb0ce052fbbba73856638ad11276f2f39eb94574 (patch) | |
tree | f58bea796c7c215a459075775b91a5dc6d192b6b /media-sound/ezstream/ezstream-0.6.0-r2.ebuild | |
parent | media-sound/easytag: update EAPI 6 -> 8 (diff) | |
download | gentoo-bb0ce052fbbba73856638ad11276f2f39eb94574.tar.gz gentoo-bb0ce052fbbba73856638ad11276f2f39eb94574.tar.bz2 gentoo-bb0ce052fbbba73856638ad11276f2f39eb94574.zip |
media-sound/ezstream: update EAPI 6 -> 8
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-sound/ezstream/ezstream-0.6.0-r2.ebuild')
-rw-r--r-- | media-sound/ezstream/ezstream-0.6.0-r2.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/media-sound/ezstream/ezstream-0.6.0-r2.ebuild b/media-sound/ezstream/ezstream-0.6.0-r2.ebuild new file mode 100644 index 000000000000..d9cb6fb09888 --- /dev/null +++ b/media-sound/ezstream/ezstream-0.6.0-r2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2022 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 +} |