mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
[new port] security/dropbear: a lightweight SSH2 server
Dropbear is an SSH 2 server, designed to be usable in small memory environments. It supports: * Main features of SSH 2 protocol * Implements X11 forwarding, and authentication-agent forwarding for OpenSSH clients * Compatible with OpenSSH ~/.ssh/authorized_keys public key authentication WWW: http://matt.ucc.asn.au/dropbear/dropbear.html PR: ports/55795 Submitted by: Clement Laforet <sheepkiller@cultdeadsheep.org>
This commit is contained in:
parent
7c7f149cf5
commit
785f2e6305
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=88769
@ -56,6 +56,7 @@
|
||||
SUBDIR += digest
|
||||
SUBDIR += dirmngr
|
||||
SUBDIR += donkey
|
||||
SUBDIR += dropbear
|
||||
SUBDIR += drweb
|
||||
SUBDIR += drweb-postfix
|
||||
SUBDIR += drweb-qmail
|
||||
|
39
security/dropbear/Makefile
Normal file
39
security/dropbear/Makefile
Normal file
@ -0,0 +1,39 @@
|
||||
# New ports collection makefile for: dropbear
|
||||
# Date created: 20 August 2003
|
||||
# Whom: Clement Laforet <sheepkiller@cultdeadsheep.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= dropbear
|
||||
PORTVERSION= 0.36
|
||||
CATEGORIES= security ipv6
|
||||
MASTER_SITES= http://matt.ucc.asn.au/dropbear/
|
||||
|
||||
MAINTAINER= sheepkiller@cultdeadsheep.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(IS_STATIC)
|
||||
CONFIGURE_ENV= LDFLAGS=-static
|
||||
.endif
|
||||
|
||||
BIN= dropbear dropbearkey dropbearconvert
|
||||
|
||||
post-configure:
|
||||
@${REINPLACE_CMD} -e "s,/etc/,${PREFIX}/etc/,g" ${WRKSRC}/options.h
|
||||
@${REINPLACE_CMD} -e "s,/usr/bin/X11/,${X11BASE}/,g" ${WRKSRC}/options.h
|
||||
|
||||
do-install:
|
||||
.for bin in ${BIN}
|
||||
@${INSTALL_PROGRAM} ${WRKSRC}/${bin} ${PREFIX}/bin
|
||||
.endfor
|
||||
.if !defined(NOPORTDOC)
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
@${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
1
security/dropbear/distinfo
Normal file
1
security/dropbear/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (dropbear-0.36.tar.gz) = 37b38670235c4cdd37e3833919bcf53f
|
10
security/dropbear/pkg-descr
Normal file
10
security/dropbear/pkg-descr
Normal file
@ -0,0 +1,10 @@
|
||||
Dropbear is an SSH 2 server, designed to be usable in small memory environments.
|
||||
It supports:
|
||||
|
||||
* Main features of SSH 2 protocol
|
||||
* Implements X11 forwarding, and authentication-agent forwarding
|
||||
for OpenSSH clients
|
||||
* Compatible with OpenSSH ~/.ssh/authorized_keys public key
|
||||
authentication
|
||||
|
||||
WWW: http://matt.ucc.asn.au/dropbear/dropbear.html
|
5
security/dropbear/pkg-plist
Normal file
5
security/dropbear/pkg-plist
Normal file
@ -0,0 +1,5 @@
|
||||
bin/dropbear
|
||||
bin/dropbearkey
|
||||
bin/dropbearconvert
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
Loading…
Reference in New Issue
Block a user