- Update to 1.6.1 - Remove some unneeded patches - Fix pkg-plist - report configure bug upstream https://bugs.g10code.com/gnupg/issue1668 - report API breakage downstream and find that MacPorts had the same issue https://rt.cpan.org/Ticket/Display.html?id=97201 - bump PORTREVISION for dependent ports (approx. 100 ports) - Thanks to exp-run by antoine@ to find ports that break - patch ports that would otherwise break security/shishi with PR 192164 is already committed [1] devel/ccrtp [2] editors/abiword [3] security/p5-Crypt-GCrypt PR: 191256, 192162 [1], 192163 [2], 192166 [3] Submitted by: Carlos Jacobo Puga Medina <cjpugmed@gmail.com> Approved by: maintainer timeout, antoine (exp-run), portmgr (implicit)
82 lines
1.7 KiB
Makefile
82 lines
1.7 KiB
Makefile
# Created by: Michael Nottebrock <lofi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pinentry
|
|
PORTVERSION= 0.8.3
|
|
PORTREVISION?= 1
|
|
CATEGORIES= security
|
|
MASTER_SITES= GNUPG/pinentry
|
|
|
|
MAINTAINER= makc@FreeBSD.org
|
|
COMMENT?= Collection of simple PIN or passphrase entry dialogs
|
|
|
|
LIB_DEPENDS= libgcrypt.so:${PORTSDIR}/security/libgcrypt \
|
|
libksba.so:${PORTSDIR}/security/libksba
|
|
|
|
CONFLICTS_INSTALL?= pinentry-[a-z]*
|
|
|
|
USES= iconv gmake pkgconfig tar:bzip2
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=--disable-pinentry-qt
|
|
INFO= pinentry
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
.if !defined(PINENTRY_SLAVE)
|
|
OPTIONS_MULTI= FRONTEND
|
|
OPTIONS_MULTI_FRONTEND= NCURSES GTK GTK2 QT4
|
|
OPTIONS_DEFAULT= ${OPTIONS_MULTI_FRONTEND}
|
|
|
|
NCURSES_DESC= Curses frontend
|
|
GTK_DESC= Gtk+ 1 frontend
|
|
GTK2_DESC= Gtk+ 2 frontend
|
|
QT4_DESC= Qt 4 frontend
|
|
.else
|
|
PKGNAMESUFFIX= ${PINENTRY_SLAVE}
|
|
.endif
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MQT4}
|
|
USE_GCC= any
|
|
USE_QT4= gui moc_build
|
|
PLIST_SUB+= WITH_QT4=""
|
|
MOC4= ${LOCALBASE}/bin/moc-qt4
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-pinentry-qt4
|
|
PLIST_SUB+= WITH_QT4="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGTK}
|
|
USE_GNOME+= gtk12
|
|
PLIST_SUB+= WITH_GTK=""
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-pinentry-gtk
|
|
PLIST_SUB+= WITH_GTK="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGTK2}
|
|
USE_GNOME+= gtk20
|
|
PLIST_SUB+= WITH_GTK2=""
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-pinentry-gtk2
|
|
PLIST_SUB+= WITH_GTK2="@comment "
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MNCURSES}
|
|
USES+= ncurses
|
|
PLIST_SUB+= WITH_NCURSES=""
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-pinentry-curses
|
|
PLIST_SUB+= WITH_NCURSES="@comment "
|
|
.endif
|
|
|
|
pre-configure:
|
|
.if ${PORT_OPTIONS:MQT4}
|
|
cd ${WRKSRC}/qt4 && \
|
|
${MOC4} pinentrydialog.h > pinentrydialog.moc && \
|
|
${MOC4} qsecurelineedit.h > qsecurelineedit.moc
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|