mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-19 07:49:00 -04:00
Manually went through some entries for `pkgcheck scan -c VariableOrderCheck`. Signed-off-by: Lucio Sauer <watermanpaint@posteo.net>
83 lines
2.1 KiB
Bash
83 lines
2.1 KiB
Bash
# Copyright 2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit unpacker xdg
|
|
|
|
DESCRIPTION="Kopia - Fast And Secure Open-Source Backup (Electron UI)"
|
|
HOMEPAGE="https://github.com/kopia/kopia"
|
|
|
|
SRC_URI="
|
|
amd64? ( https://github.com/kopia/kopia/releases/download/v${PV}/kopia-ui_${PV}_amd64.deb -> ${P}-amd64.deb )
|
|
arm? ( https://github.com/kopia/kopia/releases/download/v${PV}/kopia-ui_${PV}_armv7l.deb -> ${P}-arm.deb )
|
|
arm64? ( https://github.com/kopia/kopia/releases/download/v${PV}/kopia-ui_${PV}_arm64.deb -> ${P}-arm64.deb )
|
|
"
|
|
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="-* ~amd64 ~arm ~arm64"
|
|
IUSE="+system-kopia"
|
|
|
|
# binary package; no tests available
|
|
RESTRICT="test"
|
|
|
|
RDEPEND="
|
|
system-kopia? ( ~app-backup/kopia-${PV} )
|
|
app-accessibility/at-spi2-core
|
|
dev-libs/expat
|
|
dev-libs/glib
|
|
dev-libs/nspr
|
|
dev-libs/nss
|
|
media-libs/alsa-lib
|
|
media-libs/mesa
|
|
net-print/cups
|
|
sys-apps/dbus
|
|
x11-libs/cairo
|
|
x11-libs/gtk+:3
|
|
x11-libs/libdrm
|
|
x11-libs/libX11
|
|
x11-libs/libxcb
|
|
x11-libs/libXcomposite
|
|
x11-libs/libXdamage
|
|
x11-libs/libXext
|
|
x11-libs/libXfixes
|
|
x11-libs/libxkbcommon
|
|
x11-libs/libXrandr
|
|
x11-libs/pango
|
|
"
|
|
|
|
QA_PREBUILT="opt/KopiaUI/*"
|
|
|
|
src_install() {
|
|
mv "${S}"/* "${ED}" || die
|
|
mkdir -p "${ED}/usr/bin/" || die
|
|
ln -sf "${EPREFIX}/opt/KopiaUI/kopia-ui" "${ED}/usr/bin/kopia-ui" || die
|
|
|
|
if use system-kopia; then
|
|
rm -f "${ED}/opt/KopiaUI/resources/server/kopia" || die
|
|
ln -sf "${EPREFIX}/usr/bin/kopia" "${ED}/opt/KopiaUI/resources/server/kopia" || die
|
|
fi
|
|
|
|
# It installs /usr/share/doc/kopia-ui/changelog.bz2. This fails QA for two
|
|
# reasons:
|
|
# 1. Gentoo expects /usr/share/doc/${P}. I can perform an mv to fix this.
|
|
# 2. /usr/share/doc is subject to automatic compression, so portage
|
|
# expects files installed to not be compressed. I could perform a
|
|
# decompression on the cangelog but IMO changelog isn't important
|
|
# enough to add this workaround.
|
|
rm -rf "${ED}/usr/share/doc/kopia-ui" || die
|
|
}
|
|
|
|
pkg_postinst() {
|
|
xdg_icon_cache_update
|
|
xdg_desktop_database_update
|
|
}
|
|
|
|
pkg_postrm() {
|
|
xdg_icon_cache_update
|
|
xdg_desktop_database_update
|
|
}
|