freebsd-ports/comms/tcpser/Makefile
Edward Tomasz Napierala d8b03f6b18 TCPSER turns a PC serial port into an emulated Hayes compatible modem that
uses TCP/IP for incoming and outgoing connections.  It can be used to allow
older applications and systems designed for modem use to operate on the
Internet.  TCPSER supports all standard Hayes commands, and understands
extended and vendor proprietary commands (though it does not implement
many of them).  TCPSER can be used for both inbound and outbound connections.

WWW:    http://www.jbrain.com/pub/linux/serial/
2008-09-24 15:45:45 +00:00

32 lines
745 B
Makefile

# New ports collection makefile for: tcpser
# Date created: 2008-09-24
# Whom: Edward Tomasz Napierala <trasz@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= tcpser
DISTVERSION= 1.0rc12
CATEGORIES= comms
MASTER_SITES= http://www.jbrain.com/pub/linux/serial/
MAINTAINER= trasz@FreeBSD.org
COMMENT= TCPSER turns serial port into an emulated Hayes compatible modem
WRKSRC= ${WRKDIR}/tcpser
USE_GMAKE= yes
CFLAGS+= ${PTHREAD_CFLAGS}
MAKE_ENV+= LDFLAGS=${PTHREAD_LIBS}
PORTDOCS= README CHANGES
PLIST_FILES= bin/tcpser
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/tcpser ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_MAN} ${WRKSRC}/README ${DOCSDIR}
${INSTALL_MAN} ${WRKSRC}/CHANGES ${DOCSDIR}
.endif
.include <bsd.port.mk>