mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
games-arcade/blobby: drop 1.0-r1
Signed-off-by: Nicolas PARLANT <nicolas.parlant@parhuet.fr> Part-of: https://github.com/gentoo/gentoo/pull/44018 Closes: https://github.com/gentoo/gentoo/pull/44018 Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
parent
c73cd859ef
commit
e86086272c
@ -1,2 +1 @@
|
||||
DIST blobby2-linux-1.0.tar.gz 1772918 BLAKE2B ee2231d5c2a287f812debf43a95b6ffe4abdcd87fec41eea5e528253d83190f20d4b2245b5e530f1b8b9df310ce2757b06377f7305f8cf60e6d51db9964ea239 SHA512 b9e36de4a44e482c9d0742b95034c2979d7a51512ac5e3fd8f4933655132028dfc9642c3580e5523b5b95d38acc169932d24808cee236710731c2571321337fa
|
||||
DIST blobby2-linux-1.1.1.tar.gz 2549889 BLAKE2B 120906ac3a01cb0abf00f288c6955df1e8f9dc2e0ed74c6bc70fb7069a6c29d38f860c2b9fbfb42084e4693cafc1bf40f09cd3eba355fac148d9860376bb6486 SHA512 4061de21586ed8404c1cfb5284820e5e0835d10270de12d5e336c1fd9bb080f27a732d9d6cd3a98cbf1eb9d674791d028692f8031b56a9e0be09fcadb2e64c03
|
||||
|
||||
@ -1,41 +0,0 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake desktop
|
||||
|
||||
DESCRIPTION="Beach ball game with blobs of goo"
|
||||
HOMEPAGE="https://sourceforge.net/projects/blobby/"
|
||||
SRC_URI="https://downloads.sourceforge.net/${PN}/${PN}2-linux-${PV}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="
|
||||
>=dev-games/physfs-2[zip]
|
||||
media-libs/libsdl2[sound,joystick,opengl,video]
|
||||
virtual/opengl
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-libs/boost
|
||||
"
|
||||
BDEPEND="
|
||||
app-arch/zip
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${P}-compile.patch
|
||||
"${FILESDIR}"/${P}-paths.patch
|
||||
"${FILESDIR}"/${P}-install.patch
|
||||
)
|
||||
|
||||
src_install() {
|
||||
cmake_src_install
|
||||
|
||||
newicon data/Icon.bmp ${PN}.bmp
|
||||
make_desktop_entry ${PN} "Blobby Volley" /usr/share/pixmaps/${PN}.bmp
|
||||
}
|
||||
@ -1,29 +0,0 @@
|
||||
From eaa17d2ad90de2024fc3a7a59575597d1dc0b171 Mon Sep 17 00:00:00 2001
|
||||
From: Sebastian Pipping <sebastian@pipping.org>
|
||||
Date: Sat, 21 Jan 2017 18:01:14 +0100
|
||||
Subject: [PATCH] Fix compilation
|
||||
|
||||
---
|
||||
src/NetworkMessage.cpp | 7 ++++++-
|
||||
1 file changed, 6 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/NetworkMessage.cpp b/src/NetworkMessage.cpp
|
||||
index 9178e74..0c3163b 100644
|
||||
--- a/src/NetworkMessage.cpp
|
||||
+++ b/src/NetworkMessage.cpp
|
||||
@@ -109,6 +109,11 @@ bool operator == (const ServerInfo& lval, const ServerInfo& rval)
|
||||
|
||||
std::ostream& operator<<(std::ostream& stream, const ServerInfo& val)
|
||||
{
|
||||
- return stream << val.name << " (" << val.hostname << ":" << val.port << ")";
|
||||
+ return stream
|
||||
+ << std::string(val.name)
|
||||
+ << std::string(" (")
|
||||
+ << std::string(val.hostname)
|
||||
+ << std::string(":") << std::to_string(val.port)
|
||||
+ << std::string(")");
|
||||
}
|
||||
|
||||
--
|
||||
2.11.0
|
||||
|
||||
@ -1,29 +0,0 @@
|
||||
From 0a3ebb368242ed379f4ff7d5eca24be79841d968 Mon Sep 17 00:00:00 2001
|
||||
From: Sebastian Pipping <sebastian@pipping.org>
|
||||
Date: Sat, 21 Jan 2017 18:55:47 +0100
|
||||
Subject: [PATCH] Install missing files
|
||||
|
||||
---
|
||||
data/CMakeLists.txt | 2 ++
|
||||
1 file changed, 2 insertions(+)
|
||||
|
||||
diff --git a/data/CMakeLists.txt b/data/CMakeLists.txt
|
||||
index a2454cd..5a2a661 100644
|
||||
--- a/data/CMakeLists.txt
|
||||
+++ b/data/CMakeLists.txt
|
||||
@@ -25,10 +25,12 @@ set(install_files
|
||||
${CMAKE_CURRENT_BINARY_DIR}/backgrounds.zip
|
||||
${CMAKE_CURRENT_BINARY_DIR}/rules.zip
|
||||
config.xml
|
||||
+ Icon.bmp
|
||||
inputconfig.xml
|
||||
server/server.xml
|
||||
lang_de.xml
|
||||
lang_en.xml
|
||||
+ lang_it.xml
|
||||
lang_fr.xml)
|
||||
|
||||
if (WIN32)
|
||||
--
|
||||
2.11.0
|
||||
|
||||
@ -1,37 +0,0 @@
|
||||
From 3dbc91fcfe5412598201e33de80db7b1b01e4ffb Mon Sep 17 00:00:00 2001
|
||||
From: Sebastian Pipping <sebastian@pipping.org>
|
||||
Date: Sat, 21 Jan 2017 18:49:04 +0100
|
||||
Subject: [PATCH] Use system installation path
|
||||
|
||||
---
|
||||
data/CMakeLists.txt | 2 +-
|
||||
src/main.cpp | 2 +-
|
||||
2 files changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/data/CMakeLists.txt b/data/CMakeLists.txt
|
||||
index d9029b3..a2454cd 100644
|
||||
--- a/data/CMakeLists.txt
|
||||
+++ b/data/CMakeLists.txt
|
||||
@@ -34,5 +34,5 @@ set(install_files
|
||||
if (WIN32)
|
||||
install(FILES ${install_files} DESTINATION data)
|
||||
elseif (UNIX)
|
||||
- install(FILES ${install_files} DESTINATION share/blobby)
|
||||
+ install(FILES ${install_files} DESTINATION /usr/share/blobby)
|
||||
endif (WIN32)
|
||||
diff --git a/src/main.cpp b/src/main.cpp
|
||||
index 2628990..15bddf2 100644
|
||||
--- a/src/main.cpp
|
||||
+++ b/src/main.cpp
|
||||
@@ -78,7 +78,7 @@ void setupPHYSFS()
|
||||
std::string separator = fs.getDirSeparator();
|
||||
// Game should be playable out of the source package on all
|
||||
// relevant platforms.
|
||||
- std::string baseSearchPath("data" + separator);
|
||||
+ std::string baseSearchPath("/usr/share/blobby/");
|
||||
// Android and iOS are needing a special path
|
||||
#ifdef __ANDROID__
|
||||
baseSearchPath = SDL_AndroidGetExternalStoragePath() + separator;
|
||||
--
|
||||
2.11.0
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user