public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/betagarden:master commit in: games-board/stockfish/
@ 2015-02-06 14:57 Ben de Groot
  0 siblings, 0 replies; 4+ messages in thread
From: Ben de Groot @ 2015-02-06 14:57 UTC (permalink / raw
  To: gentoo-commits

commit:     b80d16e448d2c7e9b66a6206e7c71a4222ba4c89
Author:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
AuthorDate: Fri Feb  6 14:57:08 2015 +0000
Commit:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
CommitDate: Fri Feb  6 14:57:08 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=b80d16e4

games-board/stockfish: live ebuild

---
 games-board/stockfish/metadata.xml          |  8 ++++++
 games-board/stockfish/stockfish-9999.ebuild | 40 +++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/games-board/stockfish/metadata.xml b/games-board/stockfish/metadata.xml
new file mode 100644
index 0000000..f2b4a5d
--- /dev/null
+++ b/games-board/stockfish/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer>
+    <email>yngwin@gentoo.org</email>
+    <name>Ben de Groot</name>
+  </maintainer>
+</pkgmetadata>

diff --git a/games-board/stockfish/stockfish-9999.ebuild b/games-board/stockfish/stockfish-9999.ebuild
new file mode 100644
index 0000000..cba1014
--- /dev/null
+++ b/games-board/stockfish/stockfish-9999.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/games-board/stockfish/stockfish-6.ebuild,v 1.1 2015/02/05 20:09:33 yngwin Exp $
+
+EAPI=5
+inherit git-r3 toolchain-funcs
+
+DESCRIPTION="The strongest chess engine in the world"
+HOMEPAGE="http://stockfishchess.org/"
+EGIT_REPO_URI="git://github.com/official-stockfish/Stockfish.git"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS=""
+IUSE="cpu_flags_x86_avx2 cpu_flags_x86_popcnt cpu_flags_x86_sse"
+
+DEPEND=""
+RDEPEND=""
+
+S=${WORKDIR}/${P}/src
+
+src_prepare() {
+	sed -e 's:-strip $(BINDIR)/$(EXE)::' -i Makefile
+}
+
+src_compile() {
+	local my_arch
+	use x86 && my_arch=x86-32-old
+	use cpu_flags_x86_sse && my_arch=x86-32
+	use amd64 && my_arch=x86-64
+	use cpu_flags_x86_popcnt && my_arch=x86-64-modern
+	use cpu_flags_x86_avx2 && my_arch=x86-64-bmi2
+
+	emake build ARCH=${my_arch} CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}"
+}
+
+src_install() {
+	emake PREFIX="${D}/usr" install
+	dodoc ../AUTHORS ../Readme.md
+}


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

* [gentoo-commits] proj/betagarden:master commit in: games-board/stockfish/
@ 2015-02-07 11:41 Ben de Groot
  0 siblings, 0 replies; 4+ messages in thread
From: Ben de Groot @ 2015-02-07 11:41 UTC (permalink / raw
  To: gentoo-commits

commit:     033d138cfc4592a3de02c1c587ebd88b4bf38fa9
Author:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
AuthorDate: Sat Feb  7 11:41:16 2015 +0000
Commit:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
CommitDate: Sat Feb  7 11:41:16 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=033d138c

Ebuild improvements

---
 games-board/stockfish/metadata.xml          |  6 +++++
 games-board/stockfish/stockfish-9999.ebuild | 42 +++++++++++++++++++++--------
 2 files changed, 37 insertions(+), 11 deletions(-)

diff --git a/games-board/stockfish/metadata.xml b/games-board/stockfish/metadata.xml
index f2b4a5d..1f5c48a 100644
--- a/games-board/stockfish/metadata.xml
+++ b/games-board/stockfish/metadata.xml
@@ -5,4 +5,10 @@
     <email>yngwin@gentoo.org</email>
     <name>Ben de Groot</name>
   </maintainer>
+  <use>
+    <flag name='armv7'>Build for armv7; enables PIE</flag>
+    <flag name='general-32'>Generic unoptimized 32-bits build</flag>
+    <flag name='general-64'>Generic unoptimized 64-bits build</flag>
+    <flag name='optimize'>Enable upstream -O3 optimizations (default enabled)</flag>
+  </use>
 </pkgmetadata>

diff --git a/games-board/stockfish/stockfish-9999.ebuild b/games-board/stockfish/stockfish-9999.ebuild
index cba1014..719c97d 100644
--- a/games-board/stockfish/stockfish-9999.ebuild
+++ b/games-board/stockfish/stockfish-9999.ebuild
@@ -1,37 +1,57 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-board/stockfish/stockfish-6.ebuild,v 1.1 2015/02/05 20:09:33 yngwin Exp $
+# $Header: $
 
 EAPI=5
-inherit git-r3 toolchain-funcs
-
-DESCRIPTION="The strongest chess engine in the world"
+if [[ ${PV} == *9999* ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="git://github.com/official-stockfish/Stockfish.git"
+	KEYWORDS=""
+	S=${WORKDIR}/${P}/src
+else
+	SRC_URI="https://stockfish.s3.amazonaws.com/${P}-src.zip"
+	KEYWORDS="~arm64 ~x86"
+	S=${WORKDIR}/${P}-src/src
+fi
+
+DESCRIPTION="Free UCI chess engine, claimed to be the strongest in the world"
 HOMEPAGE="http://stockfishchess.org/"
-EGIT_REPO_URI="git://github.com/official-stockfish/Stockfish.git"
 
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS=""
-IUSE="cpu_flags_x86_avx2 cpu_flags_x86_popcnt cpu_flags_x86_sse"
+IUSE="armv7 cpu_flags_x86_avx2 cpu_flags_x86_popcnt cpu_flags_x86_sse debug
+	general-32 general-64 +optimize"
 
 DEPEND=""
 RDEPEND=""
 
-S=${WORKDIR}/${P}/src
-
 src_prepare() {
-	sed -e 's:-strip $(BINDIR)/$(EXE)::' -i Makefile
+	# prevent pre-stripping
+	sed -e 's:-strip $(BINDIR)/$(EXE)::' -i Makefile || die
 }
 
 src_compile() {
 	local my_arch
+	# generic unoptimized first
+	use general-32 && my_arch=general-32
+	use general-64 && my_arch=general-64
+	# x86
 	use x86 && my_arch=x86-32-old
 	use cpu_flags_x86_sse && my_arch=x86-32
+	# amd64
 	use amd64 && my_arch=x86-64
 	use cpu_flags_x86_popcnt && my_arch=x86-64-modern
+	# both bmi2 and avx2 are part of hni (haswell new instructions)
 	use cpu_flags_x86_avx2 && my_arch=x86-64-bmi2
-
-	emake build ARCH=${my_arch} CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}"
+	# other architectures
+	use armv7 && my_arch=armv7
+	use ppc && my_arch=ppc
+	use ppc64 && my_arch=ppc64
+
+	emake build ARCH=${my_arch} \
+		debug=$(usex debug "yes" "no") \
+		optimize=$(usex optimize "yes" "no")
 }
 
 src_install() {


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

* [gentoo-commits] proj/betagarden:master commit in: games-board/stockfish/
@ 2015-02-07 11:46 Ben de Groot
  0 siblings, 0 replies; 4+ messages in thread
From: Ben de Groot @ 2015-02-07 11:46 UTC (permalink / raw
  To: gentoo-commits

commit:     f8786c1c0fc6efc3e6d5b405a100a5d7f031ab70
Author:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
AuthorDate: Sat Feb  7 11:46:20 2015 +0000
Commit:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
CommitDate: Sat Feb  7 11:46:20 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=f8786c1c

games-board/stockfish: fix typos

---
 games-board/stockfish/stockfish-9999.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/games-board/stockfish/stockfish-9999.ebuild b/games-board/stockfish/stockfish-9999.ebuild
index 719c97d..d8bf6c2 100644
--- a/games-board/stockfish/stockfish-9999.ebuild
+++ b/games-board/stockfish/stockfish-9999.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == *9999* ]]; then
 	S=${WORKDIR}/${P}/src
 else
 	SRC_URI="https://stockfish.s3.amazonaws.com/${P}-src.zip"
-	KEYWORDS="~arm64 ~x86"
+	KEYWORDS="~amd64 ~x86"
 	S=${WORKDIR}/${P}-src/src
 fi
 
@@ -19,7 +19,6 @@ HOMEPAGE="http://stockfishchess.org/"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS=""
 IUSE="armv7 cpu_flags_x86_avx2 cpu_flags_x86_popcnt cpu_flags_x86_sse debug
 	general-32 general-64 +optimize"
 


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

* [gentoo-commits] proj/betagarden:master commit in: games-board/stockfish/
@ 2015-02-07 16:02 Ben de Groot
  0 siblings, 0 replies; 4+ messages in thread
From: Ben de Groot @ 2015-02-07 16:02 UTC (permalink / raw
  To: gentoo-commits

commit:     ddc0f972505bf953a62e34021b940f0f96281591
Author:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
AuthorDate: Sat Feb  7 16:02:41 2015 +0000
Commit:     Ben de Groot <yngwin <AT> gentoo <DOT> org>
CommitDate: Sat Feb  7 16:02:41 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=ddc0f972

games-board/stockfish: Add unzip/zip dep

---
 games-board/stockfish/stockfish-9999.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/games-board/stockfish/stockfish-9999.ebuild b/games-board/stockfish/stockfish-9999.ebuild
index d8bf6c2..e139f39 100644
--- a/games-board/stockfish/stockfish-9999.ebuild
+++ b/games-board/stockfish/stockfish-9999.ebuild
@@ -22,7 +22,8 @@ SLOT="0"
 IUSE="armv7 cpu_flags_x86_avx2 cpu_flags_x86_popcnt cpu_flags_x86_sse debug
 	general-32 general-64 +optimize"
 
-DEPEND=""
+DEPEND="|| ( app-arch/unzip
+	app-arch/zip )"
 RDEPEND=""
 
 src_prepare() {


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

end of thread, other threads:[~2015-02-07 16:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-06 14:57 [gentoo-commits] proj/betagarden:master commit in: games-board/stockfish/ Ben de Groot
  -- strict thread matches above, loose matches on Subject: below --
2015-02-07 11:41 Ben de Groot
2015-02-07 11:46 Ben de Groot
2015-02-07 16:02 Ben de Groot

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