Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-board/polyglot/
Date: Wed, 30 Sep 2015 20:48:44
Message-Id: 1443646024.8055f638192911f7349f2ddbdf1c7680b4c8496f.ulm@gentoo
1 commit: 8055f638192911f7349f2ddbdf1c7680b4c8496f
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 30 20:36:48 2015 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 30 20:47:04 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8055f638
7
8 games-board/polyglot: Initial import.
9
10 Ebuild contributed by me.
11
12 Package-Manager: portage-2.2.22
13
14 games-board/polyglot/Manifest | 1 +
15 games-board/polyglot/metadata.xml | 13 +++++++++++++
16 games-board/polyglot/polyglot-1.4.70b.ebuild | 22 ++++++++++++++++++++++
17 3 files changed, 36 insertions(+)
18
19 diff --git a/games-board/polyglot/Manifest b/games-board/polyglot/Manifest
20 new file mode 100644
21 index 0000000..02d0ec9
22 --- /dev/null
23 +++ b/games-board/polyglot/Manifest
24 @@ -0,0 +1 @@
25 +DIST polyglot-1.4.70b.tar.gz 269938 SHA256 cc10554390cb67c73395470505805f673a639fd3283acd02471f7a67dc9bedef SHA512 23ffa735b44ebbdaa991d96ac7d09e368f99640265bea3a30e0623665a8a9567f7c5c3e9518e06348a9b34ef70b43de2000b85f4e6101f4d8f866ae9cac9abec WHIRLPOOL f57135c0ef2e39662ac914022d2c3f0425ea27d722a2bb299bb341d319e21a67cae36e997541bbf2820705413fbcc6161f2c796926f8436cfd8390f5c60cc4a2
26
27 diff --git a/games-board/polyglot/metadata.xml b/games-board/polyglot/metadata.xml
28 new file mode 100644
29 index 0000000..a864094
30 --- /dev/null
31 +++ b/games-board/polyglot/metadata.xml
32 @@ -0,0 +1,13 @@
33 +<?xml version="1.0" encoding="UTF-8"?>
34 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
35 +<pkgmetadata>
36 +<maintainer>
37 + <email>ulm@g.o</email>
38 +</maintainer>
39 +<longdescription>
40 + PolyGlot is a "UCI adapter". It connects a GUI interface (such
41 + as XBoard, Winboard, Arena or Chessbase) to a UCI chess engine.
42 + By specifying an opening book (in PolyGlot book format) chess
43 + engines can transparently use such books.
44 +</longdescription>
45 +</pkgmetadata>
46
47 diff --git a/games-board/polyglot/polyglot-1.4.70b.ebuild b/games-board/polyglot/polyglot-1.4.70b.ebuild
48 new file mode 100644
49 index 0000000..a43fd6e
50 --- /dev/null
51 +++ b/games-board/polyglot/polyglot-1.4.70b.ebuild
52 @@ -0,0 +1,22 @@
53 +# Copyright 1999-2015 Gentoo Foundation
54 +# Distributed under the terms of the GNU General Public License v2
55 +# $Id$
56 +
57 +EAPI=5
58 +
59 +DESCRIPTION="Protocol adapter to run UCI chess engines under xboard"
60 +HOMEPAGE="http://hardy.uhasselt.be/Toga/"
61 +# not entirely clear what the "b" in the version stands for
62 +SRC_URI="http://hardy.uhasselt.be/Toga/polyglot-release/${P}.tar.gz"
63 +
64 +LICENSE="GPL-2+"
65 +SLOT="0"
66 +KEYWORDS="~amd64 ~x86"
67 +
68 +DOCS="AUTHORS ChangeLog TODO" # README* installed by build system
69 +
70 +src_configure() {
71 + econf \
72 + --bindir="/usr/games/bin" \
73 + --docdir="/usr/share/doc/${PF}"
74 +}