blob: 05f1b8b0b83bed1ac8af5b638006404af2152acd (
plain) (
blame)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= nghttp2
PORTVERSION= 1.15.0
DISTVERSIONPREFIX= v
CATEGORIES= www net
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= HTTP/2.0 C Library
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/COPYING
OPTIONS_DEFINE= APP SPDY ASIO DOCS HPACK
OPTIONS_DEFAULT=APP HPACK SPDY
OPTIONS_SUB= yes
USE_RC_SUBR= nghttpx
USE_GITHUB= yes
CONFIGURE_ARGS= --disable-python-bindings \
--disable-examples
CONFIGURE_ENV= OPENSSL_CFLAGS="-I${OPENSSLINC}" \
OPENSSL_LIBS="-L${OPENSSLLIB} -lcrypto -lssl" \
ZLIB_CFLAGS="-I${INCLUDEDIR}" \
ZLIB_LIBS="-L${LIBDIR} -lz"
GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip
USE_CXXSTD= c++11
USE_LDCONFIG= yes
USES= autoreconf compiler:c++11-lib gmake libtool localbase pathfix pkgconfig ssl
PORTDATA= fetch-ocsp-response
PORTDOCS= *
APP_DESC= Build nghttp, nghttpd, nghttpx, h2load
APP_BUILD_DEPENDS= libev>=4.15:devel/libev
APP_LIB_DEPENDS= libev.so:devel/libev
APP_CONFIGURE_ENABLE= app
APP_USE= GNOME=libxml2
APP_CONFIGURE_OFF= --without-libxml2
ASIO_BUILD_DEPENDS= boost-libs>=1.54.0:devel/boost-libs
ASIO_CONFIGURE_OFF= --with-boost=no
ASIO_CONFIGURE_ON= --enable-asio-lib --with-boost-asio --with-boost-system --with-boost-thread
ASIO_LIB_DEPENDS= libboost_thread.so:devel/boost-libs
ASIO_RUN_DEPENDS= boost-libs>=1.54.0:devel/boost-libs
HPACK_CONFIGURE_ENABLE= hpack-tools
HPACK_LIB_DEPENDS= libjansson.so:devel/jansson
SPDY_DESC= Enable SPDY in nghttpx and h2load
SPDY_BUILD_DEPENDS= spdylay>=1.3.0:www/spdylay
SPDY_LIB_DEPENDS= libspdylay.so:www/spdylay
SPDY_IMPLIES= APP
SPDY_CONFIGURE_WITH= spdylay
.include <bsd.port.pre.mk>
.if ${OSVERSION} <= 1000000
CPPFLAGS+= -D_GLIBCXX_USE_C99
.endif
.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000
CONFIGURE_ARGS+=--with-jemalloc
.endif
post-install:
${MKDIR} ${STAGEDIR}${PREFIX}/etc/nghttpx
${INSTALL_DATA} ${FILESDIR}/nghttpx.conf.sample ${STAGEDIR}${PREFIX}/etc/nghttpx/nghttpx.conf.sample
.include <bsd.port.post.mk>
|