1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-11 02:50:24 +00:00
freebsd-ports/security/sst/Makefile
Mikhail Teterin fb0ad26065 Only depend on net/netcat, when /usr/bin/netcat is not uvailable (either
because the present FreeBSD is too old, or because we are building on,
say, DragonFlyBSD).

Fix up most compiler warnings, while I'm here.

Bump PORTREVISION.

PR:		ports/179752
Submitted by:	John Marino
2013-06-21 03:10:20 +00:00

30 lines
573 B
Makefile

# New ports collection makefile for: sst
# Date created: Nov 7, 2000
# Whom: Mikhail Teterin <mi@aldan.algebra.com>
#
# $FreeBSD$
#
PORTNAME= sst
PORTVERSION= 1.0
PORTREVISION= 1
CATEGORIES= security
MASTER_SITES= http://utcc.utoronto.ca/~pkern/stuff/sst/
DISTNAME= ${PORTNAME}
MAINTAINER= mi@aldan.algebra.com
COMMENT= A simple SSL tunneling tool (uses netcat)
.if !exists(/usr/bin/nc)
RUN_DEPENDS= netcat:${PORTSDIR}/net/netcat
.endif
USE_OPENSSL= YES
MAN1= sst.1
MANCOMPRESSED= maybe
PLIST_FILES= sbin/sst
MAKEFILE= ${FILESDIR}/Makefile
.include <bsd.port.mk>