Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/xwax/
Date: Sat, 30 Mar 2019 10:00:01
Message-Id: 1553939903.733b168e58385abbeaf41f31242d4ae9c12981da.asturm@gentoo
1 commit: 733b168e58385abbeaf41f31242d4ae9c12981da
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 30 09:29:11 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 30 09:58:23 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=733b168e
7
8 media-sound/xwax: EAPI-7 bump, https
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-sound/xwax/xwax-1.6.ebuild | 29 +++++++++++++++++------------
14 1 file changed, 17 insertions(+), 12 deletions(-)
15
16 diff --git a/media-sound/xwax/xwax-1.6.ebuild b/media-sound/xwax/xwax-1.6.ebuild
17 index 89ce08abad3..d265c8017b5 100644
18 --- a/media-sound/xwax/xwax-1.6.ebuild
19 +++ b/media-sound/xwax/xwax-1.6.ebuild
20 @@ -1,35 +1,40 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 +# Copyright 1999-2019 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=5
26 +EAPI=7
27 +
28 inherit toolchain-funcs user
29
30 DESCRIPTION="Digital vinyl emulation software"
31 -HOMEPAGE="http://xwax.org/"
32 -SRC_URI="http://xwax.org/releases/${P}.tar.gz"
33 +HOMEPAGE="https://xwax.org/"
34 +SRC_URI="https://xwax.org/releases/${P}.tar.gz"
35
36 LICENSE="GPL-2"
37 SLOT="0"
38 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
39 IUSE="alsa jack oss cdda mp3 +fallback"
40 +
41 REQUIRED_USE="|| ( cdda mp3 fallback )
42 || ( alsa jack oss )"
43
44 -RDEPEND="sys-libs/glibc
45 - sys-libs/pam
46 +DEPEND="
47 + media-fonts/dejavu
48 media-libs/libsdl
49 media-libs/sdl-ttf
50 - media-fonts/dejavu
51 + sys-libs/glibc
52 + sys-libs/pam
53 alsa? ( media-libs/alsa-lib )
54 - jack? ( media-sound/jack-audio-connection-kit )
55 cdda? ( media-sound/cdparanoia )
56 + fallback? ( virtual/ffmpeg )
57 + jack? ( media-sound/jack-audio-connection-kit )
58 mp3? ( media-sound/mpg123 )
59 - fallback? ( virtual/ffmpeg )"
60 -DEPEND="${RDEPEND}"
61 +"
62 +RDEPEND="${DEPEND}"
63
64 -DOCS="README CHANGES"
65 +DOCS=( README CHANGES )
66
67 src_prepare() {
68 + default
69 # Remove the forced optimization from 'CFLAGS' and 'LDFLAGS' in
70 # the Makefile
71 # Also remove the dependency on the .version target so we don't need
72 @@ -42,7 +47,7 @@ src_prepare() {
73 src_configure() {
74 tc-export CC
75 econf \
76 - --prefix "${EROOT}usr" \
77 + --prefix "${EROOT}/usr" \
78 $(use_enable alsa) \
79 $(use_enable jack) \
80 $(use_enable oss)