Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-puzzle/world-of-goo/
Date: Tue, 28 Apr 2020 22:33:22
Message-Id: 1588113180.d6b04f8dd48fcdd62a43b4f1a732efe76ec1d02d.chewi@gentoo
1 commit: d6b04f8dd48fcdd62a43b4f1a732efe76ec1d02d
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 28 22:30:23 2020 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 28 22:33:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6b04f8d
7
8 games-puzzle/world-of-goo: Drop package in favour of world-of-goo-hb
9
10 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
11
12 games-puzzle/world-of-goo/Manifest | 1 -
13 games-puzzle/world-of-goo/metadata.xml | 8 ---
14 .../world-of-goo/world-of-goo-1.41-r2.ebuild | 66 ----------------------
15 3 files changed, 75 deletions(-)
16
17 diff --git a/games-puzzle/world-of-goo/Manifest b/games-puzzle/world-of-goo/Manifest
18 deleted file mode 100644
19 index 0650bba91eb..00000000000
20 --- a/games-puzzle/world-of-goo/Manifest
21 +++ /dev/null
22 @@ -1 +0,0 @@
23 -DIST WorldOfGooSetup.1.41.tar.gz 66428181 BLAKE2B 476c05f0b3f78fa952728b9f7b5b95942e7f3e57dde4842144ccaa28c9ad2d2c264b1a2277ba5a1f3edf25cb812c72a0380b0d26b2bc99dd9a77116badcf5477 SHA512 278dfb983cf9cf4de87f13d94f5e75b3830af07523e2ddc7a443d5afb6fead130ed50440357554986b5b0d99c17651f77ae11298f51f9f1072ebd40287cad396
24
25 diff --git a/games-puzzle/world-of-goo/metadata.xml b/games-puzzle/world-of-goo/metadata.xml
26 deleted file mode 100644
27 index 78274e0fa55..00000000000
28 --- a/games-puzzle/world-of-goo/metadata.xml
29 +++ /dev/null
30 @@ -1,8 +0,0 @@
31 -<?xml version="1.0" encoding="UTF-8"?>
32 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 -<pkgmetadata>
34 -<maintainer type="project">
35 - <email>games@g.o</email>
36 - <name>Gentoo Games Project</name>
37 -</maintainer>
38 -</pkgmetadata>
39
40 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
41 deleted file mode 100644
42 index 51f7f12ff56..00000000000
43 --- a/games-puzzle/world-of-goo/world-of-goo-1.41-r2.ebuild
44 +++ /dev/null
45 @@ -1,66 +0,0 @@
46 -# Copyright 1999-2018 Gentoo Foundation
47 -# Distributed under the terms of the GNU General Public License v2
48 -
49 -EAPI=6
50 -
51 -inherit desktop eutils # eutils for make_wrapper()
52 -
53 -DESCRIPTION="A puzzle game with a strong emphasis on physics"
54 -HOMEPAGE="http://2dboy.com/"
55 -
56 -if [[ ${PN} == *-demo ]] ; then
57 - MY_PN="WorldOfGooDemo"
58 - SRC_URI="${MY_PN}.${PV}.tar.gz"
59 -else
60 - MY_PN="WorldOfGoo"
61 - SRC_URI="${MY_PN}Setup.${PV}.tar.gz"
62 -fi
63 -
64 -LICENSE="2dboy-EULA"
65 -SLOT="0"
66 -KEYWORDS="~amd64 ~x86"
67 -RESTRICT="fetch bindist strip"
68 -
69 -RDEPEND="media-libs/libsdl[alsa,sound,opengl,video]
70 - media-libs/sdl-mixer[vorbis]
71 - sys-libs/glibc
72 - virtual/opengl
73 - virtual/glu
74 - >=sys-devel/gcc-3.4"
75 -
76 -S="${WORKDIR}/${MY_PN}"
77 -dir="/opt/${PN}"
78 -
79 -QA_PREBUILT="${dir:1}/${MY_PN%Demo}.bin32
80 - ${dir:1}/${MY_PN%Demo}.bin64"
81 -
82 -pkg_nofetch() {
83 - if [[ ${PN} == *-demo ]] ; then
84 - elog "To download the demo, visit http://worldofgoo.com/dl2.php?lk=demo"
85 - elog "and download ${A} and place it in your DISTDIR directory."
86 - else
87 - elog "Download ${A} from ${HOMEPAGE}"
88 - elog "and place it in your DISTDIR directory."
89 - fi
90 -}
91 -
92 -src_install() {
93 - exeinto "${dir}"
94 - doexe ${MY_PN%Demo}{,.$(usex amd64 bin64 bin32)}
95 -
96 - make_wrapper ${PN} "${dir}"/${MY_PN%Demo}
97 -
98 - insinto "${dir}"
99 - doins -r icons properties res
100 - newicon icons/scalable.svg ${PN}.svg
101 -
102 - if [[ ${PN} == *-demo ]] ; then
103 - make_desktop_entry ${PN} "World of Goo (Demo)"
104 - else
105 - make_desktop_entry ${PN} "World of Goo"
106 - fi
107 -
108 - dodoc linux-issues.txt
109 - docinto html
110 - dodoc readme.html
111 -}