mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 06:48:18 -07:00
117 lines
3.2 KiB
Bash
117 lines
3.2 KiB
Bash
# Copyright 1999-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/keepass.asc
|
|
inherit desktop optfeature wrapper verify-sig xdg
|
|
|
|
MY_PN="KeePass"
|
|
DESCRIPTION="A free, open source, light-weight and easy-to-use password manager"
|
|
HOMEPAGE="https://keepass.info/"
|
|
SRC_URI="
|
|
https://downloads.sourceforge.net/${PN}/${MY_PN}-${PV}-Source.zip
|
|
verify-sig? ( https://keepass.info/integrity/v2/${MY_PN}-${PV}-Source.zip.asc )
|
|
"
|
|
S="${WORKDIR}"
|
|
|
|
# first is keepass, second is bundled argon2
|
|
LICENSE="GPL-2 || ( CC0-1.0 Apache-2.0 )"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64 ~x86"
|
|
IUSE="aot"
|
|
|
|
BDEPEND="
|
|
app-arch/unzip
|
|
verify-sig? ( sec-keys/openpgp-keys-keepass )
|
|
"
|
|
DEPEND="dev-lang/mono"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
dev-dotnet/libgdiplus[cairo]
|
|
"
|
|
|
|
PATCHES=( "${FILESDIR}/${PN}-2.53-xsl-path-detection.patch" )
|
|
|
|
# bug #687052
|
|
# file generated by mono --aot where *FLAGS don't make sense
|
|
QA_PREBUILT="usr/lib64/keepass/KeePass.exe.so"
|
|
|
|
src_prepare() {
|
|
# KeePass looks for some XSL files in the same folder as the executable,
|
|
# we prefer to have it in /usr/share/KeePass. Apply patch using base function.
|
|
# This XSL file will not be upstreamed since the KeePass creator said that
|
|
# including this patch would break the Portable USB version of KeePass
|
|
# (which keeps/looks for xsl files in its own folder)
|
|
default
|
|
|
|
# Switch into build dir so the mono prepration script works correctly
|
|
pushd Build || die
|
|
source PrepMonoDev.sh || die
|
|
popd || die
|
|
}
|
|
|
|
src_compile() {
|
|
export MONO_REGISTRY_PATH=/dev/null # bug 659808
|
|
|
|
# bug 704358
|
|
export LANG=C LC_ALL=C
|
|
|
|
# Build with Release target
|
|
xbuild /target:KeePass /property:Configuration=Release KeePass.sln || die
|
|
|
|
# Run Ahead Of Time compiler on the binary
|
|
if use aot; then
|
|
cp Ext/KeePass.exe.config Build/KeePass/Release/ || die
|
|
mono --aot -O=all Build/KeePass/Release/KeePass.exe || die
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
# Wrapper script to launch mono
|
|
make_wrapper "${PN}" "mono /usr/$(get_libdir)/${PN}/KeePass.exe"
|
|
|
|
# Some XSL files
|
|
insinto "/usr/share/${PN}/XSL"
|
|
doins Ext/XSL/*
|
|
|
|
insinto "/usr/$(get_libdir)/${PN}"
|
|
exeinto "/usr/$(get_libdir)/${PN}"
|
|
|
|
doins Ext/KeePass.exe.config
|
|
|
|
# Default configuration, simply says to use user-specific configuration
|
|
doins Ext/KeePass.config.xml
|
|
|
|
# The actual executable
|
|
doexe Build/KeePass/Release/KeePass.exe
|
|
|
|
# Copy the AOT compilation result
|
|
if use aot; then
|
|
doexe Build/KeePass/Release/KeePass.exe.so
|
|
fi
|
|
|
|
# Prepare the icons
|
|
newicon -s 256 Ext/Icons_04_CB/Finals/plockb.png "${PN}.png"
|
|
newicon -s 256 -t gnome -c mimetypes Ext/Icons_04_CB/Finals/plockb.png "application-x-${PN}2.png"
|
|
|
|
# Create a desktop entry and associate it with the KeePass mime type
|
|
make_desktop_entry "${PN}" "${MY_PN}" "${PN}" "System;Security" "MimeType=application/x-keepass2;\nStartupWMClass=KeePass2;"
|
|
|
|
# MIME descriptor for .kdbx files
|
|
insinto /usr/share/mime/packages
|
|
doins "${FILESDIR}/${PN}.xml"
|
|
|
|
# sed, because patching this really sucks
|
|
sed -i 's/mono/mono --verify-all/g' "${D}/usr/bin/keepass" || die
|
|
}
|
|
|
|
pkg_postinst() {
|
|
xdg_pkg_postinst
|
|
|
|
optfeature "enables autotype/autofill" x11-misc/xdotool
|
|
|
|
elog "Some systems may experience issues with copy and paste operations."
|
|
elog "If you encounter this, please install x11-misc/xsel."
|
|
}
|