mirror of
https://github.com/yann64/haikuports.git
synced 2026-03-19 01:46:00 +01:00
giddy3, cleanup (#9348)
This commit is contained in:
@@ -1,49 +0,0 @@
|
||||
SUMMARY="A Retro Puzzle/Platform Game"
|
||||
DESCRIPTION="Giddy 3 is a retro-tastic platform puzzle game!
|
||||
|
||||
Featuring bright colourful graphics, smooth scrolling, puzzles, and an egg \
|
||||
with unfeasibly large hands!
|
||||
|
||||
Set across 5 large scrolling levels, you play the part of Giddy, the all-round \
|
||||
good egg, who has to save the world from aliens, intent on taking over the \
|
||||
world with giant robot stompers!"
|
||||
HOMEPAGE="https://www.giddy3.co.uk/"
|
||||
LICENSE="Freeware"
|
||||
COPYRIGHT="
|
||||
2000 Phil Rouston
|
||||
2009-2014 Peter Gordon"
|
||||
ARCHITECTURES="x86_gcc2"
|
||||
REVISION="1"
|
||||
|
||||
# Sourcecode is not publicly available.
|
||||
SOURCE_URI="/giddy.zip"
|
||||
SOURCE_DIR="giddy3"
|
||||
|
||||
PROVIDES="
|
||||
giddy3 = $portVersion
|
||||
"
|
||||
|
||||
BUILD_REQUIRES="
|
||||
devel:libsdl
|
||||
devel:libglu
|
||||
devel:sdl_mixer
|
||||
"
|
||||
|
||||
BUILD_PREREQUIRES="
|
||||
haiku_devel
|
||||
cmd:gcc
|
||||
cmd:make
|
||||
"
|
||||
|
||||
BUILD()
|
||||
{
|
||||
cd src
|
||||
make PLATFORM=haiku
|
||||
}
|
||||
|
||||
INSTALL()
|
||||
{
|
||||
mkdir -p $appsDir/Giddy3
|
||||
cp -r giddy3 onion* hats* $appsDir/Giddy3
|
||||
addAppDeskbarSymlink $appsDir/Giddy3/giddy3 "Giddy 3"
|
||||
}
|
||||
@@ -1,23 +0,0 @@
|
||||
From e3437608db7c7f13938e4ebbb7639b41bef58124 Mon Sep 17 00:00:00 2001
|
||||
From: Adrien Destugues <pulkomandy@gmail.com>
|
||||
Date: Sun, 5 Apr 2015 19:28:56 +0200
|
||||
Subject: Fix build for Haiku.
|
||||
|
||||
* We do have glext.h and it conflicts with the SDL replacement.
|
||||
|
||||
diff --git a/src/makefile b/src/makefile
|
||||
index 3b20757..248715f 100644
|
||||
--- a/src/makefile
|
||||
+++ b/src/makefile
|
||||
@@ -79,7 +79,7 @@ endif
|
||||
# Haiku
|
||||
ifeq ($(PLATFORM),haiku)
|
||||
LFLAGS += `sdl-config --libs` -lGL -lSDL_mixer
|
||||
-CFLAGS += `sdl-config --cflags`
|
||||
+CFLAGS += `sdl-config --cflags` -DNO_SDL_GLEXT
|
||||
endif
|
||||
|
||||
# Pandora
|
||||
--
|
||||
2.2.2
|
||||
|
||||
Reference in New Issue
Block a user