diff options
Diffstat (limited to 'games-action/koth/koth-0.8.0-r1.ebuild')
-rw-r--r-- | games-action/koth/koth-0.8.0-r1.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/games-action/koth/koth-0.8.0-r1.ebuild b/games-action/koth/koth-0.8.0-r1.ebuild new file mode 100644 index 000000000000..1ecd25a1838d --- /dev/null +++ b/games-action/koth/koth-0.8.0-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit eutils flag-o-matic + +DESCRIPTION="Multiplayer, networked game of little tanks with really big weapons" +HOMEPAGE="http://www.nongnu.org/koth/" +SRC_URI="https://savannah.nongnu.org/download/${PN}/default.pkg/${PV}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~x86 ~x86-fbsd" +IUSE="" + +DEPEND="media-libs/libggi" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}"/${PF}-gcc-3.4.patch +) + +src_prepare() { + default + sed -i 's:-g -O2::' configure || die + sed -i 's:(uint16):(uint16_t):' src/gfx.c src/gfx.h || die + append-cflags -std=gnu89 # build with gcc5 (bug #570730) +} + +src_install() { + DOCS="AUTHORS ChangeLog NEWS README doc/*.txt" \ + default + dodir /etc/koth + insinto /etc/koth + doins src/koth.cfg +} |