summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2004-08-31 07:56:05 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2004-08-31 07:56:05 +0000
commitfca81dfc9cf817ea63f410c4b42e7933982bc836 (patch)
tree5f64f6a88db272900b429d98365d5bc2ad7490c0 /games-strategy/liquidwar/files
parenttidy (diff)
downloadhistorical-fca81dfc9cf817ea63f410c4b42e7933982bc836.tar.gz
historical-fca81dfc9cf817ea63f410c4b42e7933982bc836.tar.bz2
historical-fca81dfc9cf817ea63f410c4b42e7933982bc836.zip
clean older ebuild
Diffstat (limited to 'games-strategy/liquidwar/files')
-rw-r--r--games-strategy/liquidwar/files/digest-liquidwar-5.6.11
-rw-r--r--games-strategy/liquidwar/files/liquidwar-gcc-3.3-fix.patch37
2 files changed, 0 insertions, 38 deletions
diff --git a/games-strategy/liquidwar/files/digest-liquidwar-5.6.1 b/games-strategy/liquidwar/files/digest-liquidwar-5.6.1
deleted file mode 100644
index c7c25eee938c..000000000000
--- a/games-strategy/liquidwar/files/digest-liquidwar-5.6.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 8ca98b904089beac03c06343a0dd59ca liquidwar-5.6.1.tar.gz 2970876
diff --git a/games-strategy/liquidwar/files/liquidwar-gcc-3.3-fix.patch b/games-strategy/liquidwar/files/liquidwar-gcc-3.3-fix.patch
deleted file mode 100644
index 8ce3938ab357..000000000000
--- a/games-strategy/liquidwar/files/liquidwar-gcc-3.3-fix.patch
+++ /dev/null
@@ -1,37 +0,0 @@
---- liquidwar-5.5.9/src/netconf.c 2003-06-14 23:30:42.000000000 +0200
-+++ liquidwar-5.5.9-new/src/netconf.c 2003-06-14 23:31:59.000000000 +0200
-@@ -70,27 +70,27 @@
- /*==================================================================*/
-
- #define LW_NETCONF_CHECK_RANGE(VAL,MAX) \
--if (config-> ## VAL < 0) \
-+if (config->VAL < 0) \
- { \
- result=0; \
- log_print_str("Error: " #VAL " is "); \
--log_print_int(config-> ## VAL); \
-+log_print_int(config->VAL); \
- log_println_str(", and should be >= 0"); \
--config-> ## VAL = 0; \
-+config->VAL = 0; \
- } \
--if (config-> ## VAL > MAX) \
-+if (config->VAL > MAX) \
- { \
- result=0; \
- log_print_str("Error: " #VAL " is > "); \
--log_print_int(config-> ## VAL); \
-+log_print_int(config->VAL); \
- log_print_str(", and should be <= "); \
- log_println_int(MAX); \
--config-> ## VAL = MAX; \
-+config->VAL = MAX; \
- }
-
- #define LW_NETCONF_PRINT_VALUE(VAL) \
- log_print_str(#VAL " = "); \
--log_println_int(config-> ## VAL);
-+log_println_int(config->VAL);
-
- /*==================================================================*/
- /* types */