diff options
Diffstat (limited to 'games-board/eleeye/eleeye-3.3.9999.ebuild')
-rw-r--r-- | games-board/eleeye/eleeye-3.3.9999.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/games-board/eleeye/eleeye-3.3.9999.ebuild b/games-board/eleeye/eleeye-3.3.9999.ebuild new file mode 100644 index 0000000..3babbfa --- /dev/null +++ b/games-board/eleeye/eleeye-3.3.9999.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="5" + +inherit subversion games + +DESCRIPTION="Chinese chess engine (UCCI protocol)" +HOMEPAGE="https://sourceforge.net/projects/xqwizard/" +ESVN_REPO_URI="svn://svn.code.sf.net/p/xqwizard/code/ELEEYE" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="" +IUSE="" + +DEPEND="" +RDEPEND="" + +S="${WORKDIR}" + +src_unpack() { + subversion_src_unpack +} + +src_prepare() { + subversion_src_prepare + cp "${FILESDIR}"/${P}-makefile ${PN}/Makefile || die +} + +src_compile() { + emake -C ${PN} || die +} + +src_install() { + dogamesbin ${PN}/${PN} || die +} |