diff options
author | Ulrich Müller <ulm@gentoo.org> | 2015-09-30 22:36:48 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2015-09-30 22:47:04 +0200 |
commit | 8055f638192911f7349f2ddbdf1c7680b4c8496f (patch) | |
tree | 12878a028b8ff5d106cdefac36e81df463d20b2f /games-board | |
parent | dev-libs/jsoncpp: Bump to 1.6.5 (diff) | |
download | gentoo-8055f638192911f7349f2ddbdf1c7680b4c8496f.tar.gz gentoo-8055f638192911f7349f2ddbdf1c7680b4c8496f.tar.bz2 gentoo-8055f638192911f7349f2ddbdf1c7680b4c8496f.zip |
games-board/polyglot: Initial import.
Ebuild contributed by me.
Package-Manager: portage-2.2.22
Diffstat (limited to 'games-board')
-rw-r--r-- | games-board/polyglot/Manifest | 1 | ||||
-rw-r--r-- | games-board/polyglot/metadata.xml | 13 | ||||
-rw-r--r-- | games-board/polyglot/polyglot-1.4.70b.ebuild | 22 |
3 files changed, 36 insertions, 0 deletions
diff --git a/games-board/polyglot/Manifest b/games-board/polyglot/Manifest new file mode 100644 index 000000000000..02d0ec9b0dbe --- /dev/null +++ b/games-board/polyglot/Manifest @@ -0,0 +1 @@ +DIST polyglot-1.4.70b.tar.gz 269938 SHA256 cc10554390cb67c73395470505805f673a639fd3283acd02471f7a67dc9bedef SHA512 23ffa735b44ebbdaa991d96ac7d09e368f99640265bea3a30e0623665a8a9567f7c5c3e9518e06348a9b34ef70b43de2000b85f4e6101f4d8f866ae9cac9abec WHIRLPOOL f57135c0ef2e39662ac914022d2c3f0425ea27d722a2bb299bb341d319e21a67cae36e997541bbf2820705413fbcc6161f2c796926f8436cfd8390f5c60cc4a2 diff --git a/games-board/polyglot/metadata.xml b/games-board/polyglot/metadata.xml new file mode 100644 index 000000000000..a864094595f9 --- /dev/null +++ b/games-board/polyglot/metadata.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer> + <email>ulm@gentoo.org</email> +</maintainer> +<longdescription> + PolyGlot is a "UCI adapter". It connects a GUI interface (such + as XBoard, Winboard, Arena or Chessbase) to a UCI chess engine. + By specifying an opening book (in PolyGlot book format) chess + engines can transparently use such books. +</longdescription> +</pkgmetadata> diff --git a/games-board/polyglot/polyglot-1.4.70b.ebuild b/games-board/polyglot/polyglot-1.4.70b.ebuild new file mode 100644 index 000000000000..a43fd6e017d0 --- /dev/null +++ b/games-board/polyglot/polyglot-1.4.70b.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +DESCRIPTION="Protocol adapter to run UCI chess engines under xboard" +HOMEPAGE="http://hardy.uhasselt.be/Toga/" +# not entirely clear what the "b" in the version stands for +SRC_URI="http://hardy.uhasselt.be/Toga/polyglot-release/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DOCS="AUTHORS ChangeLog TODO" # README* installed by build system + +src_configure() { + econf \ + --bindir="/usr/games/bin" \ + --docdir="/usr/share/doc/${PF}" +} |