diff options
-rw-r--r-- | games-strategy/liquidwar/Manifest | 3 | ||||
-rw-r--r-- | games-strategy/liquidwar/files/digest-liquidwar-5.6.1 | 1 | ||||
-rw-r--r-- | games-strategy/liquidwar/files/liquidwar-gcc-3.3-fix.patch | 37 | ||||
-rw-r--r-- | games-strategy/liquidwar/liquidwar-5.6.1.ebuild | 35 |
4 files changed, 0 insertions, 76 deletions
diff --git a/games-strategy/liquidwar/Manifest b/games-strategy/liquidwar/Manifest index 99b256e4d4be..72ac61d1c32e 100644 --- a/games-strategy/liquidwar/Manifest +++ b/games-strategy/liquidwar/Manifest @@ -1,7 +1,4 @@ MD5 276848de3047f6cb6ec7e57a32485231 ChangeLog 1912 MD5 f2edf9e2c34dd58338a5b5be25ea97e0 liquidwar-5.6.2.ebuild 1575 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 -MD5 338e51c1ff06b37b39cd888bbaa566cf liquidwar-5.6.1.ebuild 1079 MD5 baa58ba47700f8e6b8525f9d35093e57 files/digest-liquidwar-5.6.2 68 -MD5 29a673ba920badafbb70251f63177d18 files/liquidwar-gcc-3.3-fix.patch 1134 -MD5 501e5f0f75ebd8b160bb68a0511dff51 files/digest-liquidwar-5.6.1 68 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 */ diff --git a/games-strategy/liquidwar/liquidwar-5.6.1.ebuild b/games-strategy/liquidwar/liquidwar-5.6.1.ebuild deleted file mode 100644 index 1203f1c71489..000000000000 --- a/games-strategy/liquidwar/liquidwar-5.6.1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/liquidwar/liquidwar-5.6.1.ebuild,v 1.2 2004/06/24 23:28:25 agriffis Exp $ - -inherit games flag-o-matic - -DESCRIPTION="unique multiplayer wargame" -HOMEPAGE="http://www.ufoot.org/liquidwar/" -SRC_URI="http://liquidwar.sunsite.dk/archive/${P}.tar.gz" - -KEYWORDS="x86" -LICENSE="GPL-2" -SLOT="0" -IUSE="" - -DEPEND=">media-libs/allegro-4.0" - -src_compile() { - # Fixes build problem with gcc3 and -march=pentium4 - replace-flags "-march=pentium4" "-march=pentium3" - - # needs to be econf and not egamesconf. Otherwise we end up - # with too many /games/ all over the place. - econf --disable-doc-ps --disable-doc-pdf || die - emake || die "emake failed" -} - -src_install() { - make DESTDIR="${D}" install || die "make install failed" - dogamesbin ${D}/usr/games/{liquidwar,liquidwar-server,liquidwar-mapgen} || \ - die "dogamesbin failed" - rm -f ${D}/usr/games/{liquidwar,liquidwar-server,liquidwar-mapgen} - rm -rf ${D}/usr/bin - prepgamesdirs -} |