Nils Freydank
7fde71491c
Changelog -- Add ability to set arbitrary folder paths to monitor for mount events. -- Add ability to monitor gvfs mount events. -- Fix a bug that prevented unlocking volumes with a path that contains "," character. The bug was due to fuse using the character as an option separator. -- Fix a bug that prevented recent versions of unlocked securefs from showing up in the GUI in MACOS. -- Add a GUI option to "allow replaced file system" when creating/unlocking CryFS volume. -- Set the option "--allow-replaced-filesystem" by default when creating a CryFS volume. -- When dealing with CryFs volume in windows, do not support paths that are not in drive C to work around this bug: https://github.com/cryfs/cryfs/issues/319 -- Fix a breaking change in how fscrypt 0.2.7 reported its version info. Package-Manager: Portage-2.3.96, Repoman-2.3.22 Manifest-Sign-Key: 00EFD31F1B60D5DBADB831C1C0ECE6960E54475B Signed-off-by: Nils Freydank <holgersson@posteo.de>
48 lines
1.0 KiB
Bash
48 lines
1.0 KiB
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="7"
|
|
|
|
inherit eutils cmake-utils
|
|
|
|
S="${WORKDIR}/SiriKali-${PV}"
|
|
|
|
DESCRIPTION="A Qt/C++ GUI front end to some encrypted filesystems and sshfs"
|
|
HOMEPAGE="https://github.com/mhogomchungu/sirikali"
|
|
SRC_URI="https://github.com/mhogomchungu/${PN}/releases/download/${PV}/${P}.tar.xz"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
IUSE="gnome-keyring kwallet test"
|
|
RESTRICT="!test? ( test )"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND="
|
|
dev-qt/qtcore:5
|
|
dev-qt/qtgui:5
|
|
dev-qt/qtnetwork:5
|
|
dev-qt/qtwidgets:5"
|
|
|
|
DEPEND="${RDEPEND}
|
|
dev-libs/libgcrypt:0=
|
|
dev-libs/libpwquality
|
|
gnome-keyring? ( app-crypt/libsecret )
|
|
virtual/pkgconfig"
|
|
|
|
src_configure() {
|
|
local MY_S_FLAG=false
|
|
use kwallet && MY_S_FLAG=true
|
|
use gnome-keyring && MY_S_FLAG=true
|
|
local mycmakeargs=(
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
-DCMAKE_BUILD_TYPE=RELEASE
|
|
-DNOSECRETSUPPORT=${MY_S_FLAG}
|
|
-DNOKDESUPPORT=true
|
|
)
|
|
cmake-utils_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
cmake-utils_src_install
|
|
}
|