public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-board/crafty: ChangeLog crafty-23.0.ebuild
@ 2009-05-11 16:11 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2009-05-11 16:11 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    09/05/11 16:11:51

  Modified:             ChangeLog
  Added:                crafty-23.0.ebuild
  Log:
  version bump (bug #269358)
  (Portage version: 2.1.6.11/cvs/Linux i686)

Revision  Changes    Path
1.34                 games-board/crafty/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/crafty/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/crafty/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/crafty/ChangeLog?r1=1.33&r2=1.34

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-board/crafty/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	30 Jan 2009 06:40:38 -0000	1.33
+++ ChangeLog	11 May 2009 16:11:51 -0000	1.34
@@ -1,6 +1,11 @@
 # ChangeLog for games-board/crafty
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-board/crafty/ChangeLog,v 1.33 2009/01/30 06:40:38 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-board/crafty/ChangeLog,v 1.34 2009/05/11 16:11:51 mr_bones_ Exp $
+
+*crafty-23.0 (11 May 2009)
+
+  11 May 2009; Michael Sterrett <mr_bones_@gentoo.org> +crafty-23.0.ebuild:
+  version bump (bug #269358)
 
 *crafty-22.9 (30 Jan 2009)
 



1.1                  games-board/crafty/crafty-23.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/crafty/crafty-23.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/crafty/crafty-23.0.ebuild?rev=1.1&content-type=text/plain

Index: crafty-23.0.ebuild
===================================================================
# 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-23.0.ebuild,v 1.1 2009/05/11 16:11:51 mr_bones_ Exp $

EAPI=2
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_prepare() {
	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
}






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-board/crafty: ChangeLog crafty-23.0.ebuild
@ 2009-09-27 12:26 Markus Meier (maekke)
  0 siblings, 0 replies; 3+ messages in thread
From: Markus Meier (maekke) @ 2009-09-27 12:26 UTC (permalink / raw
  To: gentoo-commits

maekke      09/09/27 12:26:45

  Modified:             ChangeLog crafty-23.0.ebuild
  Log:
  amd64/x86 stable, bug #286430
  (Portage version: 2.2_rc42/cvs/Linux x86_64)

Revision  Changes    Path
1.35                 games-board/crafty/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/crafty/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/crafty/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/crafty/ChangeLog?r1=1.34&r2=1.35

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-board/crafty/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	11 May 2009 16:11:51 -0000	1.34
+++ ChangeLog	27 Sep 2009 12:26:45 -0000	1.35
@@ -1,6 +1,9 @@
 # ChangeLog for games-board/crafty
-# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-board/crafty/ChangeLog,v 1.34 2009/05/11 16:11:51 mr_bones_ Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-board/crafty/ChangeLog,v 1.35 2009/09/27 12:26:45 maekke Exp $
+
+  27 Sep 2009; Markus Meier <maekke@gentoo.org> crafty-23.0.ebuild:
+  amd64/x86 stable, bug #286430
 
 *crafty-23.0 (11 May 2009)
 



1.2                  games-board/crafty/crafty-23.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/crafty/crafty-23.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/crafty/crafty-23.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/crafty/crafty-23.0.ebuild?r1=1.1&r2=1.2

Index: crafty-23.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-board/crafty/crafty-23.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- crafty-23.0.ebuild	11 May 2009 16:11:51 -0000	1.1
+++ crafty-23.0.ebuild	27 Sep 2009 12:26:45 -0000	1.2
@@ -1,6 +1,6 @@
 # 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-23.0.ebuild,v 1.1 2009/05/11 16:11:51 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-board/crafty/crafty-23.0.ebuild,v 1.2 2009/09/27 12:26:45 maekke Exp $
 
 EAPI=2
 inherit flag-o-matic toolchain-funcs games
@@ -12,7 +12,7 @@
 
 LICENSE="crafty"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="no-opts"
 RESTRICT="test"
 






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-board/crafty: ChangeLog crafty-23.0.ebuild
@ 2009-09-27 19:56 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 3+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-09-27 19:56 UTC (permalink / raw
  To: gentoo-commits

nixnut      09/09/27 19:56:50

  Modified:             ChangeLog crafty-23.0.ebuild
  Log:
  ppc stable #286430
  (Portage version: 2.1.6.13/cvs/Linux ppc)

Revision  Changes    Path
1.36                 games-board/crafty/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/crafty/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/crafty/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/crafty/ChangeLog?r1=1.35&r2=1.36

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-board/crafty/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	27 Sep 2009 12:26:45 -0000	1.35
+++ ChangeLog	27 Sep 2009 19:56:50 -0000	1.36
@@ -1,6 +1,9 @@
 # ChangeLog for games-board/crafty
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-board/crafty/ChangeLog,v 1.35 2009/09/27 12:26:45 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-board/crafty/ChangeLog,v 1.36 2009/09/27 19:56:50 nixnut Exp $
+
+  27 Sep 2009; nixnut <nixnut@gentoo.org> crafty-23.0.ebuild:
+  ppc stable #286430
 
   27 Sep 2009; Markus Meier <maekke@gentoo.org> crafty-23.0.ebuild:
   amd64/x86 stable, bug #286430



1.3                  games-board/crafty/crafty-23.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/crafty/crafty-23.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/crafty/crafty-23.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/crafty/crafty-23.0.ebuild?r1=1.2&r2=1.3

Index: crafty-23.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-board/crafty/crafty-23.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- crafty-23.0.ebuild	27 Sep 2009 12:26:45 -0000	1.2
+++ crafty-23.0.ebuild	27 Sep 2009 19:56:50 -0000	1.3
@@ -1,6 +1,6 @@
 # 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-23.0.ebuild,v 1.2 2009/09/27 12:26:45 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-board/crafty/crafty-23.0.ebuild,v 1.3 2009/09/27 19:56:50 nixnut Exp $
 
 EAPI=2
 inherit flag-o-matic toolchain-funcs games
@@ -12,7 +12,7 @@
 
 LICENSE="crafty"
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="no-opts"
 RESTRICT="test"
 






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-09-27 19:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-27 12:26 [gentoo-commits] gentoo-x86 commit in games-board/crafty: ChangeLog crafty-23.0.ebuild Markus Meier (maekke)
  -- strict thread matches above, loose matches on Subject: below --
2009-09-27 19:56 Gysbert Wassenaar (nixnut)
2009-05-11 16:11 Michael Sterrett (mr_bones_)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox