blob: e0d92e843fe033e69ff37d81a075d19a8ab4efd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
# New ports collection makefile for: pinentry
# Date created: 29 Jan 2003
# Whom: michaelnottebrock@gmx.net
#
# $FreeBSD$
#
PORTNAME= pinentry
PORTVERSION= 0.7.1
PORTREVISION= 3
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.13:${PORTSDIR}/security/libgcrypt \
ksba.13:${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_GTK2) || defined(PINENTRY_CURSES)
.if defined(PINENTRY_QT)
USE_QT_VER= 3
PLIST_SUB+= WITH_QT=""
pre-configure:
@${REINPLACE_CMD} -e "s@-lpthread@${PTHREAD_LIBS}@g" \
${WRKSRC}/acinclude.m4 ${WRKSRC}/configure
.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_GTK2)
USE_GNOME+= gtk20
PLIST_SUB+= WITH_GTK2=""
PATCH_SITES= http://home.arcor.de/dralbrecht.dress/GnuPG/
PATCHFILES= pinentry-0.7.1-gtk+-2.4.diff.bz2
PATCH_DIST_STRIP= -p1
USE_AUTOCONF_VER= 259
USE_AUTOMAKE_VER= 19
pre-configure:
@cd ${WRKSRC}; ${ACLOCAL}
.else
CONFIGURE_ARGS+=--disable-pinentry-gtk2
PLIST_SUB+= WITH_GTK2="@comment "
.endif
.if defined(PINENTRY_CURSES)
PLIST_SUB+= WITH_CURSES=""
.else
CONFIGURE_ARGS+=--disable-pinentry-curses
PLIST_SUB+= WITH_CURSES="@comment "
.endif
.else
PATCH_SITES= http://home.arcor.de/dralbrecht.dress/GnuPG/
PATCHFILES= pinentry-0.7.1-gtk+-2.4.diff.bz2
PATCH_DIST_STRIP= -p1
USE_AUTOCONF_VER= 259
USE_AUTOMAKE_VER= 19
USE_QT_VER= 3
USE_GNOME+= gtk12 gtk20
PLIST_SUB+= WITH_QT=""
PLIST_SUB+= WITH_GTK=""
PLIST_SUB+= WITH_GTK2=""
PLIST_SUB+= WITH_CURSES=""
pre-configure:
@cd ${WRKSRC}; ${ACLOCAL}
run-autotools:
@(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOMAKE} \
${AUTOMAKE_ARGS})
@(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOCONF} \
${AUTOCONF_ARGS})
@${REINPLACE_CMD} -e "s@-lpthread@${PTHREAD_LIBS}@g" \
${WRKSRC}/acinclude.m4 ${WRKSRC}/configure
.endif
.include <bsd.port.mk>
|