diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-08-31 07:56:05 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-08-31 07:56:05 +0000 |
commit | f2ac6cc085ac5348f605e7a00fcefc4fa9143a54 (patch) | |
tree | f13a543d7697b4276deef124e876eeebce06b97d /games-strategy | |
parent | tidy (Manifest recommit) (diff) | |
download | gentoo-2-f2ac6cc085ac5348f605e7a00fcefc4fa9143a54.tar.gz gentoo-2-f2ac6cc085ac5348f605e7a00fcefc4fa9143a54.tar.bz2 gentoo-2-f2ac6cc085ac5348f605e7a00fcefc4fa9143a54.zip |
clean older ebuild
Diffstat (limited to 'games-strategy')
-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 |
3 files changed, 0 insertions, 73 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 */ 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 -} |