Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-puzzle/gemdropx/
Date: Mon, 04 Oct 2021 17:27:02
Message-Id: 1633366360.2dbda211817ac1fecbec22b72dcefa29cbc8492e.ionen@gentoo
1 commit: 2dbda211817ac1fecbec22b72dcefa29cbc8492e
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Fri Oct 1 15:01:33 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 4 16:52:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dbda211
7
8 games-puzzle/gemdropx: remove old
9
10 Package-Manager: Portage-3.0.23, Repoman-3.0.3
11 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
12 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
13
14 games-puzzle/gemdropx/gemdropx-0.9-r2.ebuild | 47 ----------------------------
15 1 file changed, 47 deletions(-)
16
17 diff --git a/games-puzzle/gemdropx/gemdropx-0.9-r2.ebuild b/games-puzzle/gemdropx/gemdropx-0.9-r2.ebuild
18 deleted file mode 100644
19 index 30766306574..00000000000
20 --- a/games-puzzle/gemdropx/gemdropx-0.9-r2.ebuild
21 +++ /dev/null
22 @@ -1,47 +0,0 @@
23 -# Copyright 1999-2018 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=6
27 -inherit desktop
28 -
29 -DESCRIPTION="A puzzle game where it's your job to clear the screen of gems"
30 -HOMEPAGE="http://www.newbreedsoftware.com/gemdropx/"
31 -SRC_URI="ftp://ftp.sonic.net/pub/users/nbs/unix/x/gemdropx/${P}.tar.gz"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="~amd64 ~x86"
36 -IUSE=""
37 -
38 -RDEPEND="
39 - >=media-libs/libsdl-1.2.3-r1[joystick,video]
40 - >=media-libs/sdl-mixer-1.2.1[mod]
41 -"
42 -DEPEND="${RDEPEND}"
43 -
44 -src_prepare() {
45 - default
46 - sed -i \
47 - -e '/^CC/d' \
48 - -e '/^CXX/d' \
49 - -e 's/CXX/CC/' \
50 - -e 's/-o/$(LDFLAGS) -o/' \
51 - Makefile || die
52 -
53 - find data/ -type d -name .xvpics -exec rm -rf \{\} +
54 -}
55 -
56 -src_compile() {
57 - emake \
58 - DATA_PREFIX="/usr/share/${PN}" \
59 - XTRA_FLAGS="${CFLAGS}"
60 -}
61 -
62 -src_install() {
63 - dobin gemdropx
64 - dodir "/usr/share/${PN}"
65 - cp -r data/* "${ED}/usr/share/${PN}/" || die
66 - dodoc AUTHORS.txt CHANGES.txt ICON.txt README.txt TODO.txt
67 - newicon data/images/gemdropx-icon.xpm ${PN}.xpm
68 - make_desktop_entry ${PN} "Gem Drop X" /usr/share/pixmaps/${PN}.xpm
69 -}