From 8f7f0f337d79d858c0dc32d3247c1ef2c76d482a Mon Sep 17 00:00:00 2001 From: Emanuel Haupt Date: Wed, 24 Nov 2010 12:43:07 +0000 Subject: Update to 1.0.2 --- games/bloboats/Makefile | 7 ++--- games/bloboats/distinfo | 5 ++-- games/bloboats/files/patch-Makefile | 59 +++++++------------------------------ 3 files changed, 16 insertions(+), 55 deletions(-) (limited to 'games/bloboats') diff --git a/games/bloboats/Makefile b/games/bloboats/Makefile index 64b002ba77ba..088140286263 100644 --- a/games/bloboats/Makefile +++ b/games/bloboats/Makefile @@ -6,8 +6,7 @@ # PORTNAME= bloboats -PORTVERSION= 1.0.1 -PORTREVISION= 7 +PORTVERSION= 1.0.2 CATEGORIES= games MASTER_SITES= http://mirror.kapsi.fi/bloboats.dy.fi/ \ http://koti.mbnet.fi/makegho/c/blobtrox/ \ @@ -23,7 +22,7 @@ MAKE_JOBS_SAFE= yes MAKE_ENV+= DATADIR="${DATADIR}" -post-patch: - @${REINPLACE_CMD} -e 's|/usr/X11R6|${LOCALBASE}|g' ${WRKSRC}/Makefile +#post-patch: +# @${REINPLACE_CMD} -e 's|/usr/X11R6|${LOCALBASE}|g' ${WRKSRC}/Makefile .include diff --git a/games/bloboats/distinfo b/games/bloboats/distinfo index 45748e1591d8..338dd9475b63 100644 --- a/games/bloboats/distinfo +++ b/games/bloboats/distinfo @@ -1,3 +1,2 @@ -MD5 (bloboats-1.0.1.tar.gz) = 09d872cada575816b1047b2dfe4de40d -SHA256 (bloboats-1.0.1.tar.gz) = bbaf9b4774e42c1ec1b2473fca7e957c0b2b61448be4ba5e5023863e14d92242 -SIZE (bloboats-1.0.1.tar.gz) = 7603140 +SHA256 (bloboats-1.0.2.tar.gz) = 4aa5cbba7bae4471daefc6ba058cf6a84c62a4c06cd104a525f9ea1108787ccd +SIZE (bloboats-1.0.2.tar.gz) = 7592902 diff --git a/games/bloboats/files/patch-Makefile b/games/bloboats/files/patch-Makefile index dd7ad611d659..9c224e4639f8 100644 --- a/games/bloboats/files/patch-Makefile +++ b/games/bloboats/files/patch-Makefile @@ -1,73 +1,36 @@ ---- Makefile.orig Thu Aug 3 03:05:54 2006 -+++ Makefile Mon Sep 18 20:46:22 2006 -@@ -7,16 +7,16 @@ +--- ./Makefile.orig 2010-11-23 20:27:16.000000000 +0100 ++++ ./Makefile 2010-11-24 10:56:25.000000000 +0100 +@@ -7,16 +7,13 @@ ### Installation directory (Installation prefix) # If you don't have root privileges, set this to /home/tentacleman/bloboats/ # for example, otherwise /. Don't use ~ or other environment variables! -PREFIX = / -+#PREFIX = / ### Or if you don't want to run make install at all, uncomments the next line # and comment the line below. Compile and run with './bin/bloboats' #DATADIR = data -DATADIR = $(PREFIX)/usr/games/bloboats/data -+#DATADIR = $(PREFIX)/usr/games/bloboats/data - +- ### If you do make install, you may perhaps want to set these -BINARYDIR = $(PREFIX)/usr/bin +BINARYDIR = $(PREFIX)/bin CONFIGDIR = $(PREFIX)/etc PRIVATEDIR = ~/.bloboats -@@ -41,7 +41,7 @@ - - - #This should probably be DEFAULT --TARGET = DEFAULT -+TARGET = FREEBSD +@@ -53,13 +50,13 @@ - ### Only some random settings below -@@ -60,12 +60,12 @@ + ### C++ compiler to be used +-CXX_DEFAULT = g++ ++CXX_DEFAULT ?= g++ + CXX_FREEBSD = g++ + CXX_NETBSD = g++ CXX_MACOSX = g++ CXX_CROSS = i586-mingw32msvc-g++ -CXX = $(CXX_$(TARGET)) -+CXX ?= $(CXX_$(TARGET)) ++CXX ?= g++ ### SDL-Config in your system - SDLCONFIG_DEFAULT = sdl-config --SDLCONFIG_FREEBSD = sdl11-config -+SDLCONFIG_FREEBSD = sdl-config - SDLCONFIG_NETBSD = sdl-config - SDLCONFIG_MACOSX = sdl-config - SDLCONFIG_CROSS = i586-mingw32msvc-sdl-config -@@ -74,7 +74,7 @@ - - ### Libs - LIBS_DEFAULT = `$(SDLCONFIG) --libs` -lSDL_image -lSDL_mixer -lSDL_net -lGL -lGLU --LIBS_FREEBSD = `$(SDLCONFIG) --libs` -lSDL_image -lSDL_mixer -lSDL_net -L/usr/X11R6/lib -lGL -lGLU -+LIBS_FREEBSD = `$(SDLCONFIG) --libs` -lSDL_image -lSDL_mixer -lSDL_net -L$(LOCALBASE)/lib -lGL -lGLU - LIBS_NETBSD = `$(SDLCONFIG) --libs` -lSDL_image -lSDL_mixer -lSDL_net -lGL -lGLU -L/usr/pkg/lib - LIBS_MACOSX = `$(SDLCONFIG) --libs` -lSDL_image -lSDL_mixer -lSDL_net -framework OpenGL - LIBS_CROSS = `$(SDLCONFIG) --libs` -lSDL_image -lSDL_mixer -lSDL_net -lopengl32 -lglu32 -@@ -92,7 +92,7 @@ - - ### CXX-Flags - CXXFLAGS_DEFAULT = -g `$(SDLCONFIG) --cflags` -o bin/$(BINARY) -O2 --CXXFLAGS_FREEBSD = -g `$(SDLCONFIG) --cflags` -I/usr/X11R6/include -o bin/$(BINARY) -O2 -+CXXFLAGS_FREEBSD = $(CFLAGS) `$(SDLCONFIG) --cflags` -I/usr/X11R6/include -o bin/$(BINARY) - CXXFLAGS_NETBSD = -g `$(SDLCONFIG) --cflags` -O2 -I/usr/pkg/include - CXXFLAGS_MACOSX = -g `$(SDLCONFIG) --cflags` -o bin/$(BINARY) -O2 - CXXFLAGS_CROSS = -g `$(SDLCONFIG) --cflags` -o bin/$(BINARY) -O2 -@@ -127,7 +127,7 @@ - BINARY_CROSS_ = blobinv.exe - BINARY_ = $(BINARY_$(TARGET)_) - CXXFLAGS_DEFAULT_ = -g `$(SDLCONFIG) --cflags` -o bin/$(BINARY_) -O2 --CXXFLAGS_FREEBSD_ = -g `$(SDLCONFIG) --cflags` -I/usr/X11R6/include -o bin/$(BINARY_) -O2 -+CXXFLAGS_FREEBSD_ = `$(SDLCONFIG) --cflags` -I$(LOCALBASE)/include -o bin/$(BINARY_) -O2 - CXXFLAGS_NETBSD = -g `$(SDLCONFIG) --cflags` -O2 -I/usr/pkg/include - CXXFLAGS_MACOSX_ = -g `$(SDLCONFIG) --cflags` -o bin/$(BINARY_) -O2 - CXXFLAGS_CROSS_ = -g `$(SDLCONFIG) --cflags` -o bin/$(BINARY_) -O2 -- cgit v1.2.3