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: games-arcade/briquolo/
Date: Fri, 18 Dec 2015 10:14:07
Message-Id: 1450431195.78f8b903d7b1e36ce3f85fc7ba21fe324b126b2d.mr_bones_@gentoo
1 commit: 78f8b903d7b1e36ce3f85fc7ba21fe324b126b2d
2 Author: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 18 09:33:15 2015 +0000
4 Commit: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 18 09:33:15 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78f8b903
7
8 EAPI=5; minor tidying
9
10 Package-Manager: portage-2.2.24
11
12 games-arcade/briquolo/briquolo-0.5.7.ebuild | 18 +++++++-----------
13 1 file changed, 7 insertions(+), 11 deletions(-)
14
15 diff --git a/games-arcade/briquolo/briquolo-0.5.7.ebuild b/games-arcade/briquolo/briquolo-0.5.7.ebuild
16 index 2690ebc..efd0d53 100644
17 --- a/games-arcade/briquolo/briquolo-0.5.7.ebuild
18 +++ b/games-arcade/briquolo/briquolo-0.5.7.ebuild
19 @@ -2,7 +2,7 @@
20 # Distributed under the terms of the GNU General Public License v2
21 # $Id$
22
23 -EAPI=4
24 +EAPI=5
25 inherit eutils games
26
27 DESCRIPTION="Breakout with 3D representation based on OpenGL"
28 @@ -16,10 +16,10 @@ IUSE="nls"
29
30 RDEPEND="virtual/opengl
31 virtual/glu
32 - media-libs/libsdl
33 + media-libs/libsdl[joystick,sound,video]
34 media-libs/sdl-mixer
35 media-libs/sdl-ttf
36 - media-libs/libpng
37 + media-libs/libpng:0
38 nls? ( virtual/libintl )"
39 DEPEND="${RDEPEND}
40 nls? ( sys-devel/gettext )"
41 @@ -30,22 +30,18 @@ src_prepare() {
42 # no thanks we'll take care of it.
43 sed -i \
44 -e '/^SUBDIRS/s/desktop//' \
45 - Makefile.in \
46 - || die "sed Makefile.in failed"
47 + Makefile.in || die
48 sed -i \
49 -e "/CXXFLAGS/s:-O3:${CXXFLAGS}:" \
50 -e 's:=.*share/locale:=/usr/share/locale:' \
51 - configure \
52 - || die "sed configure failed"
53 + configure || die
54 sed -i \
55 -e 's:$(datadir)/locale:/usr/share/locale:' \
56 - po/Makefile.in.in \
57 - || die "sed Makefile.in.in failed"
58 + po/Makefile.in.in || die
59 }
60
61 src_configure() {
62 - egamesconf \
63 - $(use_enable nls)
64 + egamesconf $(use_enable nls)
65 }
66
67 src_install() {