From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 653B0139345 for ; Tue, 13 Jul 2021 20:57:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A4B6E0D8D; Tue, 13 Jul 2021 20:57:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 669CFE0D7F for ; Tue, 13 Jul 2021 20:57:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 615B0342D15 for ; Tue, 13 Jul 2021 20:57:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B1DDE7D8 for ; Tue, 13 Jul 2021 20:57:29 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1626209703.f0b21f32d0517d81adb55f6627089713d4bc3a00.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/ices/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/ices/ices-2.0.2-r1.ebuild X-VCS-Directories: net-misc/ices/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: f0b21f32d0517d81adb55f6627089713d4bc3a00 X-VCS-Branch: master Date: Tue, 13 Jul 2021 20:57:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e4d8d393-4f5d-4033-b5b9-93d32c04dcbe X-Archives-Hash: d384428679ebf3c22fdee58ca23c577f commit: f0b21f32d0517d81adb55f6627089713d4bc3a00 Author: Conrad Kostecki gentoo org> AuthorDate: Tue Jul 13 19:12:53 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Tue Jul 13 20:55:03 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0b21f32 net-misc/ices: migrate to GLEP 81 Bug: https://bugs.gentoo.org/781419 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Conrad Kostecki gentoo.org> net-misc/ices/ices-2.0.2-r1.ebuild | 39 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/net-misc/ices/ices-2.0.2-r1.ebuild b/net-misc/ices/ices-2.0.2-r1.ebuild new file mode 100644 index 00000000000..001620dd1b7 --- /dev/null +++ b/net-misc/ices/ices-2.0.2-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Icecast OGG streaming client, supports on the fly re-encoding" +HOMEPAGE="https://icecast.org/ices/" +SRC_URI="http://downloads.xiph.org/releases/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha amd64 ~arm ppc64 sparc x86" + +RDEPEND=" + acct-group/ices + acct-user/ices + dev-libs/libxml2 + >=media-libs/libshout-2 + >=media-libs/libvorbis-1 +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_configure() { + econf --sysconfdir=/etc/ices2 +} + +src_install() { + default + insinto /etc/ices2 + doins conf/*.xml + docinto html + dodoc doc/*.{html,css} + newinitd "${FILESDIR}"/ices.initd-r1 ices + keepdir /var/log/ices + fperms 660 /var/log/ices + fowners ices:ices /var/log/ices + rm -rf "${D}"/usr/share/ices +}