# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

MULTILIB_COMPAT=( abi_x86_64 )

inherit desktop multilib-build pax-utils unpacker xdg

MY_PN="${PN/-bin/}"
MY_P="${MY_PN}-${PV}"

DESCRIPTION="Diagram drawing application built on web technology"
HOMEPAGE="https://github.com/jgraph/drawio-desktop"
SRC_URI="https://github.com/adobe/${MY_PN}/releases/download/${PV}/${MY_P//-/_}_amd64.deb"

LICENSE="Apache-2.0"
SLOT=0
KEYWORDS="-* ~amd64"
IUSE="+abi_x86_64"
RESTRICT="bindist mirror"

RDEPEND="app-accessibility/at-spi2-atk:2[${MULTILIB_USEDEP}]
	dev-libs/atk:0[${MULTILIB_USEDEP}]
	dev-libs/expat:0[${MULTILIB_USEDEP}]
	dev-libs/glib:2[${MULTILIB_USEDEP}]
	dev-libs/nspr:0[${MULTILIB_USEDEP}]
	dev-libs/nss:0[${MULTILIB_USEDEP}]
	media-libs/alsa-lib:0[${MULTILIB_USEDEP}]
	net-print/cups:0[${MULTILIB_USEDEP}]
	sys-apps/dbus:0[${MULTILIB_USEDEP}]
	sys-apps/util-linux:0[${MULTILIB_USEDEP}]
	x11-libs/cairo:0[${MULTILIB_USEDEP}]
	x11-libs/gdk-pixbuf:2[${MULTILIB_USEDEP}]
	x11-libs/gtk+:3[${MULTILIB_USEDEP}]
	x11-libs/libX11:0[${MULTILIB_USEDEP}]
	x11-libs/libxcb:0/1.12[${MULTILIB_USEDEP}]
	x11-libs/libXcomposite:0[${MULTILIB_USEDEP}]
	x11-libs/libXcursor:0[${MULTILIB_USEDEP}]
	x11-libs/libXdamage:0[${MULTILIB_USEDEP}]
	x11-libs/libXext:0[${MULTILIB_USEDEP}]
	x11-libs/libXfixes:0[${MULTILIB_USEDEP}]
	x11-libs/libXi:0[${MULTILIB_USEDEP}]
	x11-libs/libXrandr:0[${MULTILIB_USEDEP}]
	x11-libs/libXrender:0[${MULTILIB_USEDEP}]
	x11-libs/libXScrnSaver:0[${MULTILIB_USEDEP}]
	x11-libs/libXtst:0[${MULTILIB_USEDEP}]
	x11-libs/pango:0[${MULTILIB_USEDEP}]"

QA_PREBUILT="opt/Cryptr/swiftshader/libEGL.so
	opt/Cryptr/swiftshader/libGLESv2.so
	opt/Cryptr/libEGL.so
	opt/Cryptr/cryptr
	opt/Cryptr/libffmpeg.so
	opt/Cryptr/libGLESv2.so"

S="${WORKDIR}"

src_install() {
	for size in 16x16 24x24 32x32 48x48 64x64 96x96 128x128 256x256 512x512 ; do
		doicon -s "${size%%x*}" usr/share/icons/hicolor/"${size}"/apps/cryptr.png
	done
	dosym ../icons/hicolor/256x256/apps/cryptr.png \
		/usr/share/pixmaps/cryptr.png

	domenu usr/share/applications/cryptr.desktop

	insinto /opt/Cryptr
	doins -r opt/Cryptr/.
	fperms +x /opt/Cryptr/cryptr \
		/opt/Cryptr/swiftshader/lib{EGL,GLESv2}.so \
		/opt/Cryptr/lib{EGL,ffmpeg,GLESv2}.so

	dodir /opt/bin
	dosym ../Cryptr/cryptr opt/bin/cryptr

	pax-mark -m "${ED}"/opt/Cryptr/cryptr
}