mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Theo Anderson <telans@posteo.de>
79 lines
1.7 KiB
Bash
79 lines
1.7 KiB
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
MY_PN="${PN/-bin/}"
|
|
|
|
inherit desktop pax-utils unpacker xdg
|
|
|
|
DESCRIPTION="HTTP and GraphQL client for developers"
|
|
HOMEPAGE="https://insomnia.rest"
|
|
SRC_URI="https://github.com/Kong/${MY_PN}/releases/download/core@${PV}/Insomnia.Core-${PV}.deb"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="ayatana"
|
|
|
|
RDEPEND="
|
|
app-accessibility/at-spi2-atk:2
|
|
dev-libs/atk:0
|
|
dev-libs/expat:0
|
|
dev-libs/glib:2
|
|
dev-libs/nspr:0
|
|
dev-libs/nss:0
|
|
media-libs/alsa-lib:0
|
|
media-libs/fontconfig:1.0
|
|
net-print/cups:0
|
|
sys-apps/dbus:0
|
|
x11-libs/cairo:0
|
|
x11-libs/gdk-pixbuf:2
|
|
x11-libs/gtk+:3
|
|
x11-libs/libX11:0
|
|
x11-libs/libxcb:0
|
|
x11-libs/libXcomposite:0
|
|
x11-libs/libXcursor:0
|
|
x11-libs/libXdamage:0
|
|
x11-libs/libXext:0
|
|
x11-libs/libXfixes:0
|
|
x11-libs/libXi:0
|
|
x11-libs/libXrandr:0
|
|
x11-libs/libXrender:0
|
|
x11-libs/libXScrnSaver:0
|
|
x11-libs/libXtst:0
|
|
x11-libs/pango:0
|
|
ayatana? ( dev-libs/libappindicator:3 )
|
|
"
|
|
|
|
QA_PREBUILT="*"
|
|
|
|
S="${WORKDIR}"
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
if use ayatana ; then
|
|
sed -i '/Exec/s|=|=env XDG_CURRENT_DESKTOP=Unity |' \
|
|
usr/share/applications/insomnia.desktop \
|
|
|| die "sed failed for insomnia.desktop"
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
for size in 16x16 32x32 48x48 128x128 256x256 512x512 ; do
|
|
doicon -s "${size}" usr/share/icons/hicolor/"${size}"/apps/insomnia.png
|
|
done
|
|
dosym ../icons/hicolor/512x512/apps/insomnia.png \
|
|
/usr/share/pixmaps/insomnia.png
|
|
|
|
domenu usr/share/applications/insomnia.desktop
|
|
|
|
insinto /opt/Insomnia
|
|
doins -r opt/Insomnia/.
|
|
fperms +x /opt/Insomnia/insomnia
|
|
dosym ../Insomnia/insomnia opt/bin/insomnia
|
|
|
|
pax-mark -m "${ED}"/opt/Insomnia/insomnia
|
|
}
|