8e38fe7799
Noteworthy changes in version 1.2.0 (2021-08-25) ------------------------------------------------ * qt: Show a warning if Caps Lock is on on Windows, X11 (requires libX11 and Qt5X11Extras), and Wayland (requires KF5WaylandClient). [T4950] * qt: Support password formatting. This makes generated passwords easier to transcript. [T5517] * qt: Fix showing of pinentry window on Wayland. [T5528] * qt: Check passphrase constraints before accepting passphrase if passphrase constraints are requested to be enforced. [T5532] * qt: Improve detection of running in a GUI session. [T3659] * qt: Improve accessibility when entering new password.
22 lines
667 B
Makefile
22 lines
667 B
Makefile
# $NetBSD: Makefile,v 1.53 2022/01/13 08:05:48 adam Exp $
|
|
|
|
COMMENT= Applications for entering PINs or Passphrases
|
|
|
|
CONFIGURE_ARGS+= --enable-pinentry-tty
|
|
CONFIGURE_ARGS+= --enable-pinentry-emacs
|
|
CONFIGURE_ARGS+= --disable-pinentry-fltk
|
|
CONFIGURE_ARGS+= --disable-pinentry-gnome3
|
|
CONFIGURE_ARGS+= --disable-pinentry-gtk2
|
|
CONFIGURE_ARGS+= --disable-pinentry-qt5
|
|
CONFIGURE_ARGS+= --disable-pinentry-tqt
|
|
|
|
.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"
|