aboutsummaryrefslogtreecommitdiff
path: root/security/dropbear/Makefile
blob: fc5409503523278c97eefa7a0600b873dd75b1e8 (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
# New ports collection makefile for:	dropbear
# Date created:				20 August 2003
# Whom:					Clement Laforet <sheepkiller@cultdeadsheep.org>
#
# $FreeBSD$
#

PORTNAME=	dropbear
PORTVERSION=	0.41
CATEGORIES=	security ipv6
MASTER_SITES=	http://matt.ucc.asn.au/dropbear/releases/

MAINTAINER=	clement@FreeBSD.org
COMMENT=	An SSH 2 server, designed to be usable in small memory environments

GNU_CONFIGURE=	YES
USE_GMAKE=	YES
USE_REINPLACE=	YES

.if defined(WANT_STATIC)
CONFIGURE_ENV=	LDFLAGS=-static
.endif

post-patch:
	@${REINPLACE_CMD} -e "s,_PRIV_FILENAME \"/etc/,_PRIV_FILENAME \"${PREFIX}/etc/,g; \
		s,/usr/bin/X11/,${X11BASE}/,g" ${WRKSRC}/options.h
	@${REINPLACE_CMD} -e "s,sys/dir.h,dirent.h," ${WRKSRC}/*.[ch]
	@${SED} -e 's:__PREFIX__:${PREFIX}:g' \
		${FILESDIR}/dropbear.sh > ${WRKSRC}/dropbear.sh

post-install:
	@${MKDIR} ${PREFIX}/etc/dropbear
	@${ECHO_MSG} ""
	@${INSTALL_SCRIPT} ${WRKSRC}/dropbear.sh ${PREFIX}/etc/rc.d/dropbear.sh.sample
	@${ECHO_MSG} " Now you have to create your SSH host key."
	@${ECHO_MSG} ""
	@${ECHO_MSG} " To create RSA key:"
	@${ECHO_MSG} " ${PREFIX}/sbin/dropbearkey -t rsa -f ${PREFIX}/etc/dropbear/dropbear_rsa_host_key"
	@${ECHO_MSG} ""
	@${ECHO_MSG} " For more details, run ${PREFIX}/sbin/dropbearkey -h"
	@${ECHO_MSG} ""

.include <bsd.port.mk>