1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-15 03:14:23 +00:00
freebsd-ports/net/enet/Makefile
Stanislav Sedov e52626906f - Add port for net/enet
ENet's purpose is to provide a relatively thin, simple and robust network
communication layer on top of UDP (User Datagram Protocol). The primary feature
it provides is optional reliable, in-order delivery of packets.

Author: Lee Salzman
WWW:    http://enet.cubik.org

Approved by:	sem (mentor)
2006-09-23 20:03:11 +00:00

28 lines
601 B
Makefile

# New ports collection makefile for: enet
# Date created: 2006-09-23
# Whom: Stanislav Sedov <stas@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= enet
PORTVERSION= 20040118
CATEGORIES= net
MASTER_SITES= http://enet.cubik.org/download/
DISTNAME= ${PORTNAME}
MAINTAINER= stas@FreeBSD.org
COMMENT= Simple and robust communication library based on UDP
GNU_CONFIGURE= yes
DOCS= api.txt tutorial.txt design.txt docs/FAQ.dox docs/design.dox \
docs/tutorial.dox
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${DOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/
.endif
.include <bsd.port.mk>