summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2009-07-29 00:18:44 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2009-07-29 00:18:44 +0000
commit288b45c361122598572fd79713ee16a765e48ae7 (patch)
tree3260af2689f25e776031593716d4b04b2e145d40 /games-board
parentStable for HPPA (bug #275705). (diff)
downloadhistorical-288b45c361122598572fd79713ee16a765e48ae7.tar.gz
historical-288b45c361122598572fd79713ee16a765e48ae7.tar.bz2
historical-288b45c361122598572fd79713ee16a765e48ae7.zip
old
Package-Manager: portage-2.1.6.13/cvs/Linux i686
Diffstat (limited to 'games-board')
-rw-r--r--games-board/crafty/Manifest2
-rw-r--r--games-board/crafty/crafty-22.9.ebuild86
2 files changed, 0 insertions, 88 deletions
diff --git a/games-board/crafty/Manifest b/games-board/crafty/Manifest
index 7613c8b7cc08..c7d41db704ef 100644
--- a/games-board/crafty/Manifest
+++ b/games-board/crafty/Manifest
@@ -1,9 +1,7 @@
DIST crafty-22.1.zip 405169 RMD160 963ec8110617b3d1273953d03ddb974019ec26a9 SHA1 4ed19f5c676035b899d82cd254eee3d391cbabbf SHA256 ec25063af97d079402f1daee99493cc7d7c9a9df6001f856f9d0584dd23894be
-DIST crafty-22.9.zip 417726 RMD160 285b211391bf3ede119ec57c1a658f53a5647e6e SHA1 745cceb77743745e2d156495a4811e57c952f7af SHA256 e0d09c2ca0da3a7f0e05fc3d84a1fab9836cf0edf4963588f44f3ddf29233b50
DIST crafty-23.0.zip 419362 RMD160 46b75d00a3449347a2faa4fedd2632c609c8331a SHA1 48c941c3a5ce6fcf637f0d9e5b6ae42d55e00a56 SHA256 699bed07f49af02f054b6a241aa99e35a3087230664e2979b7714e5044ad89d2
DIST crafty.doc.ascii 79678 RMD160 f0c8304efcaa93a14a37da96d22bb25cda8d1bf5 SHA1 99bb27b39ddd4bd3db8078e128eadfcde1c3b64b SHA256 be291c0f4c7e7d64404ec58b9e92c2455c4342d3c96c721ba21a80fce8332e83
EBUILD crafty-22.1.ebuild 2703 RMD160 134915aa4541ff76e04b19237ae9cd8ecfe1eacc SHA1 47a331bfdba680cd4c1b405c455b606b9665b0a3 SHA256 c7b7b9186bbd1ff2a0b4f1d780ba59bb63abe35f3ec0a3c1076971834fd258b1
-EBUILD crafty-22.9.ebuild 2623 RMD160 6d358eda5a954e4d3ab037dacedbbcad8b43fe18 SHA1 b8732678f0dbf824c0c4861d38c7ee51bb943278 SHA256 a8cb337b859cd84c2116e091105f6cbb41767572f02c94528f24cbdf57f13ad1
EBUILD crafty-23.0.ebuild 2603 RMD160 b64e1bf080eb090674ed32bf0714189050ce1970 SHA1 6a2fc6f8ea9cffd4d189b376865708c546c686ab SHA256 72919350752325c74841beaf0cdd21f908f56603d1f258f892778ea999c60300
MISC ChangeLog 4914 RMD160 578eb5462f31e7737784195a9e905b225a27627c SHA1 ee6b810914e37c97ce2b38a80275d5b4430a7c77 SHA256 c18976f0660b5ad3c180a156786113aa3ccb0dc940a2835c5f34199424fe73dc
MISC metadata.xml 249 RMD160 88ee2399ce6b1f209307a856b772e1faf8056b19 SHA1 23af7043274b9d3c6b615be57dbd7876dbd2efb1 SHA256 49f221ca292eb58886695b31631b28f38321f3fd6dfd265bba9991b093d68dec
diff --git a/games-board/crafty/crafty-22.9.ebuild b/games-board/crafty/crafty-22.9.ebuild
deleted file mode 100644
index 3312f8c210ba..000000000000
--- a/games-board/crafty/crafty-22.9.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-board/crafty/crafty-22.9.ebuild,v 1.1 2009/01/30 06:40:38 mr_bones_ Exp $
-
-inherit flag-o-matic toolchain-funcs 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}.zip
- ftp://ftp.cis.uab.edu/pub/hyatt/documentation/${PN}.doc.ascii"
-
-LICENSE="crafty"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="no-opts"
-RESTRICT="test"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
- app-arch/unzip"
-
-src_unpack() {
- unpack ${P}.zip
- cd "${S}"
- sed -i \
- -e '/-o crafty/s/CC/CXX/' \
- -e 's:CXFLAGS:CXXFLAGS:g' \
- 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 [[ $(tc-getCC) = icc ]] ; then
- makeopts="${makeopts} 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 -fno-gcse \
- -fomit-frame-pointer -mpreferred-stack-boundary=2
- elif [[ "${CHOST}" == "x86_64-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 -fomit-frame-pointer
- else
- : # everything else :)
- fi
- fi
- fi
- append-flags -DPOSIX -DSKILL
- emake ${makeopts} crafty-make LDFLAGS="${LDFLAGS} -pthread" || die "build failed"
-}
-
-src_install() {
- dogamesbin crafty || die "dogamesbin failed"
- insinto "${GAMES_DATADIR}/${PN}"
- doins crafty.hlp || die "doins failed"
- dodoc "${DISTDIR}"/crafty.doc.ascii
- prepgamesdirs
-}
-
-pkg_postinst() {
- games_pkg_postinst
- elog
- elog "Note: No books or tablebases have been installed. If you want them, just"
- elog " download them from ${HOMEPAGE}."
- elog " You will find documentation there too. In most cases you take now "
- elog " your xboard compatible application, (xboard, eboard, knights) and "
- elog " just play chess against computer opponent. Have fun."
- elog
-}