summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2018-04-24 19:57:06 +0200
committerPacho Ramos <pacho@gentoo.org>2018-04-24 21:26:05 +0200
commit923451f7dace07f35ba1ac92f60a86e1ba157dc3 (patch)
treea05a98f1c7e632a5d5a854d7be2fdc3bdf57b234 /games-arcade
parentgames-arcade/slimevolley: Stop using games.eclass (diff)
downloadgentoo-923451f7dace07f35ba1ac92f60a86e1ba157dc3.tar.gz
gentoo-923451f7dace07f35ba1ac92f60a86e1ba157dc3.tar.bz2
gentoo-923451f7dace07f35ba1ac92f60a86e1ba157dc3.zip
games-arcade/slimevolley: Drop old
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'games-arcade')
-rw-r--r--games-arcade/slimevolley/slimevolley-2.4.2.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/games-arcade/slimevolley/slimevolley-2.4.2.ebuild b/games-arcade/slimevolley/slimevolley-2.4.2.ebuild
deleted file mode 100644
index b1fba98cb040..000000000000
--- a/games-arcade/slimevolley/slimevolley-2.4.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit cmake-utils eutils games
-
-DESCRIPTION="A simple volleyball game"
-HOMEPAGE="http://slime.tuxfamily.org/index.php"
-SRC_URI="http://downloads.tuxfamily.org/slime/v242/${PN}_${PV}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="net"
-
-RDEPEND="media-libs/libsdl[X,sound,video]
- media-libs/sdl-ttf
- media-libs/sdl-image[png]
- net? ( media-libs/sdl-net )
- virtual/libintl"
-DEPEND="${RDEPEND}
- sys-devel/gettext"
-
-DOCS="docs/README docs/TODO"
-
-PATCHES=( "${FILESDIR}"/${P}-nodatalocal.patch
- "${FILESDIR}"/${P}-underlink.patch )
-
-S=${WORKDIR}/${PN}
-
-src_prepare() {
- cmake-utils_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- "-DCMAKE_VERBOSE_MAKEFILE=TRUE"
- "-DBIN_DIR=${GAMES_BINDIR}"
- $(use net && echo "-DNO_NET=0" || echo "-DNO_NET=1")
- )
- cmake-utils_src_configure
-}
-
-src_compile() {
- cmake-utils_src_compile
-}
-
-src_install() {
- cmake-utils_src_install
- prepgamesdirs
-}