mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
e5a6d23473
previous attempt didn't work.
69 lines
1.5 KiB
Makefile
69 lines
1.5 KiB
Makefile
# New ports collection makefile for: pinentry
|
|
# Date created: 29 Jan 2003
|
|
# Whom: michaelnottebrock@gmx.net
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pinentry
|
|
PORTVERSION= 0.7.1
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_GNUPG}
|
|
MASTER_SITE_SUBDIR= pinentry
|
|
|
|
MAINTAINER= lofi@freebsd.org
|
|
COMMENT?= A collection of simple PIN or passphrase entry dialogs
|
|
|
|
LIB_DEPENDS= gcrypt.12:${PORTSDIR}/security/libgcrypt \
|
|
ksba.11:${PORTSDIR}/security/libksba
|
|
|
|
CONFLICTS?= pinentry-qt* pinentry-gtk* pinentry-curses*
|
|
|
|
USE_GETOPT_LONG=yes
|
|
USE_ICONV= yes
|
|
WANT_GNOME= yes
|
|
USE_LIBTOOL_VER=13
|
|
USE_GMAKE= yes
|
|
INSTALLS_SHLIB= yes
|
|
USE_REINPLACE= yes
|
|
INFO= pinentry
|
|
|
|
CONFIGURE_ARGS+=--with-libiconv-prefix=${LOCALBASE}
|
|
|
|
.if defined(PINENTRY_QT) || defined(PINENTRY_GTK) || defined(PINENTRY_CURSES)
|
|
.if defined(PINENTRY_QT)
|
|
USE_QT_VER= 3
|
|
PLIST_SUB+= WITH_QT=""
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-pinentry-qt
|
|
PLIST_SUB+= WITH_QT="@comment "
|
|
.endif
|
|
|
|
.if defined(PINENTRY_GTK)
|
|
USE_GNOME+= gtk12
|
|
PLIST_SUB+= WITH_GTK=""
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-pinentry-gtk
|
|
PLIST_SUB+= WITH_GTK="@comment "
|
|
.endif
|
|
|
|
.if defined(PINENTRY_CURSES)
|
|
PLIST_SUB+= WITH_CURSES=""
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-pinentry-curses
|
|
PLIST_SUB+= WITH_CURSES="@comment "
|
|
.endif
|
|
.else
|
|
USE_QT_VER= 3
|
|
USE_GNOME+= gtk12
|
|
PLIST_SUB+= WITH_QT=""
|
|
PLIST_SUB+= WITH_GTK=""
|
|
PLIST_SUB+= WITH_CURSES=""
|
|
.endif
|
|
|
|
pre-configure:
|
|
${REINPLACE_CMD} -e "s@-lpthread@${PTHREAD_LIBS}@g" \
|
|
${WRKSRC}/acinclude.m4 ${WRKSRC}/aclocal.m4 ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|