Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: games-util/itch-bin/
Date: Sat, 29 Aug 2020 14:14:22
Message-Id: 1598637073.55b4038b6e71c9840f8eb0a1c6303345a7b916f0.andrewammerlaan@gentoo
1 commit: 55b4038b6e71c9840f8eb0a1c6303345a7b916f0
2 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
3 AuthorDate: Fri Aug 28 17:50:02 2020 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
5 CommitDate: Fri Aug 28 17:51:13 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=55b4038b
7
8 games-util/itch-bin: Version bump 25.4.1
9
10 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
11
12 games-util/itch-bin/Manifest | 1 +
13 games-util/itch-bin/itch-bin-25.4.1.ebuild | 53 ++++++++++++++++++++++++++++++
14 2 files changed, 54 insertions(+)
15
16 diff --git a/games-util/itch-bin/Manifest b/games-util/itch-bin/Manifest
17 index 7a0a6cf..f32ef70 100644
18 --- a/games-util/itch-bin/Manifest
19 +++ b/games-util/itch-bin/Manifest
20 @@ -1 +1,2 @@
21 DIST itch-bin-25.4.0.zip 62941242 BLAKE2B c50f996f98f9ce6e845c44d6c5b176e321f885b7db70569ab5bf526fcc4b21ed1b3428022400457fbdac5c6f387b27865d4768f99c94e60bb18897e68a75a5b2 SHA512 6a0e6fbfba94c162052594ea0442062262690c4ef42889056c42c752cf95b6cabf501c32660c2ba71935a1b1bc0fab946435488385f96c2cd3ab672c9109019d
22 +DIST itch-bin-25.4.1.zip 81376561 BLAKE2B 9235894252f811338c5ce535a31d52aaa5eeb2a3fc9684841401585e67e94adf135bc137d0b0551861c20039914f38b2f9881238be645ed7b23602229261ee01 SHA512 6c55b2716f64e8206ac6b885e2ec06eddd077dcf4aa9a8ebf17092a6e2c71ea40843cf0396f096264ba7408d559e33ce0e8b98215b299d1a89a749fc3ba7a11a
23
24 diff --git a/games-util/itch-bin/itch-bin-25.4.1.ebuild b/games-util/itch-bin/itch-bin-25.4.1.ebuild
25 new file mode 100644
26 index 0000000..3efc412
27 --- /dev/null
28 +++ b/games-util/itch-bin/itch-bin-25.4.1.ebuild
29 @@ -0,0 +1,53 @@
30 +# Copyright 2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit desktop xdg
36 +
37 +DESCRIPTION="itch.io game browser, installer and launcher"
38 +HOMEPAGE="https://itch.io/"
39 +SRC_URI="https://broth.itch.ovh/itch/linux-amd64/${PV}/archive/default -> ${P}.zip"
40 +
41 +KEYWORDS="~amd64"
42 +LICENSE="MIT"
43 +SLOT="0"
44 +
45 +BDEPEND="|| ( app-arch/zip app-arch/unzip )"
46 +RDEPEND="
47 + x11-libs/gtk+:3[X,cups]
48 + gnome-base/gconf
49 + dev-libs/nss
50 + media-libs/alsa-lib
51 + media-libs/freetype
52 + x11-libs/pixman
53 + media-libs/libpng:*
54 + dev-libs/libpcre
55 + net-dns/libidn2
56 + net-libs/gnutls
57 + dev-libs/libbsd
58 + sys-apps/util-linux
59 + media-gfx/graphite2
60 +"
61 +
62 +QA_PREBUILT="
63 + /opt/itch-bin/itch
64 + /opt/itch-bin/libffmpeg.so
65 + /opt/itch-bin/libnode.so
66 +"
67 +
68 +S="${WORKDIR}"
69 +
70 +src_install() {
71 + local destdir="${EPREFIX}/opt/${PN}"
72 + insinto "${destdir}"
73 + doins -r locales resources
74 + doins *.pak *.dat *.bin libffmpeg.so
75 +
76 + exeinto "${destdir}"
77 + doexe itch
78 + dosym "${destdir}/itch" /usr/bin/itch-bin
79 +
80 + doicon -s 512 "${FILESDIR}/itch-bin.png"
81 + make_desktop_entry itch-bin Itch itch-bin Network
82 +}