aboutsummaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
authormiwi <miwi@FreeBSD.org>2006-12-04 06:51:56 +0800
committermiwi <miwi@FreeBSD.org>2006-12-04 06:51:56 +0800
commit9a4c271442ca0dc49239ed316ef1824097f70697 (patch)
tree75229caff97a034829c51db0b60091fd8e1c9fc0 /games
parent3d1f173981e402f62bbcd5918ca2613a4f955a23 (diff)
downloadfreebsd-ports-graphics-9a4c271442ca0dc49239ed316ef1824097f70697.tar.gz
freebsd-ports-graphics-9a4c271442ca0dc49239ed316ef1824097f70697.tar.zst
freebsd-ports-graphics-9a4c271442ca0dc49239ed316ef1824097f70697.zip
- Update to 20061202
PR: ports/106249 Submitted by: Raymond Pasco<ray@cultofray.net> (maintainer)
Diffstat (limited to 'games')
-rw-r--r--games/alephone/Makefile4
-rw-r--r--games/alephone/distinfo6
-rw-r--r--games/alephone/files/patch-Source_Files__Misc__Logging_gruntwork.h25
-rw-r--r--games/alephone/files/patch-Source_Files__Sound__sound_sdl.h10
4 files changed, 5 insertions, 40 deletions
diff --git a/games/alephone/Makefile b/games/alephone/Makefile
index d2b0748c6c0..6555dd23efe 100644
--- a/games/alephone/Makefile
+++ b/games/alephone/Makefile
@@ -6,8 +6,8 @@
#
PORTNAME= alephone
-PORTVERSION= 20060701
-PORTREVISION= 1
+PORTVERSION= 20061202
+PORTREVISION= 0
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= marathon
diff --git a/games/alephone/distinfo b/games/alephone/distinfo
index 94a7afd9411..70193486435 100644
--- a/games/alephone/distinfo
+++ b/games/alephone/distinfo
@@ -1,3 +1,3 @@
-MD5 (AlephOne-20060701.tar.bz2) = e0a8e3eca91e06fa19c95027980af0e0
-SHA256 (AlephOne-20060701.tar.bz2) = 594442f269b6d6ea69ea78e8100e017ec637f5d4c9e702bb112e9503301c2437
-SIZE (AlephOne-20060701.tar.bz2) = 5985411
+MD5 (AlephOne-20061202.tar.bz2) = 5b39d7bba271279aecc0805a9fae6962
+SHA256 (AlephOne-20061202.tar.bz2) = cf052e6a2c7ba4fb4aee723c14acd3a89f4071158c4f0112a1cde06bf6ccdcec
+SIZE (AlephOne-20061202.tar.bz2) = 6005324
diff --git a/games/alephone/files/patch-Source_Files__Misc__Logging_gruntwork.h b/games/alephone/files/patch-Source_Files__Misc__Logging_gruntwork.h
deleted file mode 100644
index 0172769d350..00000000000
--- a/games/alephone/files/patch-Source_Files__Misc__Logging_gruntwork.h
+++ /dev/null
@@ -1,25 +0,0 @@
---- Source_Files/Misc/Logging_gruntwork.h.orig Tue Aug 30 23:47:00 2005
-+++ Source_Files/Misc/Logging_gruntwork.h Tue Apr 18 12:27:12 2006
-@@ -13,14 +13,14 @@
- #define logDump(message) (GetCurrentLogger()->logMessage(logDomain, logDumpLevel, __FILE__, __LINE__, (message)))
- #else
- // this obsoletes this whole file, pretty much - since macros can support var args and stuff :P
--#define logFatal(...) (GetCurrentLogger()->logMessage(logDomain, logFatalLevel, __FILE__, __LINE__, __VA_ARGS__))
--#define logError(...) (GetCurrentLogger()->logMessage(logDomain, logErrorLevel, __FILE__, __LINE__, __VA_ARGS__))
--#define logWarning(...) (GetCurrentLogger()->logMessage(logDomain, logWarningLevel, __FILE__, __LINE__, __VA_ARGS__))
--#define logAnomaly(...) (GetCurrentLogger()->logMessage(logDomain, logAnomalyLevel, __FILE__, __LINE__, __VA_ARGS__))
--#define logNote(...) (GetCurrentLogger()->logMessage(logDomain, logNoteLevel, __FILE__, __LINE__, __VA_ARGS__))
--#define logSummary(...) (GetCurrentLogger()->logMessage(logDomain, logSummaryLevel, __FILE__, __LINE__, __VA_ARGS__))
--#define logTrace(...) (GetCurrentLogger()->logMessage(logDomain, logTraceLevel, __FILE__, __LINE__, __VA_ARGS__))
--#define logDump(...) (GetCurrentLogger()->logMessage(logDomain, logDumpLevel, __FILE__, __LINE__, __VA_ARGS__))
-+#define logFatal(ARGS...) (GetCurrentLogger()->logMessage(logDomain, logFatalLevel, __FILE__, __LINE__, ##ARGS))
-+#define logError(ARGS...) (GetCurrentLogger()->logMessage(logDomain, logErrorLevel, __FILE__, __LINE__, ##ARGS))
-+#define logWarning(ARGS...) (GetCurrentLogger()->logMessage(logDomain, logWarningLevel, __FILE__, __LINE__, ##ARGS))
-+#define logAnomaly(ARGS...) (GetCurrentLogger()->logMessage(logDomain, logAnomalyLevel, __FILE__, __LINE__, ##ARGS))
-+#define logNote(ARGS...) (GetCurrentLogger()->logMessage(logDomain, logNoteLevel, __FILE__, __LINE__, ##ARGS))
-+#define logSummary(ARGS...) (GetCurrentLogger()->logMessage(logDomain, logSummaryLevel, __FILE__, __LINE__, ##ARGS))
-+#define logTrace(ARGS...) (GetCurrentLogger()->logMessage(logDomain, logTraceLevel, __FILE__, __LINE__, ##ARGS))
-+#define logDump(ARGS...) (GetCurrentLogger()->logMessage(logDomain, logDumpLevel, __FILE__, __LINE__, ##ARGS))
- #endif
-
-
diff --git a/games/alephone/files/patch-Source_Files__Sound__sound_sdl.h b/games/alephone/files/patch-Source_Files__Sound__sound_sdl.h
deleted file mode 100644
index 460b69380aa..00000000000
--- a/games/alephone/files/patch-Source_Files__Sound__sound_sdl.h
+++ /dev/null
@@ -1,10 +0,0 @@
---- Source_Files/Sound/sound_sdl.h.orig Sat Aug 12 09:43:24 2006
-+++ Source_Files/Sound/sound_sdl.h Sat Aug 12 09:44:25 2006
-@@ -346,6 +346,7 @@
- #ifdef MUSIC_SDL
- bool load_music_sdl(FileSpecifier &song_file)
- {
-+ if (!_sm_initialized || !_sm_active) return false;
- sdl_channel *c = sdl_channels + MUSIC_CHANNEL; // Music channel
- uint32 music_sample_rate; // Music sample rate in Hz
-