Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/betagarden:master commit in: x11-misc/xsw/
Date: Sun, 04 Jun 2017 18:18:19
Message-Id: 1496600274.5c12b3e01034982d89fe210e29b5d34e5aa81495.jlec@gentoo
1 commit: 5c12b3e01034982d89fe210e29b5d34e5aa81495
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 4 18:17:54 2017 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 4 18:17:54 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/betagarden.git/commit/?id=5c12b3e0
7
8 x11-misc/xsw: Bump to EAPI=6
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 x11-misc/xsw/xsw-0.3.5.ebuild | 18 ++++++++++--------
14 1 file changed, 10 insertions(+), 8 deletions(-)
15
16 diff --git a/x11-misc/xsw/xsw-0.3.5.ebuild b/x11-misc/xsw/xsw-0.3.5.ebuild
17 index b8c6c5e..457616e 100644
18 --- a/x11-misc/xsw/xsw-0.3.5.ebuild
19 +++ b/x11-misc/xsw/xsw-0.3.5.ebuild
20 @@ -1,12 +1,11 @@
21 -# Copyright 1999-2009 Gentoo Foundation
22 +# Copyright 1999-2017 Gentoo Foundation
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI="2"
26 +EAPI=6
27
28 -inherit base autotools
29 +inherit autotools
30
31 DESCRIPTION="Slide show presentation tool"
32 -
33 HOMEPAGE="http://code.google.com/p/xsw/"
34 SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
35
36 @@ -15,19 +14,22 @@ SLOT="0"
37 KEYWORDS="~x86"
38 IUSE="pdf"
39
40 -DEPEND="media-libs/libsdl
41 +DEPEND="
42 + media-libs/libsdl
43 media-libs/sdl-ttf
44 media-libs/sdl-image
45 media-libs/sdl-gfx"
46 RDEPEND="${DEPEND}
47 pdf? ( media-gfx/imagemagick )"
48
49 +PATCHES=( "${FILESDIR}"/${PN}-0.3.5-fix-destdir-remove-usr-local-stuff.patch )
50 +
51 src_prepare() {
52 - epatch "${FILESDIR}"/${PN}-0.3.5-fix-destdir-remove-usr-local-stuff.patch
53 + default
54 eautomake
55 }
56
57 src_install() {
58 - base_src_install
59 - dodoc ChangeLog NEWS README REFERENCE THANKS TODO || die 'dodoc failed'
60 + default
61 + dodoc REFERENCE
62 }