Gentoo Archives: gentoo-commits

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