mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
39a6b5dcb0
PR: ports/96376 Submitted by: Martin Wilke <freebsd@unixfreunde.de> Approved by: maintainer timeout (2 weeks)
40 lines
864 B
Makefile
40 lines
864 B
Makefile
# New ports collection makefile for: keychain
|
|
# Date created: 10 September 2001
|
|
# Whom: Johann Visagie <wjv@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= keychain
|
|
PORTVERSION= 2.6.2
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://dev.gentoo.org/~agriffis/keychain/
|
|
|
|
MAINTAINER= olive@oban.frmug.org
|
|
COMMENT= A user-friendly front-end to ssh-agent(1)
|
|
|
|
USE_BZIP2= yes
|
|
NO_BUILD= yes
|
|
|
|
MAN1= keychain.1
|
|
|
|
PLIST_FILES= bin/keychain
|
|
|
|
PORTDOCS= ChangeLog README
|
|
|
|
.if !exists(${LOCALBASE}/bin/ssh-agent) && !exists(/usr/bin/ssh-agent)
|
|
RUN_DEPENDS+= ssh-agent:${PORTSDIR}/security/openssh-portable
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/keychain ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/keychain.1 ${PREFIX}/man/man1
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|