blob: 5cfcb4fdb67d19d5784d8cf0ddf5c682a40e0780 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# New ports collection makefile for: keychain
# Date created: 10 September 2001
# Whom: Johann Visagie <wjv@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= keychain
PORTVERSION= 2.7.1
CATEGORIES= security
MASTER_SITES= http://www.funtoo.org/archive/keychain/ \
${MASTER_SITE_GENTOO}
MASTER_SITE_SUBDIR= distfiles
MAINTAINER= garga@FreeBSD.org
COMMENT= A user-friendly front-end to ssh-agent(1)
OPTIONS_DEFINE= DOCS
OPTIONS_DEFAULT=DOCS
USE_BZIP2= yes
USE_GMAKE= yes
USE_PERL5_BUILD= yes
MAN1= keychain.1
PLIST_FILES= bin/keychain
PORTDOCS= ChangeLog README.rst
.include <bsd.port.pre.mk>
.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/keychain
${INSTALL_MAN} ${WRKSRC}/keychain.1 ${PREFIX}/man/man1
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
.for f in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.post.mk>
|