summaryrefslogtreecommitdiff
path: root/games/vultures-claw
diff options
context:
space:
mode:
authorStanislav Sedov <stas@FreeBSD.org>2006-09-20 11:21:59 +0000
committerStanislav Sedov <stas@FreeBSD.org>2006-09-20 11:21:59 +0000
commit0d2725682b8325a08b11592d11062997bb9dc7f2 (patch)
tree46ab0c86563bfc2fbab1ecc5f9dadffb47afe737 /games/vultures-claw
parentUpdate to 0.32 (diff)
- Update devel/sdl12 to version 1.2.11. Now we employ stock SDL directory
structure (i.e. include/SDL for includes and sdl-config for configuration binary) - Update graphics/sdl_ttf to version 2.0.8 - Update graphics/sdl_image to version 1.2.5 - Update audio/sdl_mixer to version 1.2.7 - Update net/sdl_net to version 1.2.6 - Update Mk/bsd.sdl.mk accordingly - Fix dependent ports to fit the new directory structure and avoid several API breakages - Bump up portrevisions for all dependent ports to allow them to be upgraded by portupgrade/portmaster etc tools Approved by: kris (portmgr), sem (mentor)
Notes
Notes: svn path=/head/; revision=173460
Diffstat (limited to 'games/vultures-claw')
-rw-r--r--games/vultures-claw/Makefile2
-rw-r--r--games/vultures-claw/files/patch-sys_unix_Makefile.src31
2 files changed, 32 insertions, 1 deletions
diff --git a/games/vultures-claw/Makefile b/games/vultures-claw/Makefile
index d4437e3bb5f8..bac856874a2e 100644
--- a/games/vultures-claw/Makefile
+++ b/games/vultures-claw/Makefile
@@ -7,7 +7,7 @@
PORTNAME= vultures
PORTVERSION= 2.1.0
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= games
MASTER_SITES= http://www.darkarts.co.za/projects/vultures/downloads/${PORTVERSION}/
PKGNAMESUFFIX= -claw
diff --git a/games/vultures-claw/files/patch-sys_unix_Makefile.src b/games/vultures-claw/files/patch-sys_unix_Makefile.src
new file mode 100644
index 000000000000..ec4c1d866d60
--- /dev/null
+++ b/games/vultures-claw/files/patch-sys_unix_Makefile.src
@@ -0,0 +1,31 @@
+--- sys/unix/Makefile.src.orig Tue Sep 12 18:50:59 2006
++++ sys/unix/Makefile.src Tue Sep 12 18:51:23 2006
+@@ -147,13 +147,8 @@
+
+ # VULTURESCFLAGS will be passed to the sub-makefile for vultures
+ OS = $(shell uname -s)
+-ifeq ($(OS),FreeBSD)
+- SDL_CONFIG = sdl11-config
+- SDLMAIN = -lSDLmain-1.1
+-else
+- SDL_CONFIG = sdl-config
+- SDLMAIN = -lSDLmain
+-endif
++SDL_CONFIG = sdl-config
++SDLMAIN = -lSDLmain
+ VULTURESCFLAGS = -Wall -O -g
+ CFLAGS = -g -O -I../include -I ../win/vultures $(shell $(SDL_CONFIG) --cflags)
+ LFLAGS =
+@@ -362,11 +357,7 @@
+ # necessary compile and link flags.
+ #
+ OS = $(shell uname -s)
+-ifeq ($(OS),FreeBSD)
+- SDL = sdl11-config
+-else
+- SDL = sdl-config
+-endif
++SDL = sdl-config
+ WINVULTURESLIB = `$(SDL) --libs` $(SDLMAIN) -lSDL_mixer -lSDL_ttf -lpng -lz
+
+ ifeq ($(OS),Darwin)