Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-misc/sound-of-sorting/
Date: Tue, 11 Oct 2016 22:59:35
Message-Id: 1476226547.14809e8bce4a67c3f7c3254a9362d06c4448d99c.wizardedit@gentoo
1 commit: 14809e8bce4a67c3f7c3254a9362d06c4448d99c
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 11 22:38:15 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 11 22:55:47 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14809e8b
7
8 games-misc/sound-of-sorting: remove deprecated games eclass
9
10 Also update to EAPI 6
11
12 Gentoo-Bug: https://bugs.gentoo.org/574082
13
14 Package-Manager: portage-2.3.0
15
16 .../sound-of-sorting-0.6.6_pre20151107-r1.ebuild | 30 ++++++++++++++++++++++
17 1 file changed, 30 insertions(+)
18
19 diff --git a/games-misc/sound-of-sorting/sound-of-sorting-0.6.6_pre20151107-r1.ebuild b/games-misc/sound-of-sorting/sound-of-sorting-0.6.6_pre20151107-r1.ebuild
20 new file mode 100644
21 index 00000000..9fad708
22 --- /dev/null
23 +++ b/games-misc/sound-of-sorting/sound-of-sorting-0.6.6_pre20151107-r1.ebuild
24 @@ -0,0 +1,30 @@
25 +# Copyright 1999-2016 Gentoo Foundation
26 +# Distributed under the terms of the GNU General Public License v2
27 +# $Id$
28 +
29 +EAPI=6
30 +WX_GTK_VER="3.0"
31 +
32 +inherit vcs-snapshot wxwidgets
33 +
34 +DESCRIPTION="Visualization and Audibilization of Sorting Algorithms"
35 +HOMEPAGE="http://panthema.net/2013/sound-of-sorting/ https://github.com/bingmann/sound-of-sorting"
36 +#SRC_URI="http://panthema.net/2013/sound-of-sorting/${P}.tar.bz2"
37 +COMMIT="05db428c796a7006d63efdbe314f976e0aa881d6"
38 +SRC_URI="https://github.com/bingmann/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
39 +
40 +LICENSE="GPL-3"
41 +SLOT="0"
42 +KEYWORDS="~amd64"
43 +IUSE=""
44 +
45 +RDEPEND="
46 + media-libs/libsdl
47 + x11-libs/wxGTK:${WX_GTK_VER}
48 +"
49 +DEPEND="${RDEPEND}"
50 +
51 +src_unpack() {
52 + vcs-snapshot_src_unpack
53 + need-wxwidgets unicode
54 +}