summaryrefslogtreecommitdiff
path: root/games-board
diff options
context:
space:
mode:
authorMarcin Deranek <gringo@slonko.net>2015-10-01 20:50:37 +0200
committerMarcin Deranek <gringo@slonko.net>2015-10-01 20:50:37 +0200
commitc683e105a633f677d68defebfb041cce9226549e (patch)
tree226571bd7bd7818beaaaea2134ded363645bfac5 /games-board
parentbe818153f130a5e7fea6505247e4480bf9cad79c (diff)
downloadportage-c683e105a633f677d68defebfb041cce9226549e.tar.gz
portage-c683e105a633f677d68defebfb041cce9226549e.tar.bz2
portage-c683e105a633f677d68defebfb041cce9226549e.zip
Already in portage
Diffstat (limited to 'games-board')
-rw-r--r--games-board/polyglot/Manifest2
-rw-r--r--games-board/polyglot/polyglot-1.4.ebuild49
2 files changed, 0 insertions, 51 deletions
diff --git a/games-board/polyglot/Manifest b/games-board/polyglot/Manifest
deleted file mode 100644
index 2684086..0000000
--- a/games-board/polyglot/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST polyglot_14.zip 229546 SHA256 850af826217023c74e00a3e4333d3693c086ca25e7f34e5cebaebd5597d6697a SHA512 0f7f010d33dd1daf2fd1280b14e50d3204354aefd68939d2d614e93f1f96ab7347032ba3188057041f1aceaafbf47e999c6dd5fe441ae6a913dacb2614f2b6f0 WHIRLPOOL 2f7ba228fd0a05bdeb07d38ac63c8e9fd57a19578431e48bad55d0c5d7cf2f2884a21284cdf1631a011a085d53e2be5fdce7caf4445c736b1e43b198b6b09559
-EBUILD polyglot-1.4.ebuild 989 SHA256 65bbb16f5a4e2c65e38e540ae7e89eede375357c8c490ead71a61fc25383d65e SHA512 cf1b4c0213c35a675856720f2dd4c9d32a1255d0e0b049b0b8cdc5f883575ebcb9dba671715b7775e6ce36073e1dabdcf2e408096248d573feb029b52575a469 WHIRLPOOL 853d589b95cdcc21ed3d746791e272bee77f8fc5c9ba02cd90b1ae987fd7a27f012c3fd4700ce9fb955181750f4f3a1975d50f71c862a720f817950a126f0a6c
diff --git a/games-board/polyglot/polyglot-1.4.ebuild b/games-board/polyglot/polyglot-1.4.ebuild
deleted file mode 100644
index d83d1f5..0000000
--- a/games-board/polyglot/polyglot-1.4.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-inherit games
-
-MY_P="${PN}_${PV/./}"
-
-DESCRIPTION="UCI adapter to connect a UCI chess engine to an xboard interface"
-HOMEPAGE="http://wbec-ridderkerk.nl/html/details1/PolyGlot.html"
-SRC_URI="http://wbec-ridderkerk.nl/html/downloada/fruit/${MY_P}.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="examples"
-
-DEPEND="app-arch/unzip"
-RDEPEND=""
-
-S="${WORKDIR}/${MY_P}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # Respect {CXX,LD}FLAGS, don't strip
- sed -i \
- -e "s:\(CXX\|LD\)FLAGS \+=:\1FLAGS +=:" \
- -e "/LDFLAGS.*-s/d" \
- src/Makefile || die "sed in Makefile failed"
-}
-
-src_compile() {
- cd src
- emake || die "emake failed"
-}
-
-src_install() {
- dogamesbin src/${PN} || die "dobin failed"
- dodoc readme.txt || die "dodoc failed"
-
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins -r "${WORKDIR}"/example/* || die "doins failed"
- fi
-}