Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/audacious/
Date: Wed, 01 Dec 2021 21:27:29
Message-Id: 1638394033.8b8f7b8639cf371ecd017e06a40fd59fd13a0b10.sam@gentoo
1 commit: 8b8f7b8639cf371ecd017e06a40fd59fd13a0b10
2 Author: Marco Scardovi <marco <AT> scardovi <DOT> com>
3 AuthorDate: Sun Nov 21 21:46:09 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 1 21:27:13 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b8f7b86
7
8 media-sound/audacious: drop live package
9
10 I'm not gonna maintain it so move back to 4.x version
11
12 Package-Manager: Portage-3.0.28, Repoman-3.0.3
13 Signed-off-by: Marco Scardovi <marco <AT> scardovi.com>
14 Signed-off-by: Sam James <sam <AT> gentoo.org>
15
16 media-sound/audacious/audacious-9999.ebuild | 81 -----------------------------
17 1 file changed, 81 deletions(-)
18
19 diff --git a/media-sound/audacious/audacious-9999.ebuild b/media-sound/audacious/audacious-9999.ebuild
20 deleted file mode 100644
21 index a292996186c1..000000000000
22 --- a/media-sound/audacious/audacious-9999.ebuild
23 +++ /dev/null
24 @@ -1,81 +0,0 @@
25 -# Copyright 1999-2021 Gentoo Authors
26 -# Distributed under the terms of the GNU General Public License v2
27 -
28 -EAPI=7
29 -
30 -MY_P="${P/_/-}"
31 -
32 -if [[ ${PV} == *9999 ]]; then
33 - inherit autotools git-r3
34 - EGIT_REPO_URI="https://github.com/audacious-media-player/audacious.git"
35 -else
36 - SRC_URI="https://distfiles.audacious-media-player.org/${MY_P}.tar.bz2"
37 - KEYWORDS="~amd64 ~riscv ~x86"
38 -fi
39 -inherit xdg
40 -
41 -DESCRIPTION="Lightweight and versatile audio player"
42 -HOMEPAGE="https://audacious-media-player.org/"
43 -SRC_URI+=" mirror://gentoo/gentoo_ice-xmms-0.2.tar.bz2"
44 -
45 -LICENSE="BSD-2"
46 -SLOT="0"
47 -IUSE="nls"
48 -
49 -BDEPEND="
50 - virtual/pkgconfig
51 - nls? ( dev-util/intltool )
52 -"
53 -DEPEND="
54 - >=dev-libs/dbus-glib-0.60
55 - >=dev-libs/glib-2.28
56 - dev-qt/qtcore:5
57 - dev-qt/qtgui:5
58 - dev-qt/qtwidgets:5
59 - >=x11-libs/cairo-1.2.6
60 - >=x11-libs/pango-1.8.0
61 - virtual/freedesktop-icon-theme
62 -"
63 -RDEPEND="${DEPEND}"
64 -PDEPEND="~media-plugins/audacious-plugins-${PV}"
65 -
66 -S="${WORKDIR}/${MY_P}"
67 -
68 -src_unpack() {
69 - default
70 - [[ ${PV} == *9999 ]] && git-r3_src_unpack
71 -}
72 -
73 -src_prepare() {
74 - default
75 - if ! use nls; then
76 - sed -e "/SUBDIRS/s/ po//" -i Makefile || die # bug #512698
77 - fi
78 - [[ ${PV} == *9999 ]] && eautoreconf
79 -}
80 -
81 -src_configure() {
82 - # D-Bus is a mandatory dependency, remote control,
83 - # session management and some plugins depend on this.
84 - # Building without D-Bus is *unsupported* and a USE-flag
85 - # will not be added due to the bug reports that will result.
86 - # Bugs #197894, #199069, #207330, #208606
87 - local myeconfargs=(
88 - --disable-valgrind
89 - --disable-gtk
90 - --enable-dbus
91 - --enable-qt
92 - $(use_enable nls)
93 - )
94 - econf "${myeconfargs[@]}"
95 -}
96 -
97 -src_install() {
98 - default
99 -
100 - # Gentoo_ice skin installation; bug #109772
101 - insinto /usr/share/audacious/Skins/gentoo_ice
102 - doins -r "${WORKDIR}"/gentoo_ice/.
103 - docinto gentoo_ice
104 - dodoc "${WORKDIR}"/README
105 -}