summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2018-04-15 20:37:34 +0200
committerPacho Ramos <pacho@gentoo.org>2018-04-15 21:00:23 +0200
commitde4e91528bf35a221f53d56ce644780bd23d1e90 (patch)
tree11468f7941e16245a993baeca2902e14c44731cb /games-arcade/conveysdl
parentgames-arcade/conveysdl: Stop using games.eclass (diff)
downloadgentoo-de4e91528bf35a221f53d56ce644780bd23d1e90.tar.gz
gentoo-de4e91528bf35a221f53d56ce644780bd23d1e90.tar.bz2
gentoo-de4e91528bf35a221f53d56ce644780bd23d1e90.zip
games-arcade/conveysdl: Drop old
Package-Manager: Portage-2.3.28, Repoman-2.3.9
Diffstat (limited to 'games-arcade/conveysdl')
-rw-r--r--games-arcade/conveysdl/conveysdl-1.3.ebuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/games-arcade/conveysdl/conveysdl-1.3.ebuild b/games-arcade/conveysdl/conveysdl-1.3.ebuild
deleted file mode 100644
index 53d4dd6d48b9..000000000000
--- a/games-arcade/conveysdl/conveysdl-1.3.ebuild
+++ /dev/null
@@ -1,54 +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="Guide the blob along the conveyer belt collecting the red blobs"
-HOMEPAGE="http://www.cloudsprinter.com/software/conveysdl/"
-SRC_URI="http://www.cloudsprinter.com/software/conveysdl/${P/-/.}.tar"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-fbsd"
-IUSE=""
-
-DEPEND="media-libs/libsdl[sound,video]
- media-libs/sdl-mixer"
-RDEPEND=${DEPEND}
-
-S=${WORKDIR}
-
-src_prepare() {
- # Incomplete readme
- sed -i \
- -e 's:I k:use -nosound to disable sound\n\nI k:' \
- readme || die
-
- sed -i \
- -e 's:SDL_Mi:SDL_mi:' \
- main.c || die
-
- epatch \
- "${FILESDIR}"/${P}-arrays.patch \
- "${FILESDIR}"/${P}-speed.patch
-}
-
-src_compile() {
- emake main \
- CC="$(tc-getCC)" \
- CFLAGS="${CFLAGS} $(sdl-config --cflags) \
- -DDATA_PREFIX=\\\"${GAMES_DATADIR}/${PN}/\\\" \
- -DENABLE_SOUND" \
- LDLIBS="-lSDL_mixer $(sdl-config --libs)"
-}
-
-src_install() {
- newgamesbin main ${PN}
- insinto "${GAMES_DATADIR}"/${PN}
- doins -r gfx sounds levels
- newicon gfx/jblob.bmp ${PN}.bmp
- make_desktop_entry ${PN} Convey /usr/share/pixmaps/${PN}.bmp
- dodoc readme
- prepgamesdirs
-}