1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00
freebsd-ports/comms/remserial/Makefile
Emanuel Haupt c4c14fd156 - Use DOC instead of NOPORTDOCS
- Pacify portlint
- Convert header
2013-01-15 13:40:28 +00:00

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>