2b677bdf59
* A new mode allows you to directly connect an executed program to the other side of the relay. * A couple of minor improvements and corrections have been made. PR: 54284 Submitted by: Kirill Ponomarew <ponomarew@oberon.net>
36 lines
686 B
Makefile
36 lines
686 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: socat
|
|
# Date created: May 14, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= socat
|
|
PORTVERSION= 1.3.2.0
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.dest-unreach.org/socat/download/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Multipurpose relay and more
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:R:R}
|
|
USE_BZIP2= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
MAKE_ARGS= CCOPT="${CFLAGS}"
|
|
|
|
MAN1= socat.1
|
|
|
|
DOCS= EXAMPLES README SECURITY
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for f in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|