mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
c4c14fd156
- Pacify portlint - Convert header
33 lines
664 B
Makefile
33 lines
664 B
Makefile
# Created by: Emanuel Haupt <ehaupt@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= remserial
|
|
PORTVERSION= 1.4
|
|
CATEGORIES= comms
|
|
MASTER_SITES= http://lpccomp.bc.ca/remserial/ \
|
|
CRITICAL
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= Bridge between a TCP/IP network port and a character-oriented device
|
|
|
|
USE_DOS2UNIX= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
PLIST_FILES= bin/remserial
|
|
PORTDOCS= README.txt
|
|
|
|
CFLAGS+= -DOSVERSION=\"${OSVERSION}\"
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|