diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-11-18 22:18:10 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-11-18 22:18:10 +0000 |
commit | 320212234b05328a602f02e59a92cf3b646e6285 (patch) | |
tree | c53c2bac3b33faf73e3511bbd558d81e8be60946 /games-board/crafty | |
parent | Marked -amd64 too, upstream ticket 74. (diff) | |
download | historical-320212234b05328a602f02e59a92cf3b646e6285.tar.gz historical-320212234b05328a602f02e59a92cf3b646e6285.tar.bz2 historical-320212234b05328a602f02e59a92cf3b646e6285.zip |
old
Package-Manager: portage-2.0.51.22-r3
Diffstat (limited to 'games-board/crafty')
-rw-r--r-- | games-board/crafty/Manifest | 6 | ||||
-rw-r--r-- | games-board/crafty/crafty-19.19.ebuild | 76 | ||||
-rw-r--r-- | games-board/crafty/crafty-19.8.ebuild | 71 | ||||
-rw-r--r-- | games-board/crafty/files/19.8-ppc.patch | 25 | ||||
-rw-r--r-- | games-board/crafty/files/crafty-18.15-ppc.patch | 24 | ||||
-rw-r--r-- | games-board/crafty/files/digest-crafty-19.19 | 1 | ||||
-rw-r--r-- | games-board/crafty/files/digest-crafty-19.8 | 1 |
7 files changed, 0 insertions, 204 deletions
diff --git a/games-board/crafty/Manifest b/games-board/crafty/Manifest index 3cc1eae0f465..cd9f52566056 100644 --- a/games-board/crafty/Manifest +++ b/games-board/crafty/Manifest @@ -1,12 +1,6 @@ MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 MD5 6646e459c86a10c6539f2c91341d3e22 crafty-19.20.ebuild 2275 -MD5 3cab1102bbc9003cdc5c8c934bef76a3 crafty-19.19.ebuild 2279 MD5 d0a5ce169e3de402085e8fc69be3e1cf crafty-20.1.ebuild 2287 MD5 db309e06fa0025cad92342bb96311154 ChangeLog 2485 -MD5 93645f942a517a9fc8e5d45e697f4d77 crafty-19.8.ebuild 2115 -MD5 901b6df7332530910e854f501d4d49e1 files/digest-crafty-19.19 64 -MD5 4970593053a51ce5e26ea2d6bd89ffe9 files/19.8-ppc.patch 702 MD5 65a97af46b1a4567e7df624c923cbc9a files/digest-crafty-20.1 60 MD5 1d2478ad97099a71745f628650cfa99b files/digest-crafty-19.20 64 -MD5 1cfc5524de1fd69ae391d434d6e483d9 files/crafty-18.15-ppc.patch 634 -MD5 17996dcbb38db4126094543f36cd43d1 files/digest-crafty-19.8 63 diff --git a/games-board/crafty/crafty-19.19.ebuild b/games-board/crafty/crafty-19.19.ebuild deleted file mode 100644 index f07a4a0cbbcf..000000000000 --- a/games-board/crafty/crafty-19.19.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/crafty/crafty-19.19.ebuild,v 1.2 2005/08/24 05:25:19 mr_bones_ Exp $ - -inherit flag-o-matic games - -DESCRIPTION="Bob Hyatt's strong chess engine" -HOMEPAGE="ftp://ftp.cis.uab.edu/pub/hyatt/" -SRC_URI="ftp://ftp.cis.uab.edu/pub/hyatt/source/${P}.tar.gz" - -LICENSE="crafty" -SLOT="0" -KEYWORDS="~amd64 ~ppc x86" -IUSE="icc no-opts" - -RDEPEND="" -DEPEND="${RDEPEND} - icc? ( >=dev-lang/icc-5.0 )" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i \ - -e '/-o crafty/s/CC/CXX/' Makefile \ - || die "sed failed" - sed -i \ - -e "s:\"crafty.hlp\":\"${GAMES_DATADIR}/${PN}/crafty.hlp\":" option.c \ - || die "sed failed" -} - -src_compile() { - local makeopts="target=LINUX" - - if ! use no-opts ; then - if use icc ; then - makeopts="${makeopts} CC=icc CXX=gcc asm=X86.o" - append-flags -D_REENTRANT -tpp6 \ - -DCOMPACT_ATTACKS -DUSE_ATTACK_FUNCTIONS \ - -DUSE_ASSEMBLY_A -DUSE_ASSEMBLY_B -DFAST \ - -DSMP -DCPUS=4 -DCLONE -DDGT - append-flags -O2 -fno-alias -fforce-mem \ - -fomit-frame-pointer -fno-gcse -mpreferred-stack-boundary=2 - else - if [ "${CHOST}" == "i686-pc-linux-gnu" ] || [ "${CHOST}" == "i586-pc-linux-gnu" ] ; then - append-flags -DCOMPACT_ATTACKS -DUSE_ATTACK_FUNCTIONS \ - -DUSE_ASSEMBLY_A -DUSE_ASSEMBLY_B \ - -DFAST -DSMP -DCPUS=4 -DCLONE -DDGT - append-flags -fforce-mem -fno-gcse \ - -fomit-frame-pointer -mpreferred-stack-boundary=2 - makeopts="${makeopts} CC=gcc CXX=g++ asm=X86.o" - else - : # everything else :) - fi - fi - fi - append-flags -DPOSIX - emake ${makeopts} crafty-make LDFLAGS="-lpthread" || die "build failed" -} - -src_install() { - dogamesbin crafty || die "dogamesbin failed" - insinto "${GAMES_DATADIR}/${PN}" - doins crafty.hlp || die "doins failed" - prepgamesdirs -} - -pkg_postinst() { - games_pkg_postinst - einfo - einfo "Note: No books or tablebases have been installed. If you want them, just" - einfo " download them from ${HOMEPAGE}." - einfo " You will find documentation there too. In most cases you take now " - einfo " your xboard compatible application, (xboard, eboard, knights) and " - einfo " just play chess against computer opponent. Have fun." - einfo -} diff --git a/games-board/crafty/crafty-19.8.ebuild b/games-board/crafty/crafty-19.8.ebuild deleted file mode 100644 index b13b76c40eb4..000000000000 --- a/games-board/crafty/crafty-19.8.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/crafty/crafty-19.8.ebuild,v 1.8 2005/09/26 17:43:45 wolf31o2 Exp $ - -inherit eutils flag-o-matic games - -DESCRIPTION="Bob Hyatt's strong chess engine" -HOMEPAGE="ftp://ftp.cis.uab.edu/pub/hyatt/" -SRC_URI="ftp://ftp.cis.uab.edu/pub/hyatt/v19/${P}.tar.gz" - -LICENSE="crafty" -SLOT="0" -KEYWORDS="x86 ppc amd64" -IUSE="icc no-opts" - -DEPEND="virtual/libc - icc? ( >=dev-lang/icc-5.0 )" -RDEPEND="virtual/libc" - -S=${WORKDIR} - -src_unpack() { - unpack ${A} - cd ${S} - sed -i '/-o crafty/s/CC/CXX/' Makefile - epatch ${FILESDIR}/${PV}-ppc.patch #5932 -} - -src_compile() { - local makeopts="target=LINUX" - if ! use no-opts ; then - if use icc ; then - makeopts="${makeopts} CC=icc CXX=gcc asm=X86.o" - append-flags -D_REENTRANT -tpp6 \ - -DCOMPACT_ATTACKS -DUSE_ATTACK_FUNCTIONS \ - -DUSE_ASSEMBLY_A -DUSE_ASSEMBLY_B -DFAST \ - -DSMP -DCPUS=4 -DCLONE -DDGT - append-flags -O2 -fno-alias -fforce-mem \ - -fomit-frame-pointer -fno-gcse -mpreferred-stack-boundary=2 - else - if [ "${CHOST}" == "i686-pc-linux-gnu" ] || [ "${CHOST}" == "i586-pc-linux-gnu" ] ; then - append-flags -DCOMPACT_ATTACKS -DUSE_ATTACK_FUNCTIONS \ - -DUSE_ASSEMBLY_A -DUSE_ASSEMBLY_B \ - -DFAST -DSMP -DCPUS=4 -DCLONE -DDGT - append-flags -fforce-mem -fno-gcse \ - -fomit-frame-pointer -mpreferred-stack-boundary=2 - makeopts="${makeopts} CC=gcc CXX=g++ asm=X86.o" - else - : # everything else :) - fi - fi - fi - append-flags -DPOSIX - emake ${makeopts} crafty-make LDFLAGS="-lpthread" || die "build failed" -} - -src_install() { - dogamesbin crafty || die - prepgamesdirs -} - -pkg_postinst() { - games_pkg_postinst - einfo - einfo "Note: No books or tablebases have been installed. If you want them, just" - einfo " download them from ${HOMEPAGE}." - einfo " You will find documentation there too. In most cases you take now " - einfo " your xboard compatible application, (xboard, eboard, knights) and " - einfo " just play chess against computer opponent. Have fun." - einfo -} diff --git a/games-board/crafty/files/19.8-ppc.patch b/games-board/crafty/files/19.8-ppc.patch deleted file mode 100644 index c337e108a473..000000000000 --- a/games-board/crafty/files/19.8-ppc.patch +++ /dev/null @@ -1,25 +0,0 @@ ---- utility.c.orig 2003-12-31 01:36:43.778210312 -0500 -+++ utility.c 2003-12-31 01:37:50.667041664 -0500 -@@ -1134,13 +1134,19 @@ - } - - void Print(int vb, char *fmt, ...) { -- va_list ap; -+ va_list ap, ap2; - va_start(ap,fmt); -+ #ifdef __va_copy -+ __va_copy(ap2, ap); -+ #else -+ /* FIXME: C99 has va_copy() - test for C99 and use it if present */ -+ ap2 = ap; -+ #endif - if (vb&display_options) vprintf(fmt, ap); - fflush(stdout); - if (time_limit>99 || tc_time_remaining>6000 || vb==4095) { -- va_start(ap,fmt); -- if (log_file) vfprintf(log_file, fmt, ap); -+ va_start(ap2,fmt); -+ if (log_file) vfprintf(log_file, fmt, ap2); - if (log_file) fflush(log_file); - } - va_end(ap); diff --git a/games-board/crafty/files/crafty-18.15-ppc.patch b/games-board/crafty/files/crafty-18.15-ppc.patch deleted file mode 100644 index f53cc94b130e..000000000000 --- a/games-board/crafty/files/crafty-18.15-ppc.patch +++ /dev/null @@ -1,24 +0,0 @@ ---- utility.c.orig Thu May 23 19:02:28 2002 -+++ utility.c Fri Aug 2 22:29:49 2002 -@@ -1159,12 +1159,18 @@ - } - - void Print(int vb, char *fmt, ...) { -- va_list ap; -+ va_list ap, ap2; - va_start(ap,fmt); -+ #ifdef __va_copy -+ __va_copy(ap2, ap); -+ #else -+ /* FIXME: C99 has va_copy() - test for C99 and use it if present */ -+ ap2 = ap; -+ #endif - if (vb&display_options) vprintf(fmt, ap); - fflush(stdout); - if (time_limit>99 || tc_time_remaining>6000 || vb==4095) { -- if (log_file) vfprintf(log_file, fmt, ap); -+ if (log_file) vfprintf(log_file, fmt, ap2); - if (log_file) fflush(log_file); - } - va_end(ap); - diff --git a/games-board/crafty/files/digest-crafty-19.19 b/games-board/crafty/files/digest-crafty-19.19 deleted file mode 100644 index debe738532a6..000000000000 --- a/games-board/crafty/files/digest-crafty-19.19 +++ /dev/null @@ -1 +0,0 @@ -MD5 f0cbd39ae11e2ecd6a439226c9b10b59 crafty-19.19.tar.gz 395480 diff --git a/games-board/crafty/files/digest-crafty-19.8 b/games-board/crafty/files/digest-crafty-19.8 deleted file mode 100644 index d1d2e5735c3c..000000000000 --- a/games-board/crafty/files/digest-crafty-19.8 +++ /dev/null @@ -1 +0,0 @@ -MD5 eb7f48d1f8acc3804e80291d85b1ec35 crafty-19.8.tar.gz 384312 |