Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/sidplay/
Date: Sun, 27 May 2018 00:15:29
Message-Id: 1527380100.b28abb670c1c3382fac1507f56fb1facd4b40b5f.bman@gentoo
1 commit: b28abb670c1c3382fac1507f56fb1facd4b40b5f
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 26 23:37:19 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sun May 27 00:15:00 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b28abb67
7
8 media-sound/sidplay: bump EAPI and drop eutils
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 media-sound/sidplay/sidplay-2.0.9.ebuild | 15 +++++++--------
13 1 file changed, 7 insertions(+), 8 deletions(-)
14
15 diff --git a/media-sound/sidplay/sidplay-2.0.9.ebuild b/media-sound/sidplay/sidplay-2.0.9.ebuild
16 index 4f38551f8eb..982b4bfc55c 100644
17 --- a/media-sound/sidplay/sidplay-2.0.9.ebuild
18 +++ b/media-sound/sidplay/sidplay-2.0.9.ebuild
19 @@ -1,8 +1,7 @@
20 -# Copyright 1999-2012 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=2
25 -inherit eutils
26 +EAPI=6
27
28 DESCRIPTION="C64 SID player"
29 HOMEPAGE="http://sidplay2.sourceforge.net/"
30 @@ -17,12 +16,12 @@ RDEPEND=">=media-libs/libsidplay-2.1"
31 DEPEND="${RDEPEND}
32 virtual/pkgconfig"
33
34 -src_prepare() {
35 - epatch "${FILESDIR}"/${P}-gcc43.patch \
36 - "${FILESDIR}"/${P}-gcc44.patch
37 -}
38 +PATCHES=(
39 + "${FILESDIR}/${P}-gcc43.patch"
40 + "${FILESDIR}/${P}-gcc44.patch"
41 +)
42
43 src_install () {
44 emake DESTDIR="${D}" install || die "emake install failed"
45 - dodoc TODO AUTHORS ChangeLog
46 + default
47 }