diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2013-01-12 22:16:07 +0000 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2013-01-12 22:16:07 +0000 |
commit | b29dbee72cb81e497da378808336f2fb7079a8c0 (patch) | |
tree | 47602a0e2016cbd5cae1e851156582b06617d91f /app-crypt/gpa | |
parent | Version bump. (diff) | |
download | gentoo-2-b29dbee72cb81e497da378808336f2fb7079a8c0.tar.gz gentoo-2-b29dbee72cb81e497da378808336f2fb7079a8c0.tar.bz2 gentoo-2-b29dbee72cb81e497da378808336f2fb7079a8c0.zip |
Add linguas support, fix desktop file per bug#443110, fix libexec location per bug#417437
(Portage version: 2.2.0_alpha151/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'app-crypt/gpa')
-rw-r--r-- | app-crypt/gpa/ChangeLog | 8 | ||||
-rw-r--r-- | app-crypt/gpa/gpa-0.9.3.ebuild | 17 |
2 files changed, 16 insertions, 9 deletions
diff --git a/app-crypt/gpa/ChangeLog b/app-crypt/gpa/ChangeLog index 25ae714c8abd..6c8a9bb30302 100644 --- a/app-crypt/gpa/ChangeLog +++ b/app-crypt/gpa/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-crypt/gpa -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpa/ChangeLog,v 1.86 2012/12/01 19:34:37 armin76 Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpa/ChangeLog,v 1.87 2013/01/12 22:16:07 alonbl Exp $ + + 12 Jan 2013; Alon Bar-Lev <alonbl@gentoo.org> gpa-0.9.3.ebuild: + Add linguas support, fix desktop file per bug#443110, fix libexec location per + bug#417437 01 Dec 2012; Raúl Porcel <armin76@gentoo.org> gpa-0.9.3.ebuild: alpha/sparc stable wrt #441890 diff --git a/app-crypt/gpa/gpa-0.9.3.ebuild b/app-crypt/gpa/gpa-0.9.3.ebuild index 535e810abf05..9a7f0df9db85 100644 --- a/app-crypt/gpa/gpa-0.9.3.ebuild +++ b/app-crypt/gpa/gpa-0.9.3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpa/gpa-0.9.3.ebuild,v 1.6 2012/12/01 19:34:37 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpa/gpa-0.9.3.ebuild,v 1.7 2013/01/12 22:16:07 alonbl Exp $ EAPI=4 @@ -11,7 +11,8 @@ SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2" LICENSE="GPL-3" SLOT="0" KEYWORDS="alpha amd64 ppc ppc64 sparc x86" -IUSE="nls" +IUSE_LINGUAS=" ar cs de es fr ja nl pl pt_BR ru sv tr zh_TW" +IUSE="nls ${IUSE_LINGUAS// / linguas_}" RDEPEND=">=x11-libs/gtk+-2.10.0:2 >=dev-libs/libgpg-error-1.4 @@ -22,14 +23,16 @@ DEPEND="${RDEPEND} virtual/pkgconfig nls? ( sys-devel/gettext )" +src_prepare() { + sed -i 's/Application;//' gpa.desktop +} + src_configure() { - # force --libexecdir so that it doesn't expand to - # ${exec_prefix}/libexec instead. econf \ - --libexecdir=/usr/libexec \ --with-gpgme-prefix=/usr \ --with-libassuan-prefix=/usr \ - $(use_enable nls) + $(use_enable nls) \ + GPGKEYS_LDAP="/usr/libexec/gpgkeys_ldap" } DOCS=( AUTHORS ChangeLog README NEWS TODO ) |