Gentoo Archives: gentoo-commits

From: Michael Sterrett <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/sdl-terminal/
Date: Fri, 18 Dec 2015 01:14:09
Message-Id: 1450401230.b2e0fa2e9c672db1db0b29cde0b609076baf702d.mr_bones_@gentoo
1 commit: b2e0fa2e9c672db1db0b29cde0b609076baf702d
2 Author: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 18 01:13:50 2015 +0000
4 Commit: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 18 01:13:50 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2e0fa2e
7
8 EAPI=5; tidy
9
10 Package-Manager: portage-2.2.24
11
12 media-libs/sdl-terminal/sdl-terminal-1.1.3-r1.ebuild | 14 +++++++-------
13 1 file changed, 7 insertions(+), 7 deletions(-)
14
15 diff --git a/media-libs/sdl-terminal/sdl-terminal-1.1.3-r1.ebuild b/media-libs/sdl-terminal/sdl-terminal-1.1.3-r1.ebuild
16 index e781338..bbbb2b6 100644
17 --- a/media-libs/sdl-terminal/sdl-terminal-1.1.3-r1.ebuild
18 +++ b/media-libs/sdl-terminal/sdl-terminal-1.1.3-r1.ebuild
19 @@ -2,8 +2,8 @@
20 # Distributed under the terms of the GNU General Public License v2
21 # $Id$
22
23 -EAPI=4
24 -inherit base libtool autotools
25 +EAPI=5
26 +inherit eutils autotools
27
28 MY_P="${P/sdl-/SDL_}"
29 DESCRIPTION="library that provides a pseudo-ansi color terminal that can be used with any SDL application"
30 @@ -17,13 +17,12 @@ IUSE="static-libs"
31
32 DEPEND="virtual/opengl
33 virtual/glu
34 - >=media-libs/libsdl-1.2.4
35 + >=media-libs/libsdl-1.2.4[opengl]
36 media-libs/sdl-ttf"
37 +RDEPEND=${DEPEND}
38
39 S=${WORKDIR}/${MY_P}
40
41 -DOCS=( AUTHORS ChangeLog README )
42 -
43 src_prepare() {
44 epatch "${FILESDIR}"/${P}-nopython.patch
45 eautoreconf
46 @@ -34,6 +33,7 @@ src_configure() {
47 }
48
49 src_install() {
50 - default
51 - use static-libs || prune_libtool_files
52 + DOCS="AUTHORS ChangeLog README" \
53 + default
54 + prune_libtool_files
55 }