Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-emulation/yabause: yabause-0.9.14.ebuild ChangeLog
Date: Mon, 09 Feb 2015 21:39:56
Message-Id: 20150209213951.F20E511693@oystercatcher.gentoo.org
1 mr_bones_ 15/02/09 21:39:51
2
3 Modified: ChangeLog
4 Added: yabause-0.9.14.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.38 games-emulation/yabause/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/yabause/ChangeLog?rev=1.38&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/yabause/ChangeLog?rev=1.38&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/yabause/ChangeLog?r1=1.37&r2=1.38
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-emulation/yabause/ChangeLog,v
20 retrieving revision 1.37
21 retrieving revision 1.38
22 diff -u -r1.37 -r1.38
23 --- ChangeLog 2 Mar 2013 21:15:10 -0000 1.37
24 +++ ChangeLog 9 Feb 2015 21:39:51 -0000 1.38
25 @@ -1,6 +1,14 @@
26 # ChangeLog for games-emulation/yabause
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/yabause/ChangeLog,v 1.37 2013/03/02 21:15:10 hwoarang Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/yabause/ChangeLog,v 1.38 2015/02/09 21:39:51 mr_bones_ Exp $
31 +
32 +*yabause-0.9.14 (09 Feb 2015)
33 +
34 + 09 Feb 2015; Michael Sterrett <mr_bones_@g.o>
35 + +files/yabause-0.9.14-RWX.patch, +files/yabause-0.9.14-cmake.patch,
36 + +yabause-0.9.14.ebuild, files/yabause-0.9.12-RWX.patch,
37 + files/yabause-0.9.12-cmake.patch:
38 + version bump
39
40 02 Mar 2013; Markos Chandras <hwoarang@g.o> yabause-0.9.12.ebuild:
41 Move Qt dependencies to the new category
42
43
44
45 1.1 games-emulation/yabause/yabause-0.9.14.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/yabause/yabause-0.9.14.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/yabause/yabause-0.9.14.ebuild?rev=1.1&content-type=text/plain
49
50 Index: yabause-0.9.14.ebuild
51 ===================================================================
52 # Copyright 1999-2015 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/games-emulation/yabause/yabause-0.9.14.ebuild,v 1.1 2015/02/09 21:39:51 mr_bones_ Exp $
55
56 EAPI=5
57 inherit eutils cmake-utils games
58
59 DESCRIPTION="A Sega Saturn emulator"
60 HOMEPAGE="http://yabause.org/"
61 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="openal opengl qt5 sdl"
67
68 # x11-libs/libXrandr is an automagic dep
69 # qt5 over qt4 and libsdl2 over libsdl is
70 # also done automatically. Send patches
71 # upstream to make the choices explicit.
72 RDEPEND="
73 x11-libs/libXrandr
74 openal? ( media-libs/openal )
75 opengl? (
76 media-libs/freeglut
77 virtual/glu
78 virtual/opengl
79 )
80 qt5? (
81 dev-qt/qtcore:5
82 dev-qt/qtwidgets:5[opengl?]
83 opengl? ( dev-qt/qtopengl:5 )
84 )
85 !qt5? (
86 dev-libs/glib:2
87 x11-libs/gtk+:2
88 x11-libs/gtkglext
89 )
90 sdl? ( media-libs/libsdl2[opengl?,video] )"
91 DEPEND="${RDEPEND}
92 virtual/pkgconfig"
93
94 src_prepare() {
95 epatch "${FILESDIR}"/${P}-RWX.patch \
96 "${FILESDIR}"/${P}-cmake.patch
97 }
98
99 src_configure() {
100 local mycmakeargs=(
101 -DBINDIR="${GAMES_BINDIR}"
102 -DTRANSDIR="${GAMES_DATADIR}"/${PN}/yts
103 -DYAB_OPTIMIZATION=""
104 $(cmake-utils_use sdl YAB_WANT_SDL)
105 $(cmake-utils_use openal YAB_WANT_OPENAL)
106 $(cmake-utils_use opengl YAB_WANT_OPENGL)
107 -DYAB_PORTS=$(usex qt5 "qt" "gtk")
108 )
109 cmake-utils_src_configure
110 }
111
112 src_compile() {
113 cmake-utils_src_compile
114 }
115
116 src_install() {
117 cmake-utils_src_install
118 dodoc AUTHORS ChangeLog GOALS README README.LIN
119 prepgamesdirs
120 }