diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-06-20 14:45:01 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-06-20 14:45:01 +0100 |
commit | 34dea8e38f88007799629d0a56b12dec480b1d21 (patch) | |
tree | 6790873994b58030360328cf5897d934b3b03d16 /games-action/atanks | |
parent | 7932d472a02d4c016ff7dff4b7a5479ab9d1883d (diff) |
gentoo resync : 20.06.2021
Diffstat (limited to 'games-action/atanks')
-rw-r--r-- | games-action/atanks/Manifest | 2 | ||||
-rw-r--r-- | games-action/atanks/atanks-6.5.ebuild | 21 |
2 files changed, 11 insertions, 12 deletions
diff --git a/games-action/atanks/Manifest b/games-action/atanks/Manifest index 61bb8a82102a..b044e9d8066b 100644 --- a/games-action/atanks/Manifest +++ b/games-action/atanks/Manifest @@ -1,4 +1,4 @@ AUX atanks-6.4-fix-build-system.patch 579 BLAKE2B 002bbbbba9981e010669f5b85cccb48816d35f1dfde0a35ef9c6cb1634cc75686b531572fa0c2163f78d49e56f15375b4cc0810798adb56b91e51e877ca3b279 SHA512 86b046c37de4ff24f30dce799f32674d33930605c9da32a1c95e8438f6573e66f46455cbf371f66a1b4d8240c608dd338376be150bab59d4048bb46326f82daa DIST atanks-6.5.tar.gz 6059648 BLAKE2B 8a5c3e77391d0e7b3dc8170f49e2cd24fb31eda6f29362851d29eba5dc10748d2b95bfb688771fbbdaac4aada253f06c5ce4064e293335ef59cc8accc43a64a0 SHA512 cb1456e06132da754ae5d9926e118ecb8ac7789747f0a3273bcb49311d79824610bb9cfc74fbba8c75bbefe905d63ae2e01d193ccb37a64759f5490328c8cc89 -EBUILD atanks-6.5.ebuild 829 BLAKE2B 5d0d93be59c19384f2d6481f3567a6f28410ae5d856de96016636bf8426fc8891d5b031e96c58b545b6b4004bd0d273356779f0281fb359646a5c8cac5478ab6 SHA512 3e19aac15f24ce61b6eb615c5fd429a619e34e93411516d04cfc2e549e972e41e7ded1824d9193e42cb4919eb2402c69e80e02443d7b0f9dd28c80f45696c8b3 +EBUILD atanks-6.5.ebuild 769 BLAKE2B ae05f7af473380ea3fce2cdde1b0723bd7381843499951137168a795a92a801d0b19853e9eb56b7eef5e1610849ac75423d26aac0f890092c1fa6eef5ec5d25a SHA512 d0c9536e99e970be9f0bd99cac1f3fa3f620d6c06e823765b49f9f4567a670ca29cedbb6f0a91f827aa567fbb63b726ba7ae59000325097b57c73af2fe1b8a31 MISC metadata.xml 329 BLAKE2B 7a85aeb104fe2068285701ff8f771f7337a7b5f884b33e683206be3d66aca6e1fbfc611b312e71288ec842c28790bf025b979235677387d72070aa85f0bf0adc SHA512 1dc2914fc7dfe5c7f87ac565b6183b50d281fdf768e05cf211309699a264fde8a3e434ed07049b984e6f116256fec2124ed458ccfc70374ff35ff3189ec57917 diff --git a/games-action/atanks/atanks-6.5.ebuild b/games-action/atanks/atanks-6.5.ebuild index 1efffe797e76..0c043402a9a0 100644 --- a/games-action/atanks/atanks-6.5.ebuild +++ b/games-action/atanks/atanks-6.5.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit desktop gnome2-utils toolchain-funcs +inherit desktop toolchain-funcs DESCRIPTION="Worms and Scorched Earth-like game" HOMEPAGE="https://atanks.sourceforge.io/" @@ -13,28 +13,27 @@ LICENSE="GPL-2+" SLOT="0" KEYWORDS="~amd64 ~x86" -DEPEND="media-libs/allegro:0[X]" -RDEPEND="${DEPEND}" +RDEPEND="media-libs/allegro:0[X]" +DEPEND="${RDEPEND}" -PATCHES=( "${FILESDIR}"/${PN}-6.4-fix-build-system.patch ) +PATCHES=( + "${FILESDIR}"/${PN}-6.4-fix-build-system.patch +) -src_configure() { +src_compile() { tc-export CXX -} -src_compile() { emake INSTALLDIR="${EPREFIX}/usr/share/${PN}" } src_install() { dobin ${PN} - local DOCS=( Changelog README TODO ) - einstalldocs + dodoc Changelog README TODO insinto /usr/share/${PN} doins -r button misc missile sound stock tank tankgun text title unicode.dat *.txt - doicon -s 48 ${PN}.png + doicon ${PN}.png make_desktop_entry atanks "Atomic Tanks" } |