summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2018-05-01 14:54:03 +0200
committerPacho Ramos <pacho@gentoo.org>2018-05-01 21:33:35 +0200
commitd6f626ff6ffa124a14b58f859f1008590969f9f4 (patch)
tree22a3cebaad65b969e90d5a2fd99a384630ae4bd9 /games-puzzle
parentgames-puzzle/mirrormagic: Stop using games.eclass (diff)
downloadgentoo-d6f626ff6ffa124a14b58f859f1008590969f9f4.tar.gz
gentoo-d6f626ff6ffa124a14b58f859f1008590969f9f4.tar.bz2
gentoo-d6f626ff6ffa124a14b58f859f1008590969f9f4.zip
games-puzzle/mirrormagic: Drop old
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'games-puzzle')
-rw-r--r--games-puzzle/mirrormagic/mirrormagic-2.0.2-r1.ebuild56
1 files changed, 0 insertions, 56 deletions
diff --git a/games-puzzle/mirrormagic/mirrormagic-2.0.2-r1.ebuild b/games-puzzle/mirrormagic/mirrormagic-2.0.2-r1.ebuild
deleted file mode 100644
index 88a24e7a64e5..000000000000
--- a/games-puzzle/mirrormagic/mirrormagic-2.0.2-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils toolchain-funcs games
-
-DESCRIPTION="a game like Deflektor (C 64) or Mindbender (Amiga)"
-HOMEPAGE="http://www.artsoft.org/mirrormagic/"
-SRC_URI="http://www.artsoft.org/RELEASES/unix/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="sdl"
-
-RDEPEND="!sdl? ( x11-libs/libX11 )
- sdl? (
- media-libs/libsdl[video]
- media-libs/sdl-mixer
- media-libs/sdl-image
- )"
-DEPEND="${RDEPEND}
- !sdl? ( x11-libs/libXt )"
-
-src_prepare() {
- epatch \
- "${FILESDIR}"/${P}-gcc41.patch \
- "${FILESDIR}"/${P}-parallel.patch \
- "${FILESDIR}"/${P}-64bit.patch \
- "${FILESDIR}"/${P}-gcc5.patch \
- "${FILESDIR}"/${P}-editor.patch
- rm -f ${PN} || die
-}
-
-src_compile() {
- emake \
- -C src \
- CC="$(tc-getCC)" \
- AR="$(tc-getAR)" \
- RANLIB="$(tc-getRANLIB)" \
- OPTIONS="${CFLAGS}" \
- EXTRA_LDFLAGS="${LDFLAGS}" \
- RO_GAME_DIR="${GAMES_DATADIR}"/${PN} \
- RW_GAME_DIR="${GAMES_STATEDIR}"/${PN} \
- TARGET=$(usex sdl sdl x11)
-}
-
-src_install() {
- dogamesbin ${PN}
- insinto "${GAMES_DATADIR}"/${PN}
- doins -r graphics levels music sounds
- doicon "${FILESDIR}"/${PN}.xpm
- make_desktop_entry ${PN} "Mirror Magic II"
- dodoc CHANGES CREDITS README TODO
- prepgamesdirs
-}