commit: 0b609ecc756824fc76576755337fc35d74bb5688 Author: Austin English <wizardedit <AT> gentoo <DOT> org> AuthorDate: Tue Oct 11 21:02:18 2016 +0000 Commit: Austin English <wizardedit <AT> gentoo <DOT> org> CommitDate: Tue Oct 11 22:55:47 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b609ecc
games-misc/c++robots: remove deprecated games eclass Also update to EAPI 6 Gentoo-Bug: https://bugs.gentoo.org/574082 Package-Manager: portage-2.3.0 games-misc/c++robots/c++robots-0-r1.ebuild | 31 ++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/games-misc/c++robots/c++robots-0-r1.ebuild b/games-misc/c++robots/c++robots-0-r1.ebuild new file mode 100644 index 00000000..d92a5a7 --- /dev/null +++ b/games-misc/c++robots/c++robots-0-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="ongoing 'King of the Hill' (KotH) tournament" +HOMEPAGE="http://www.gamerz.net/c++robots/" +SRC_URI="http://www.gamerz.net/c++robots/c++robots.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86 ~ppc" +IUSE="static" + +S=${WORKDIR}/${PN} + +PATCHES=( + "${FILESDIR}/proper-coding.patch" +) + +src_compile() { + local myldflags="${LDFLAGS}" + use static && myldflags="${myldflags} -static" + emake CFLAGS="${CFLAGS}" LDFLAGS="${myldflags}" +} + +src_install() { + dobin combat cylon target tracker + dodoc README +}
