# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=5 inherit eutils flag-o-matic MY_PN=${PN/-base} MY_P=${P/-base} DESCRIPTION="Collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol" HOMEPAGE="http://gnupg.org/aegypten2/index.html" SRC_URI="mirror://gnupg/${MY_PN}/${MY_P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~arm ~amd64 ~x86" IUSE="debug_grade_1 gtk qt4 caps static" RDEPEND=" app-eselect/eselect-pinentry caps? ( sys-libs/libcap ) sys-libs/ncurses static? ( >=sys-libs/ncurses-5.7-r5[static-libs,-gpm] ) " DEPEND="${RDEPEND}" S=${WORKDIR}/${MY_P} DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO ) src_configure() { use static && append-ldflags -static econf \ --disable-dependency-tracking \ --enable-maintainer-mode \ --disable-pinentry-gtk \ --disable-pinentry-gtk2 \ --disable-pinentry-qt \ --enable-pinentry-curses \ --enable-fallback-curses \ --disable-pinentry-qt4 \ $(use_with caps libcap) \ --without-x } src_compile() { emake AR="$(tc-getAR)" } src_install() { if use debug_grade_1 ; then set -ex fi default rm -f "${ED}"/usr/bin/pinentry || die } pkg_postinst() { if ! has_version 'app-crypt/pinentry-base'; then # || has_version '=2.6.9 support memory locking for unprivileged processes." elog "The soft resource limit for memory locking specifies the limit an" elog "unprivileged process may lock into memory. You can also use POSIX" elog "capabilities to allow pinentry to lock memory. To do so activate the caps" elog "USE flag and add the CAP_IPC_LOCK capability to the permitted set of" elog "your users." fi eselect pinentry update ifunset use gtk && elog "If you want pinentry for Gtk+, please install app-crypt/pinentry-gtk." use qt4 && elog "If you want pinentry for Qt4, please install app-crypt/pinentry-qt4." } pkg_postrm() { eselect pinentry update ifunset }