5ab3b9bfd3
PR: 129961 Submitted by: Alex Kozlov <spam@rm-rf.kiev.ua> (maintainer)
42 lines
1000 B
Makefile
42 lines
1000 B
Makefile
# New ports collection makefile for: dropbear
|
|
# Date created: 20 August 2003
|
|
# Whom: Clement Laforet <sheepkiller@cultdeadsheep.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dropbear
|
|
PORTVERSION= 0.52
|
|
CATEGORIES= security ipv6
|
|
MASTER_SITES= http://matt.ucc.asn.au/dropbear/releases/
|
|
|
|
MAINTAINER= spam@rm-rf.kiev.ua
|
|
COMMENT= An SSH 2 server, designed to be usable in small memory environments
|
|
|
|
GNU_CONFIGURE= YES
|
|
USE_BZIP2= YES
|
|
USE_GMAKE= YES
|
|
|
|
OPTIONS= STATIC "Build statically" off
|
|
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_STATIC)
|
|
CONFIGURE_ENV= LDFLAGS=-static
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s,_PRIV_FILENAME \"/etc/,_PRIV_FILENAME \"${PREFIX}/etc/,g; \
|
|
s,/usr/bin/X11/,${LOCALBASE}/,g" ${WRKSRC}/options.h
|
|
@${REINPLACE_CMD} -e "s,sys/dir.h,dirent.h," ${WRKSRC}/*.[ch]
|
|
@${REINPLACE_CMD} -e "s,make clean,\$${MAKE} clean," \
|
|
${WRKSRC}/libtomcrypt/Makefile.in
|
|
|
|
post-install:
|
|
@${MKDIR} ${PREFIX}/etc/dropbear
|
|
@${ECHO_MSG} ""
|
|
|
|
.include <bsd.port.post.mk>
|