games-puzzle/world-of-goo: Drop package in favour of world-of-goo-hb
authorJames Le Cuirot <chewi@gentoo.org>
Tue, 28 Apr 2020 22:30:23 +0000 (23:30 +0100)
committerJames Le Cuirot <chewi@gentoo.org>
Tue, 28 Apr 2020 22:33:00 +0000 (23:33 +0100)
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
games-puzzle/world-of-goo/Manifest [deleted file]
games-puzzle/world-of-goo/metadata.xml [deleted file]
games-puzzle/world-of-goo/world-of-goo-1.41-r2.ebuild [deleted file]

diff --git a/games-puzzle/world-of-goo/Manifest b/games-puzzle/world-of-goo/Manifest
deleted file mode 100644 (file)
index 0650bba..0000000
+++ /dev/null
@@ -1 +0,0 @@
-DIST WorldOfGooSetup.1.41.tar.gz 66428181 BLAKE2B 476c05f0b3f78fa952728b9f7b5b95942e7f3e57dde4842144ccaa28c9ad2d2c264b1a2277ba5a1f3edf25cb812c72a0380b0d26b2bc99dd9a77116badcf5477 SHA512 278dfb983cf9cf4de87f13d94f5e75b3830af07523e2ddc7a443d5afb6fead130ed50440357554986b5b0d99c17651f77ae11298f51f9f1072ebd40287cad396
diff --git a/games-puzzle/world-of-goo/metadata.xml b/games-puzzle/world-of-goo/metadata.xml
deleted file mode 100644 (file)
index 78274e0..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
-       <email>games@gentoo.org</email>
-       <name>Gentoo Games Project</name>
-</maintainer>
-</pkgmetadata>
diff --git a/games-puzzle/world-of-goo/world-of-goo-1.41-r2.ebuild b/games-puzzle/world-of-goo/world-of-goo-1.41-r2.ebuild
deleted file mode 100644 (file)
index 51f7f12..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit desktop eutils         # eutils for make_wrapper()
-
-DESCRIPTION="A puzzle game with a strong emphasis on physics"
-HOMEPAGE="http://2dboy.com/"
-
-if [[ ${PN} == *-demo ]] ; then
-       MY_PN="WorldOfGooDemo"
-       SRC_URI="${MY_PN}.${PV}.tar.gz"
-else
-       MY_PN="WorldOfGoo"
-       SRC_URI="${MY_PN}Setup.${PV}.tar.gz"
-fi
-
-LICENSE="2dboy-EULA"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-RESTRICT="fetch bindist strip"
-
-RDEPEND="media-libs/libsdl[alsa,sound,opengl,video]
-       media-libs/sdl-mixer[vorbis]
-       sys-libs/glibc
-       virtual/opengl
-       virtual/glu
-       >=sys-devel/gcc-3.4"
-
-S="${WORKDIR}/${MY_PN}"
-dir="/opt/${PN}"
-
-QA_PREBUILT="${dir:1}/${MY_PN%Demo}.bin32
-       ${dir:1}/${MY_PN%Demo}.bin64"
-
-pkg_nofetch() {
-       if [[ ${PN} == *-demo ]] ; then
-               elog "To download the demo, visit http://worldofgoo.com/dl2.php?lk=demo"
-               elog "and download ${A} and place it in your DISTDIR directory."
-       else
-               elog "Download ${A} from ${HOMEPAGE}"
-               elog "and place it in your DISTDIR directory."
-       fi
-}
-
-src_install() {
-       exeinto "${dir}"
-       doexe ${MY_PN%Demo}{,.$(usex amd64 bin64 bin32)}
-
-       make_wrapper ${PN} "${dir}"/${MY_PN%Demo}
-
-       insinto "${dir}"
-       doins -r icons properties res
-       newicon icons/scalable.svg ${PN}.svg
-
-       if [[ ${PN} == *-demo ]] ; then
-               make_desktop_entry ${PN} "World of Goo (Demo)"
-       else
-               make_desktop_entry ${PN} "World of Goo"
-       fi
-
-       dodoc linux-issues.txt
-       docinto html
-       dodoc readme.html
-}