mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-18 08:02:48 +00:00
01e07ac156
From ChangeLog: https://github.com/lsalzman/enet/blob/master/ChangeLog * quicker RTT initialization * use fractional precision for RTT calculations * fixes for packet throttle with low RTT variance * miscellaneous socket bug fixes While here, reorder USE_LDCONFIG. PR: 248083 Submitted by: marcel@herrbischoff.com MFH: 2020Q3 (runtime fix)
30 lines
556 B
Makefile
30 lines
556 B
Makefile
# Created by: Stanislav Sedov <stas@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= enet
|
|
PORTVERSION= 1.3.15
|
|
PORTEPOCH= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://enet.bespin.org/download/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Simple and robust communication library based on UDP
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= pathfix libtool
|
|
USE_LDCONFIG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install-DOCS-on:
|
|
@(cd ${WRKSRC}/docs && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|