public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Miroslav Šulc" <fordfrog@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/alsaplayer/, media-sound/alsaplayer/files/
Date: Wed, 13 Nov 2024 10:04:55 +0000 (UTC)	[thread overview]
Message-ID: <1731492292.71e3d4ee0e9345ac76e1acbda21f6f49b710ac20.fordfrog@gentoo> (raw)

commit:     71e3d4ee0e9345ac76e1acbda21f6f49b710ac20
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 13 10:04:41 2024 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Wed Nov 13 10:04:52 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71e3d4ee

media-sound/alsaplayer: dropped obsolete 0.99.81-r4

Bug: https://bugs.gentoo.org/941106
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-sound/alsaplayer/Manifest                    |  1 -
 .../alsaplayer/alsaplayer-0.99.81-r4.ebuild        | 83 ----------------------
 .../files/alsaplayer-0.99.81-autotools.patch       | 37 ----------
 3 files changed, 121 deletions(-)

diff --git a/media-sound/alsaplayer/Manifest b/media-sound/alsaplayer/Manifest
index 50ca52c5345c..1ac14897bad1 100644
--- a/media-sound/alsaplayer/Manifest
+++ b/media-sound/alsaplayer/Manifest
@@ -1,2 +1 @@
-DIST alsaplayer-0.99.81.tar.bz2 806906 BLAKE2B 6b37aaa65f6426a43483c3fa7e077ca89ce553655587e0f44ac61ade5d4f5467a304e18ef0142336b0cc94311498ccaa16d9ed2d6eb8109474626c6d1a4ca97d SHA512 6723b36837d01f14645bb1d43ec7c54c85e8afed9b020f56dc81b4de64b74e4da2504507fe83954c7b26817e90510c585d09e759fc11e731d4d27e86f3932650
 DIST alsaplayer-0.99.82.tar.gz 1087776 BLAKE2B 34a197799da90c2dfe08b4a85baa3ac47d1b21e919908981c6ff3993a16fa1b97814cab54aae84be9e1da8fa3395952ef8fef85fe153a528ea3a6d6cd0f20658 SHA512 749fb8581d766df28a1ec42af9888fda0665ffcc0bb85a489365ae02611bc90a6cfc42d9c2cb19a3eeb385fb2c401b9d16e864a22887d8d6b6de3a55ebc140e2

diff --git a/media-sound/alsaplayer/alsaplayer-0.99.81-r4.ebuild b/media-sound/alsaplayer/alsaplayer-0.99.81-r4.ebuild
deleted file mode 100644
index 90a7f0517f13..000000000000
--- a/media-sound/alsaplayer/alsaplayer-0.99.81-r4.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools desktop flag-o-matic xdg
-
-DESCRIPTION="A heavily multi-threaded pluggable audio player"
-HOMEPAGE="https://alsaplayer.sourceforge.net/"
-SRC_URI="https://alsaplayer.sourceforge.net/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~mips ~ppc ~riscv ~sparc x86"
-IUSE="+alsa audiofile doc flac gtk id3tag jack mad mikmod nas nls ogg opengl oss vorbis xosd"
-REQUIRED_USE="|| ( alsa jack nas oss )"
-
-RDEPEND="
-	media-libs/libsndfile:=
-	sys-libs/zlib:=
-	alsa? ( media-libs/alsa-lib )
-	audiofile? ( media-libs/audiofile:= )
-	flac? ( media-libs/flac:= )
-	gtk? ( >=x11-libs/gtk+-2.10:2 )
-	id3tag? ( media-libs/libid3tag:= )
-	jack? ( virtual/jack )
-	mad? ( media-libs/libmad )
-	mikmod? ( media-libs/libmikmod:0 )
-	nas? ( media-libs/nas )
-	ogg? ( media-libs/libogg )
-	opengl? ( virtual/opengl )
-	vorbis? ( media-libs/libvorbis )
-	xosd? ( x11-libs/xosd )"
-DEPEND="${RDEPEND}
-	oss? ( virtual/os-headers )"
-BDEPEND="
-	sys-devel/gettext
-	virtual/pkgconfig
-	doc? ( app-text/doxygen )"
-
-PATCHES=( "${FILESDIR}"/${P}-autotools.patch )
-
-src_prepare() {
-	default
-	cp "${BROOT}"/usr/share/gettext/config.rpath . || die
-	eautoreconf
-}
-
-src_configure() {
-	# -Werror=odr
-	# https://bugs.gentoo.org/860423
-	# https://github.com/alsaplayer/alsaplayer/issues/28
-	filter-lto
-
-	export ac_cv_prog_HAVE_DOXYGEN=$(usex doc true false)
-	export ac_cv_lib_xosd_xosd_create=$(usex xosd)
-
-	econf \
-		--disable-esd \
-		$(use_enable nls) \
-		$(use_enable opengl) \
-		$(use_enable mikmod) \
-		$(use_enable vorbis oggvorbis) \
-		$(use_enable audiofile) \
-		$(use_enable flac) \
-		$(use_enable mad) \
-		$(use_enable id3tag) \
-		$(use_enable gtk systray) \
-		$(use_enable jack) \
-		$(use_enable alsa) \
-		$(use_enable oss) \
-		$(use_enable gtk gtk2) \
-		$(use_enable nas)
-}
-
-src_install() {
-	default
-	dodoc docs/*.txt
-
-	newicon interface/gtk2/pixmaps/logo.xpm ${PN}.xpm
-
-	find "${ED}" -name '*.la' -delete || die
-}

diff --git a/media-sound/alsaplayer/files/alsaplayer-0.99.81-autotools.patch b/media-sound/alsaplayer/files/alsaplayer-0.99.81-autotools.patch
deleted file mode 100644
index b51277317e0f..000000000000
--- a/media-sound/alsaplayer/files/alsaplayer-0.99.81-autotools.patch
+++ /dev/null
@@ -1,37 +0,0 @@
---- a/configure.ac
-+++ b/configure.ac
-@@ -82,11 +82,6 @@
- dnl PKGCONFIG preparations
- dnl ======================
- 
--if test -z $PKG_CONFIG_PATH; then
--	PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/lib/pkgconfig
--fi
--
--export PKG_CONFIG_PATH
- 
- 
- dnl ===============
-@@ -639,10 +634,10 @@
- 
- AC_MSG_CHECKING(for gcc optimization flags)
- old_cflags=$CFLAGS
--CFLAGS="$CFLAGS -O2 -funroll-loops -finline-functions -ffast-math -Wall"
-+CFLAGS="$CFLAGS -Wall"
- AC_TRY_COMPILE([#include <stdio.h>],
- [ printf ("hello, world"); ],
--[ EXTRA_OPT_CFLAGS="$CFLAGS -O2 -funroll-loops -finline-functions -ffast-math -Wall"],[ EXTRA_OPT_CFLAGS=""])
-+[ EXTRA_OPT_CFLAGS="$CFLAGS -Wall"],[ EXTRA_OPT_CFLAGS=""])
- CFLAGS=$old_cflags
- AC_MSG_RESULT([$EXTRA_OPT_CFLAGS])
- 
---- a/output/jack/Makefile.am
-+++ b/output/jack/Makefile.am
-@@ -24,7 +24,6 @@
- 
- AM_CXXFLAGS = $(COMMON_FLAGS) $(JACK_CFLAGS)
- 
--AM_CFLAGS = $(AM_CXXFLAGS)
- 
- libdir = $(ADDON_DIR)/output
- 


             reply	other threads:[~2024-11-13 10:04 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-13 10:04 Miroslav Šulc [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-16  8:16 [gentoo-commits] repo/gentoo:master commit in: media-sound/alsaplayer/, media-sound/alsaplayer/files/ Sam James
2024-09-06  9:42 Miroslav Šulc
2022-07-11  1:15 Sam James
2022-07-10 11:22 David Seifert

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1731492292.71e3d4ee0e9345ac76e1acbda21f6f49b710ac20.fordfrog@gentoo \
    --to=fordfrog@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox