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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D7C8F1580FD for ; Sat, 28 Dec 2024 00:05:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 018A6E0831; Sat, 28 Dec 2024 00:05:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CBCF1E082F for ; Sat, 28 Dec 2024 00:05:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1F6C833E3A9 for ; Sat, 28 Dec 2024 00:05:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 47B8B194F for ; Sat, 28 Dec 2024 00:05:38 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1735344290.42e833e8080e30daa8f65f0cd63dd2c58c983074.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/streamtuner/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/streamtuner/streamtuner-0.99.99-r7.ebuild X-VCS-Directories: net-misc/streamtuner/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 42e833e8080e30daa8f65f0cd63dd2c58c983074 X-VCS-Branch: master Date: Sat, 28 Dec 2024 00:05:38 +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: 6a2a55fb-c9bb-45bc-8654-68fe6a54764d X-Archives-Hash: 1bee034cc89f4e44ece15faaa6bec90b commit: 42e833e8080e30daa8f65f0cd63dd2c58c983074 Author: Nicolas PARLANT parhuet fr> AuthorDate: Wed Dec 25 21:33:21 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Dec 28 00:04:50 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42e833e8 net-misc/streamtuner: Add media-libs/taglib:= slot op, ABI break imminent Committer-comment: de-stabilising not necessary Signed-off-by: Nicolas PARLANT parhuet.fr> Signed-off-by: Andreas Sturmlechner gentoo.org> net-misc/streamtuner/streamtuner-0.99.99-r7.ebuild | 57 ++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/net-misc/streamtuner/streamtuner-0.99.99-r7.ebuild b/net-misc/streamtuner/streamtuner-0.99.99-r7.ebuild new file mode 100644 index 000000000000..f0100a083d3c --- /dev/null +++ b/net-misc/streamtuner/streamtuner-0.99.99-r7.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +GNOME2_EAUTORECONF="yes" +inherit gnome2 + +DESCRIPTION="Stream directory browser for browsing internet radio streams" +HOMEPAGE="https://www.nongnu.org/streamtuner/" +SRC_URI=" + https://savannah.nongnu.org/download/${PN}/${P}.tar.gz + https://savannah.nongnu.org/download/${PN}/${P}-pygtk-2.6.diff" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="amd64 ~ppc ~sparc x86" +IUSE="+shout +xiph" + +RDEPEND=" + >=x11-libs/gtk+-2.4:2 + net-misc/curl + xiph? ( dev-libs/libxml2:2 ) + media-libs/taglib:= + x11-misc/xdg-utils" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-build/gtk-doc-am + virtual/pkgconfig" + +src_prepare() { + eapply "${FILESDIR}"/${P}-gentoo.patch + eapply "${FILESDIR}"/${P}-shoutcast.patch + eapply "${FILESDIR}"/${P}-shoutcast-2.patch + eapply "${FILESDIR}"/${P}-audacious.patch + eapply -p0 "${DISTDIR}"/${P}-pygtk-2.6.diff + eapply "${FILESDIR}"/${P}-stack_increase.patch + + # Fix .desktop file + sed -i \ + -e 's/streamtuner.png/streamtuner/' \ + -e 's/Categories=Application;/Categories=/' \ + data/streamtuner.desktop.in || die + + gnome2_src_prepare +} + +src_configure() { + # live365 causes parse errors at connect time + # The right value for compile-warning for this is 'yes' (#481124) + gnome2_src_configure \ + --enable-compile-warnings=yes \ + --disable-live365 \ + --disable-python \ + $(use_enable shout shoutcast) \ + $(use_enable xiph) +}