blob: 0fcd99365f52c5b5aaf9ffeda7cd8b2f7e7daf3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Copyright 2022-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit unpacker xdg
DESCRIPTION="Official Unity tool for managing Unity Engines and projects"
HOMEPAGE="https://unity.com"
SRC_URI="
amd64? (
https://hub.unity3d.com/linux/repos/deb/pool/main/u/unity/unityhub_amd64/${PN}-amd64-${PV}.deb
)
"
S="${WORKDIR}"
LICENSE="Unity-TOS"
SLOT="0"
KEYWORDS="-* ~amd64"
RESTRICT="bindist mirror strip test"
RDEPEND="
app-accessibility/at-spi2-core:2
app-alternatives/cpio
dev-libs/expat
dev-libs/glib:2
dev-libs/nspr
dev-libs/nss
|| (
dev-util/lttng-ust-compat:0/2.12
dev-util/lttng-ust:0/2.12
)
media-libs/alsa-lib
media-libs/mesa
net-print/cups
sys-apps/dbus
virtual/zlib
x11-libs/cairo
x11-libs/gtk+:3
x11-libs/libX11
x11-libs/libXcomposite
x11-libs/libXdamage
x11-libs/libXext
x11-libs/libXfixes
x11-libs/libXrandr
x11-libs/libdrm
x11-libs/libxcb
x11-libs/libxkbcommon
x11-libs/pango
"
QA_PREBUILT="*"
src_install() {
mv usr/share/doc/{"${PN}","${P}"} || die
mv ./* "${ED}/" || die
dodir usr/bin
dosym -r /opt/unityhub/unityhub /usr/bin/unityhub
docompress -x "/usr/share/doc/${P}/changelog.gz"
}
|