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/awesfx/
Date: Sat, 30 Mar 2019 10:00:07
Message-Id: 1553939904.907d388f263c89e0f04552b93ac442ded1e1f8b1.asturm@gentoo
1 commit: 907d388f263c89e0f04552b93ac442ded1e1f8b1
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 30 09:51:14 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 30 09:58:24 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=907d388f
7
8 media-sound/awesfx: EAPI-7 bump, missing || die
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/awesfx/awesfx-0.5.1e.ebuild | 10 +++++-----
14 1 file changed, 5 insertions(+), 5 deletions(-)
15
16 diff --git a/media-sound/awesfx/awesfx-0.5.1e.ebuild b/media-sound/awesfx/awesfx-0.5.1e.ebuild
17 index 1c993f91976..2e218cacb6b 100644
18 --- a/media-sound/awesfx/awesfx-0.5.1e.ebuild
19 +++ b/media-sound/awesfx/awesfx-0.5.1e.ebuild
20 @@ -1,7 +1,7 @@
21 -# Copyright 1999-2015 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 DESCRIPTION="AWE32 Sound Driver Utility Programs"
29 HOMEPAGE="http://ftp.suse.com/pub/people/tiwai/awesfx"
30 @@ -12,8 +12,8 @@ SLOT="0"
31 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
32 IUSE=""
33
34 -RDEPEND="media-libs/alsa-lib"
35 -DEPEND="${RDEPEND}"
36 +DEPEND="media-libs/alsa-lib"
37 +RDEPEND="${DEPEND}"
38
39 BANK_LOC="${EPREFIX}/usr/share/sounds/sf2"
40
41 @@ -27,7 +27,7 @@ src_configure() {
42 src_install() {
43 default
44
45 - rm -f "${ED}"/usr/share/sounds/sf2/README-bank
46 + rm "${ED}"/usr/share/sounds/sf2/README-bank || die
47 newinitd "${FILESDIR}"/sfxload.initd sfxload
48 newconfd "${FILESDIR}"/sfxload.confd sfxload
49 }