diff options
author | 2020-09-01 03:47:02 +0100 | |
---|---|---|
committer | 2020-09-01 03:47:02 +0100 | |
commit | 9cadb6171cea99823ff9afcc46a105d838d1017c (patch) | |
tree | dc310dd22ef2802d7f2bfb1b8e7f873f26115fa5 /games-action/atanks/atanks-6.5.ebuild | |
parent | media-libs/allegro: bump to 5.2.6.0 (diff) | |
download | gentoo-9cadb6171cea99823ff9afcc46a105d838d1017c.tar.gz gentoo-9cadb6171cea99823ff9afcc46a105d838d1017c.tar.bz2 gentoo-9cadb6171cea99823ff9afcc46a105d838d1017c.zip |
games-action/atanks: bump to 6.5
Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'games-action/atanks/atanks-6.5.ebuild')
-rw-r--r-- | games-action/atanks/atanks-6.5.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/games-action/atanks/atanks-6.5.ebuild b/games-action/atanks/atanks-6.5.ebuild new file mode 100644 index 00000000000..1efffe797e7 --- /dev/null +++ b/games-action/atanks/atanks-6.5.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit desktop gnome2-utils toolchain-funcs + +DESCRIPTION="Worms and Scorched Earth-like game" +HOMEPAGE="https://atanks.sourceforge.io/" +SRC_URI="mirror://sourceforge/atanks/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="media-libs/allegro:0[X]" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}"/${PN}-6.4-fix-build-system.patch ) + +src_configure() { + tc-export CXX +} + +src_compile() { + emake INSTALLDIR="${EPREFIX}/usr/share/${PN}" +} + +src_install() { + dobin ${PN} + + local DOCS=( Changelog README TODO ) + einstalldocs + + insinto /usr/share/${PN} + doins -r button misc missile sound stock tank tankgun text title unicode.dat *.txt + + doicon -s 48 ${PN}.png + make_desktop_entry atanks "Atomic Tanks" +} |