mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
aff42c7199
most cases, the failure mode is the same. Also, mark them broken on mips when necessary. While here, pet portlint. Approved by: portmgr (tier-2 blanket)
29 lines
838 B
Makefile
29 lines
838 B
Makefile
# Created by: Martin Wilke <miwi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pam_ssh_agent_auth
|
|
PORTVERSION= 0.10.3
|
|
CATEGORIES= security
|
|
MASTER_SITES= SF/pamsshagentauth/${PORTNAME}/v${PORTVERSION}/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= PAM module which permits authentication via ssh-agent
|
|
|
|
BROKEN_SSL= openssl-devel
|
|
BROKEN_mips64= fails to compile: ed25519-donna-portable.h:85:4: Need a uint128_t implementation!
|
|
BROKEN_powerpc64= fails to compile: ed25519-donna-portable.h: warning: ALIGN redefined
|
|
|
|
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.mk>
|