blob: 5c01b73fb4b4e898b4ab748368b4d9dfbb3bf264 (
plain) (
blame)
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
|
# Created by: Martin Wilke <miwi@FreeBSD.org>
# $FreeBSD$
PORTNAME= pam_ssh_agent_auth
PORTVERSION= 0.10.2
PORTREVISION= 1
CATEGORIES= security
MASTER_SITES= SF/pamsshagentauth/${PORTNAME}/v${PORTVERSION}/
MAINTAINER= ports@FreeBSD.org
COMMENT= PAM module which permits authentication via ssh-agent
USES= perl5 ssl tar:bzip2
GNU_CONFIGURE= yes
CONFIGURE_ENV= ac_cv_func_strnvis=no
CONFIGURE_ARGS= --libexecdir=${LOCALBASE}/lib \
--with-ssl-dir=${OPENSSLBASE}
PLIST_FILES= lib/pam_ssh_agent_auth.so \
man/man8/pam_ssh_agent_auth.8.gz
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/pam_ssh_agent_auth.so
.include <bsd.port.pre.mk>
.if ${SSL_DEFAULT:Mopenssl-devel}
BROKEN= Does not build with openssl-devel
.endif
.include <bsd.port.post.mk>
|