Gentoo Archives: gentoo-commits

From: Hanno Boeck <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/desmume/
Date: Sat, 02 Nov 2019 15:00:23
Message-Id: 1572706799.434a67f0c946a4d93d3ac4cb3438e809c09a9f4f.hanno@gentoo
1 commit: 434a67f0c946a4d93d3ac4cb3438e809c09a9f4f
2 Author: Hanno <hanno <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 2 14:59:59 2019 +0000
4 Commit: Hanno Boeck <hanno <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 2 14:59:59 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=434a67f0
7
8 games-emulation/desmume: Remove unneeded gtkglext dependency
9
10 Port to EAPI 7.
11
12 Closes: https://bugs.gentoo.org/698962
13 Closes: https://github.com/gentoo/gentoo/pull/13506
14 Signed-off-by: Hanno Boeck <hanno <AT> gentoo.org>
15 Package-Manager: Portage-2.3.78, Repoman-2.3.17
16
17 games-emulation/desmume/desmume-0.9.11-r2.ebuild | 37 ++++++++++++++++++++++++
18 1 file changed, 37 insertions(+)
19
20 diff --git a/games-emulation/desmume/desmume-0.9.11-r2.ebuild b/games-emulation/desmume/desmume-0.9.11-r2.ebuild
21 new file mode 100644
22 index 00000000000..964f794fb7f
23 --- /dev/null
24 +++ b/games-emulation/desmume/desmume-0.9.11-r2.ebuild
25 @@ -0,0 +1,37 @@
26 +# Copyright 1999-2019 Gentoo Authors
27 +# Distributed under the terms of the GNU General Public License v2
28 +
29 +EAPI=7
30 +
31 +inherit xdg
32 +
33 +DESCRIPTION="Nintendo DS emulator"
34 +HOMEPAGE="http://desmume.org/"
35 +SRC_URI="mirror://sourceforge/desmume/${P}.tar.gz"
36 +
37 +LICENSE="GPL-2"
38 +SLOT="0"
39 +KEYWORDS="~amd64 ~x86"
40 +IUSE=""
41 +
42 +RDEPEND="
43 + dev-libs/zziplib
44 + gnome-base/libglade
45 + media-libs/libsdl[joystick,opengl,video]
46 + sys-libs/zlib
47 + virtual/opengl
48 + x11-libs/agg
49 + >=x11-libs/gtk+-2.8.0:2"
50 +DEPEND="${RDEPEND}
51 + dev-util/intltool
52 + virtual/pkgconfig"
53 +
54 +DOCS=( AUTHORS ChangeLog README README.LIN )
55 +
56 +# fix QA compiler warning, see
57 +# https://sourceforge.net/p/desmume/patches/172/
58 +PATCHES=(
59 + "${FILESDIR}/${P}-fix-pointer-conversion-warning.diff"
60 + "${FILESDIR}/${P}-gcc6.patch"
61 + "${FILESDIR}/${P}-gcc7.patch"
62 +)