Noteworthy changes in version 0.9.5 (2015-07-01) ------------------------------------------------ * Replaced the internal Assuan and gpg-error code by the standard libassuan and libgpg-error libraries. * Add a new Emacs pinentry and use as fallback for GUI programs. * gnome3: The use-password-manager checkbox does now work. * Gtk: Improved fallback to curses feature. * curses: Recognize DEL as backspace.
20 lines
615 B
Makefile
20 lines
615 B
Makefile
# $NetBSD: Makefile,v 1.45 2015/07/06 10:31:00 wiz Exp $
|
|
|
|
COMMENT= Applications for entering PINs or Passphrases
|
|
|
|
CONFIGURE_ARGS+= --enable-pinentry-tty
|
|
CONFIGURE_ARGS+= --enable-pinentry-emacs
|
|
CONFIGURE_ARGS+= --disable-pinentry-qt4
|
|
CONFIGURE_ARGS+= --disable-pinentry-gnome3
|
|
CONFIGURE_ARGS+= --disable-pinentry-gtk2
|
|
|
|
.include "../../security/pinentry/Makefile.common"
|
|
|
|
.if defined(PINENTRY_DEFAULT)
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && \
|
|
${LN} -sf pinentry-${PINENTRY_DEFAULT} pinentry
|
|
.endif
|
|
|
|
.include "../../security/libksba/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|