Diff novnc-1.2.0 with a novnc-9999
/usr/portage/www-apps/novnc/novnc-9999.ebuild 2024-07-02 13:51:49.457851596 +0300 | ||
---|---|---|
1 |
# Copyright 1999-2023 Gentoo Authors |
|
1 |
# Copyright 1999-2024 Gentoo Authors |
|
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 |
EAPI=7 |
|
4 |
EAPI=8 |
|
5 | 5 | |
6 |
DISTUTILS_USE_SETUPTOOLS=no |
|
7 |
PYTHON_COMPAT=( python3_{9..11} ) |
|
6 |
DISTUTILS_USE_PEP517=no |
|
7 |
PYTHON_COMPAT=( python3_{9..12} ) |
|
8 | 8 |
inherit distutils-r1 |
9 | 9 | |
10 | 10 |
DESCRIPTION="noVNC is a VNC client implemented using HTML5 technologies" |
11 |
HOMEPAGE="https://github.com/novnc/noVNC" |
|
11 |
HOMEPAGE="https://novnc.com/info.html" |
|
12 | 12 | |
13 | 13 |
if [[ ${PV} == *9999 ]] ; then |
14 | 14 |
inherit git-r3 |
15 |
EGIT_REPO_URI="https://github.com/kanaka/noVNC.git" |
|
15 |
EGIT_REPO_URI="https://github.com/novnc/noVNC" |
|
16 | 16 |
else |
17 |
SRC_URI="https://github.com/kanaka/noVNC/archive/v${PV}.tar.gz -> ${P}.tar.gz" |
|
18 |
KEYWORDS="amd64 ~arm64 ~riscv x86 ~amd64-linux ~x86-linux" |
|
17 |
SRC_URI="https://github.com/novnc/noVNC/archive/v${PV}.tar.gz -> ${P}.tar.gz" |
|
18 |
KEYWORDS="~amd64 ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux" |
|
19 | 19 |
S="${WORKDIR}/noVNC-${PV}" |
20 | 20 |
fi |
21 | 21 | |
... | ... | |
41 | 41 |
insinto /usr/share/novnc |
42 | 42 |
doins -r vnc.html vnc_lite.html app/ core/ vendor/ |
43 | 43 |
dosym vnc_lite.html /usr/share/novnc/vnc_auto.html # for compat |
44 |
dosym ../share/novnc/utils/launch.sh /usr/bin/novnc |
|
44 |
dosym ../share/novnc/utils/novnc_proxy /usr/bin/novnc |
|
45 | 45 |
} |