blob: d4ee0e2a725959da1116652be5e2bea2a34f2436 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit xdg
DESCRIPTION="A GUI password manager utility with password generator"
HOMEPAGE="https://als.regnet.cz/fpm2/"
SRC_URI="https://als.regnet.cz/${PN}/download/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="2"
KEYWORDS="amd64 x86"
RDEPEND="
dev-libs/glib:2
dev-libs/libxml2
dev-libs/nettle
x11-libs/gtk+:3
x11-libs/libX11"
DEPEND="${RDEPEND}"
BDEPEND="
dev-util/intltool
virtual/pkgconfig"
src_prepare() {
default
# gettext make check failure
echo "data/fpm2.desktop.in" >> po/POTFILES.in || die
}
|