blob: feabf8768935d236b98f014cb21760954083bb4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
inherit games
DESCRIPTION="Direct access to Xiangqi mode of xboard"
HOMEPAGE=""
SRC_URI=""
LICENSE="CC0-1.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="
>=games-board/xboard-4.8
games-board/hoichess
games-board/fairymax
"
S="${WORKDIR}"
src_install() {
dosym xqboard.png "${GAMES_DATADIR}"/xboard/themes/textures/xqboard-9x10.png
newgamesbin "${FILESDIR}"/xboard-xiangqi-0 xboard-xiangqi
}
|