diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2015-01-01 19:12:58 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2015-01-01 19:12:58 +0000 |
commit | 0529b9f1e52109428051f8a7aff4e8d78d5b643d (patch) | |
tree | 35c900318a28f300fdb23635f31d44873d5f4312 /games-action/koth | |
parent | Automated version bump to 3.2.66 - remove old. (diff) | |
download | gentoo-2-0529b9f1e52109428051f8a7aff4e8d78d5b643d.tar.gz gentoo-2-0529b9f1e52109428051f8a7aff4e8d78d5b643d.tar.bz2 gentoo-2-0529b9f1e52109428051f8a7aff4e8d78d5b643d.zip |
EAPI 4
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0145142D)
Diffstat (limited to 'games-action/koth')
-rw-r--r-- | games-action/koth/ChangeLog | 7 | ||||
-rw-r--r-- | games-action/koth/koth-0.8.0.ebuild | 18 |
2 files changed, 14 insertions, 11 deletions
diff --git a/games-action/koth/ChangeLog b/games-action/koth/ChangeLog index 0318f25dae09..98ca348b8857 100644 --- a/games-action/koth/ChangeLog +++ b/games-action/koth/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-action/koth -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/koth/ChangeLog,v 1.17 2013/04/22 16:07:17 mr_bones_ Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/koth/ChangeLog,v 1.18 2015/01/01 19:12:58 tupone Exp $ + + 01 Jan 2015; Tupone Alfredo <tupone@gentoo.org> koth-0.8.0.ebuild: + EAPI 4 22 Apr 2013; Michael Sterrett <mr_bones_@gentoo.org> koth-0.8.0.ebuild, metadata.xml: diff --git a/games-action/koth/koth-0.8.0.ebuild b/games-action/koth/koth-0.8.0.ebuild index 9f95c6d49002..ad0e4ccc4fdf 100644 --- a/games-action/koth/koth-0.8.0.ebuild +++ b/games-action/koth/koth-0.8.0.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/koth/koth-0.8.0.ebuild,v 1.18 2013/04/22 16:07:17 mr_bones_ Exp $ - +# $Header: /var/cvsroot/gentoo-x86/games-action/koth/koth-0.8.0.ebuild,v 1.19 2015/01/01 19:12:58 tupone Exp $ +EAPI=4 inherit eutils games DESCRIPTION="Multiplayer, networked game of little tanks with really big weapons" @@ -14,10 +14,9 @@ KEYWORDS="alpha amd64 ppc x86 ~x86-fbsd" IUSE="" DEPEND="media-libs/libggi" +RDEPEND="${DEPEND}" -src_unpack() { - unpack ${A} - cd "${S}" +src_prepare() { sed -i 's:-g -O2::' configure \ || die "sed configure failed" cd src @@ -28,10 +27,11 @@ src_unpack() { || die "sed gfx.c gfx.h failed" } +DOCS="AUTHORS ChangeLog NEWS README doc/*.txt" + src_install() { - emake DESTDIR="${D}" install || die "emake install failed" + default insinto "${GAMES_SYSCONFDIR}" - doins src/koth.cfg || die "doins failed" - dodoc AUTHORS ChangeLog NEWS README doc/*.txt + doins src/koth.cfg prepgamesdirs } |