| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson git-r3
DESCRIPTION="A cross-platform desktop utility for computing message digests or checksums"
HOMEPAGE="https://gtkhash.org/"
EGIT_REPO_URI="https://github.com/tristanheaven/${PN}.git"
LICENSE="GPL-2"
SLOT="0"
IUSE="nettle +openssl mbedtls caja nemo thunar"
DEPEND="dev-libs/libgcrypt
app-crypt/libb2
x11-libs/gtk+:3
virtual/zlib:=
nettle? ( dev-libs/nettle )
openssl? ( dev-libs/openssl )
mbedtls? ( net-libs/mbedtls:0 )
caja? ( mate-base/caja )
nemo? ( gnome-extra/nemo )
thunar? ( xfce-base/thunar )"
RDEPEND="${DEPEND}"
src_configure() {
local emesonargs=(
$(meson_use nettle)
$(meson_use openssl libcrypto)
$(meson_use mbedtls)
$(meson_use caja build-caja)
-Dbuild-nautilus=false # Extension does not work with GTK4 Nautilus
$(meson_use nemo build-nemo)
$(meson_use thunar build-thunar)
-Dlinux-crypto=true # Probably should NOT assume we're running on Linux...
-Dglib-checksums=true # Indirect dependency of GTK3 so why not
)
meson_src_configure
}
dev-libs/libgcrypt app-crypt/libb2 x11-libs/gtk+:3 virtual/zlib:= nettle? ( dev-libs/nettle ) openssl? ( dev-libs/openssl ) mbedtls? ( net-libs/mbedtls:0 ) caja? ( mate-base/caja ) nemo? ( gnome-extra/nemo ) thunar? ( xfce-base/thunar )
dev-libs/libgcrypt app-crypt/libb2 x11-libs/gtk+:3 virtual/zlib:= nettle? ( dev-libs/nettle ) openssl? ( dev-libs/openssl ) mbedtls? ( net-libs/mbedtls:0 ) caja? ( mate-base/caja ) nemo? ( gnome-extra/nemo ) thunar? ( xfce-base/thunar )