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: Sun, 16 May 2021 09:24:48
Message-Id: 1621111912.a062bbad0eb5fd1950fb7a5f0c550b1528751626.andrewammerlaan@gentoo
1 commit: a062bbad0eb5fd1950fb7a5f0c550b1528751626
2 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
3 AuthorDate: Sat May 15 20:51:52 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
5 CommitDate: Sat May 15 20:51:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a062bbad
7
8 games-util/itch-bin: Remove old ebuild.
9
10 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
11
12 games-util/itch-bin/itch-bin-25.5.1.ebuild | 57 ------------------------------
13 1 file changed, 57 deletions(-)
14
15 diff --git a/games-util/itch-bin/itch-bin-25.5.1.ebuild b/games-util/itch-bin/itch-bin-25.5.1.ebuild
16 deleted file mode 100644
17 index 51f7a05e2..000000000
18 --- a/games-util/itch-bin/itch-bin-25.5.1.ebuild
19 +++ /dev/null
20 @@ -1,57 +0,0 @@
21 -# Copyright 2020-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -inherit desktop xdg
27 -
28 -DESCRIPTION="itch.io game browser, installer and launcher"
29 -HOMEPAGE="https://itch.io/"
30 -SRC_URI="https://broth.itch.ovh/itch/linux-amd64/${PV}/archive/default -> ${P}.zip"
31 -
32 -KEYWORDS="~amd64"
33 -LICENSE="MIT"
34 -SLOT="0"
35 -
36 -BDEPEND="app-arch/unzip"
37 -RDEPEND="
38 - x11-libs/gtk+:3[X,cups]
39 - x11-libs/libXtst
40 - gnome-base/gconf
41 - dev-libs/nss
42 - media-libs/alsa-lib
43 - media-libs/freetype
44 - x11-libs/pixman
45 - media-libs/libpng:*
46 - dev-libs/libpcre
47 - net-dns/libidn2
48 - net-libs/gnutls
49 - dev-libs/libbsd
50 - sys-apps/util-linux
51 - media-gfx/graphite2
52 - media-libs/vulkan-loader
53 - media-video/ffmpeg[chromium]
54 -"
55 -
56 -QA_PREBUILT="
57 - /opt/itch-bin/itch
58 - /opt/itch-bin/libvk_swiftshader.so
59 -"
60 -
61 -S="${WORKDIR}"
62 -
63 -src_install() {
64 - local destdir="${EPREFIX}/opt/${PN}"
65 - insinto "${destdir}"
66 - doins -r locales resources
67 - doins *.pak *.dat *.bin *.json version libvk_swiftshader.so
68 -
69 - exeinto "${destdir}"
70 - doexe itch
71 - dosym "${destdir}/itch" /usr/bin/itch-bin
72 -
73 - newicon -s 256 "resources/app/src/static/images/tray/itch.png" "${PN}.png"
74 - newicon -s 128 "resources/app/src/static/images/window/itch/icon.png" "${PN}.png"
75 -
76 - make_desktop_entry itch-bin Itch itch-bin "Network;Game"
77 -}