summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2018-04-29 10:08:13 +0200
committerPacho Ramos <pacho@gentoo.org>2018-04-29 13:24:51 +0200
commit082b37dedbc00e0ed72012909b814d5c28d27dbc (patch)
treeb8bd49d0e182bb8f121abd798e112317777b9ddc /games-board
parentgames-board/phalanx: Stop using games.eclass (diff)
downloadgentoo-082b37dedbc00e0ed72012909b814d5c28d27dbc.tar.gz
gentoo-082b37dedbc00e0ed72012909b814d5c28d27dbc.tar.bz2
gentoo-082b37dedbc00e0ed72012909b814d5c28d27dbc.zip
games-board/phalanx: Drop old
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'games-board')
-rw-r--r--games-board/phalanx/phalanx-22.ebuild42
1 files changed, 0 insertions, 42 deletions
diff --git a/games-board/phalanx/phalanx-22.ebuild b/games-board/phalanx/phalanx-22.ebuild
deleted file mode 100644
index 8d2354125e88..000000000000
--- a/games-board/phalanx/phalanx-22.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit toolchain-funcs games
-
-MY_PN="Phalanx"
-MY_PV="XXII"
-MY_P=${MY_PN}-${MY_PV}
-
-DESCRIPTION="A chess engine suitable for beginner and intermediate players"
-HOMEPAGE="http://phalanx.sourceforge.net/"
-SRC_URI="mirror://sourceforge/phalanx/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-S=${WORKDIR}/${MY_P}
-
-src_compile() {
- # configure is not used in the project; confs are in Makefile,
- # and here we override them:
- local define="-DGNUFUN" myvar
- for myvar in "PBOOK" "SBOOK" "LEARN" ; do
- define="${define} -D${myvar}_DIR=\"\\\"${GAMES_DATADIR}/${PN}\\\"\""
- done
- emake \
- DEFINES="${define}" \
- CC="$(tc-getCC)" \
- CFLAGS="${CFLAGS}" \
- LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
- dogamesbin phalanx
- insinto "${GAMES_DATADIR}"/${PN}
- doins pbook.phalanx sbook.phalanx learn.phalanx
- dodoc HISTORY README
- prepgamesdirs
-}