summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2018-05-01 13:46:07 +0200
committerPacho Ramos <pacho@gentoo.org>2018-05-01 21:32:41 +0200
commite13d0785f8eaf7196ecebbf018b362cb5ab49f80 (patch)
tree83295be0b5d0042102d3bc6a82dbff6927bf1954 /games-puzzle/gemdropx
parentgames-puzzle/gemdropx: Stop using games.eclass (diff)
downloadgentoo-e13d0785f8eaf7196ecebbf018b362cb5ab49f80.tar.gz
gentoo-e13d0785f8eaf7196ecebbf018b362cb5ab49f80.tar.bz2
gentoo-e13d0785f8eaf7196ecebbf018b362cb5ab49f80.zip
games-puzzle/gemdropx: Drop old
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'games-puzzle/gemdropx')
-rw-r--r--games-puzzle/gemdropx/gemdropx-0.9-r1.ebuild43
1 files changed, 0 insertions, 43 deletions
diff --git a/games-puzzle/gemdropx/gemdropx-0.9-r1.ebuild b/games-puzzle/gemdropx/gemdropx-0.9-r1.ebuild
deleted file mode 100644
index b7e04a7574c1..000000000000
--- a/games-puzzle/gemdropx/gemdropx-0.9-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit games
-
-DESCRIPTION="A puzzle game where it's your job to clear the screen of gems"
-HOMEPAGE="http://www.newbreedsoftware.com/gemdropx/"
-SRC_URI="ftp://ftp.sonic.net/pub/users/nbs/unix/x/gemdropx/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=">=media-libs/libsdl-1.2.3-r1[joystick,video]
- >=media-libs/sdl-mixer-1.2.1[mod]"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- sed -i \
- -e '/^CC/d' \
- -e '/^CXX/d' \
- -e 's/CXX/CC/' \
- -e 's/-o/$(LDFLAGS) -o/' \
- Makefile || die
-
- find data/ -type d -name .xvpics -exec rm -rf \{\} +
-}
-
-src_compile() {
- emake \
- DATA_PREFIX="${GAMES_DATADIR}/${PN}" \
- XTRA_FLAGS="${CFLAGS}"
-}
-
-src_install() {
- dogamesbin gemdropx
- dodir "${GAMES_DATADIR}/${PN}"
- cp -r data/* "${D}/${GAMES_DATADIR}/${PN}/" || die
- dodoc AUTHORS.txt CHANGES.txt ICON.txt README.txt TODO.txt
- prepgamesdirs
-}