diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2021-04-28 20:21:43 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2021-04-28 20:21:43 +0100 |
commit | 40aaaa64e86ba6710bbeb31c4615a6ce80e75e11 (patch) | |
tree | 758c221bad35c9288d0bd6df9c7dfc226728e52c /games-misc/papers-please | |
parent | 8d5dbd847cbc704a6a06405856e94b461011afe3 (diff) |
gentoo resync : 28.04.2021
Diffstat (limited to 'games-misc/papers-please')
-rw-r--r-- | games-misc/papers-please/Manifest | 2 | ||||
-rw-r--r-- | games-misc/papers-please/papers-please-1.1.65.ebuild | 24 |
2 files changed, 12 insertions, 14 deletions
diff --git a/games-misc/papers-please/Manifest b/games-misc/papers-please/Manifest index 269b9c9fcf43..7104be1c7304 100644 --- a/games-misc/papers-please/Manifest +++ b/games-misc/papers-please/Manifest @@ -1,3 +1,3 @@ DIST papers-please_1.1.65_i386.tar.gz 31566799 BLAKE2B 1e7aee7839f5e014d5eba60b5c77381a79c7532610e6daee1a36b22484a59b07e8e6b7bce3fc28720472268b78857894744ef6750dcee37e637003b2bc14a502 SHA512 093990a61c1b61d2999e6484335f4deddfecd3d66b7a5e29555c3170e890f6049f7d42a83529dcd993439de940b5dc96b8485d30ab46995d0f6814d5282669e0 -EBUILD papers-please-1.1.65.ebuild 1410 BLAKE2B 69aba3323d8bbbf309b8b515c9da06bff8f57bd68d70f434d13b0c7487b18a3ff7f9bf0fd6ce3436206d371c3b5181a41e782eeed1904119aefc603b786d08ac SHA512 04d696d06b6dfbab4add2a895f45b044a86ac63403ee33fac4fdaad18bbb6a5092f76e9208edd4eebec9aa5ba5cf8a9492436d91cd3916a5cc273979d89d46e1 +EBUILD papers-please-1.1.65.ebuild 1357 BLAKE2B 288fa22002168098ca42928a22aee1775c3be439fbdff7d40af89622d2c704dbbd0bcd208719e6b1fb2b7375161a368ddbdff9748661081200cd5daa3c60f06d SHA512 3095299955d2b7b8bd4fea14c9f4d1842992af5dc1faeb880d70a7c8e77019b170f9396085dd5b983761605bd5503a706f9e9ed6b661679669d55a8e091f2a77 MISC metadata.xml 253 BLAKE2B 443ca9c8d4f6801169382e87a0ecd1385c56e65229209e7200f9d313ef380e92ae8d7dc3c38e5989a4166289f22607a20b1e13bb960fff6b3d9f78629d8ab020 SHA512 61c4689cbc649d84a00be211b7b5b98dd03e1d3f813eff370df549f2998cd4343f391c18b57cf20e4a8f4dd2311e3bfa04eb60f356f2bbac78f0b68f5091f254 diff --git a/games-misc/papers-please/papers-please-1.1.65.ebuild b/games-misc/papers-please/papers-please-1.1.65.ebuild index db15ecb72c8b..ec28d2a4a6d6 100644 --- a/games-misc/papers-please/papers-please-1.1.65.ebuild +++ b/games-misc/papers-please/papers-please-1.1.65.ebuild @@ -1,21 +1,21 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -inherit eutils games +inherit desktop wrapper DESCRIPTION="A Dystopian Document Thriller" HOMEPAGE="http://papersplea.se" SRC_URI="papers-please_${PV}_i386.tar.gz" +S="${WORKDIR}"/${PN} LICENSE="PAPERS-PLEASE" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" RESTRICT="fetch bindist" -QA_PREBUILT="${GAMES_PREFIX_OPT#/}/${PN}/*" +QA_PREBUILT="opt/${PN}/*" RDEPEND=" amd64? ( @@ -39,8 +39,6 @@ RDEPEND=" virtual/opengl )" -S=${WORKDIR}/${PN} - pkg_nofetch() { einfo einfo "Please buy & download ${SRC_URI} from:" @@ -50,21 +48,21 @@ pkg_nofetch() { } src_prepare() { + default + rm -v launch.sh LICENSE || die mv README "${T}"/README || die } src_install() { - local dir=${GAMES_PREFIX_OPT}/${PN} + local dir=/opt/${PN} - insinto "${dir}" + insinto ${dir} doins -r * - fperms +x "${dir}"/PapersPlease + fperms +x ${dir}/PapersPlease - games_make_wrapper ${PN} "./PapersPlease" "${dir}" "${dir}" + make_wrapper ${PN} "./PapersPlease" "${dir}" "${dir}" make_desktop_entry ${PN} "Papers, Please" dodoc "${T}"/README - - prepgamesdirs } |