diff options
author | 2016-11-22 13:57:51 +0100 | |
---|---|---|
committer | 2016-11-22 14:48:44 +0100 | |
commit | fa34495d87e5bee5222ec09941d4555db371bafb (patch) | |
tree | 21407a4e95c9eb6ff0eebf39ff1a249e22c335a0 /app-crypt/gpa/gpa-0.9.10.ebuild | |
parent | x11-misc/lightdm: remove vulnerable versions wrt security bug #566640 (diff) | |
download | gentoo-fa34495d87e5bee5222ec09941d4555db371bafb.tar.gz gentoo-fa34495d87e5bee5222ec09941d4555db371bafb.tar.bz2 gentoo-fa34495d87e5bee5222ec09941d4555db371bafb.zip |
app-crypt/gpa: Bump to version 0.9.10
Package-Manager: portage-2.3.2
Diffstat (limited to 'app-crypt/gpa/gpa-0.9.10.ebuild')
-rw-r--r-- | app-crypt/gpa/gpa-0.9.10.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app-crypt/gpa/gpa-0.9.10.ebuild b/app-crypt/gpa/gpa-0.9.10.ebuild new file mode 100644 index 000000000000..7c863dda3f28 --- /dev/null +++ b/app-crypt/gpa/gpa-0.9.10.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="The GNU Privacy Assistant (GPA) is a graphical user interface for GnuPG" +HOMEPAGE="http://gpa.wald.intevation.org" +SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE_LINGUAS=" ar cs de es fr ja nl pl pt_BR ru sv tr zh_TW" +IUSE="nls ${IUSE_LINGUAS// / linguas_}" + +RDEPEND=" + >=app-crypt/gnupg-2:= + >=app-crypt/gpgme-1.5.0:= + >=dev-libs/libassuan-1.1.0 + >=dev-libs/libgpg-error-1.4 + >=x11-libs/gtk+-2.10.0:2 +" +DEPEND="${RDEPEND} + virtual/pkgconfig + nls? ( sys-devel/gettext )" + +src_prepare() { + default + sed -i 's/Application;//' gpa.desktop +} + +src_configure() { + econf \ + --with-gpgme-prefix=/usr \ + --with-libassuan-prefix=/usr \ + $(use_enable nls) \ + GPGKEYS_LDAP="/usr/libexec/gpgkeys_ldap" +} |