freebsd-ports/comms/serialoverip/Makefile
Alexey Dokuchaev f979315702 - Unbreak (no more CSME sites), switch to sf.net (upstream) at the expense
of losing normal distfile name and having to set WRKSRC; contents remain
  the same (and so does the checksum)
- Define LICENSE (GPLv2); install README file as part of documentation
- Unmute building and installation commands while here
- Fix one warning revealed by Clang (missing bzero(3) prototype), yet two
  others remain)
- Transfer maintainership to the submitter

PR:		199322
Submitted by:	Chris Hutchinson
2015-04-12 16:30:12 +00:00

32 lines
726 B
Makefile

# Created by: Devon H. O'Dell <devon.odell@coyotepoint.com>
# $FreeBSD$
PORTNAME= serialoverip
PORTVERSION= 1.0
CATEGORIES= comms net
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}
DISTNAME= ${PORTNAME}
MAINTAINER= portmaster@BSDforge.com
COMMENT= Transport of serial interfaces over UDP/IP
LICENSE= GPLv2
USES= tar:tgz
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
PLIST_FILES= sbin/${PORTNAME}
PORTDOCS= README
OPTIONS_DEFINE= DOCS
do-build:
cd ${WRKSRC} && ${CC} ${CFLAGS} ${PORTNAME}.c -o ${PORTNAME}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>