blob: 60d77d94bba8d9fcfd5ac3224e7c9c6baa409793 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# New ports collection makefile for: remserial
# Date created: 05 Jan 2011
# Whom: 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}\"
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${DOCSDIR}
.endif
.include <bsd.port.mk>
|