mirror of
https://git.freebsd.org/ports.git
synced 2025-06-23 05:30:31 -04:00
cpp-netlib is a collection of network related routines/implementations geared towards providing a robust cross-platform networking library. cpp-netlib offers the following implementations: * Common Message Type -- A generic message type which can be used to encapsulate and store message related information, used by all network implementations as the primary means of data exchange. * Network protocol message parsers -- A collection of parsers which generate message objects from strings. * Adapters and Wrappers -- A collection of Adapters and wrappers aimed towards making the message type STL friendly. * Network protocol client and server implementations -- A collection of network protocol implementations that include embeddable client and server types. WWW: https://github.com/cpp-netlib/cpp-netlib/
20 lines
415 B
Makefile
20 lines
415 B
Makefile
# Created by: Ryan Steinmetz <zi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cpp-netlib
|
|
DISTVERSION= 0.11.1
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= zi@FreeBSD.org
|
|
COMMENT= Cross-platform, standards compliant networking library
|
|
|
|
LICENSE= BSL
|
|
|
|
BUILD_DEPENDS= boost-libs>0:${PORTSDIR}/devel/boost-libs
|
|
|
|
USES= cmake:outsource
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ${PORTNAME}
|
|
GH_TAGNAME= ${PORTNAME}-${PORTVERSION}-final
|
|
|
|
.include <bsd.port.mk>
|