diff options
author | adam <adam@pkgsrc.org> | 2015-10-17 09:56:40 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2015-10-17 09:56:40 +0000 |
commit | 7a7308cc6681a65378caedb345ea66bc963357b2 (patch) | |
tree | 5e2a94fa9e83bdc3a7f92a188fdc37b670ab33ee /www | |
parent | 8aa013b32a0938276c11d1d278d1b9cecb06bdf3 (diff) | |
download | pkgsrc-7a7308cc6681a65378caedb345ea66bc963357b2.tar.gz |
Changes 1.3.4:
* Make traditional init script fail if new config file is broken
* nghttpx-logrotate: Don't use killall since we have multiple processes
* nghttpx: Fix improper signal handling
Diffstat (limited to 'www')
-rw-r--r-- | www/nghttp2/Makefile | 25 | ||||
-rw-r--r-- | www/nghttp2/distinfo | 10 | ||||
-rw-r--r-- | www/nghttp2/options.mk | 6 |
3 files changed, 23 insertions, 18 deletions
diff --git a/www/nghttp2/Makefile b/www/nghttp2/Makefile index c6029c10f34..2ad55863ecd 100644 --- a/www/nghttp2/Makefile +++ b/www/nghttp2/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.1 2015/06/03 11:53:53 fhajny Exp $ +# $NetBSD: Makefile,v 1.2 2015/10/17 09:56:40 adam Exp $ -DISTNAME= nghttp2-1.0.1 +DISTNAME= nghttp2-1.3.4 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_GITHUB:=tatsuhiro-t/} +EXTRACT_SUFX= .tar.xz MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://nghttp2.org/ @@ -11,17 +12,19 @@ LICENSE= mit GITHUB_RELEASE= v${PKGVERSION_NOREV} -GNU_CONFIGURE= yes -USE_LANGUAGES= c c++ -USE_LIBTOOL= yes -USE_TOOLS+= gmake pkg-config - -.include "options.mk" - +USE_LANGUAGES= c c++ +USE_LIBTOOL= yes +USE_TOOLS+= gmake pkg-config +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --disable-examples +CONFIGURE_ARGS+= --disable-python-bindings PKGCONFIG_OVERRIDE+= lib/libnghttp2.pc.in PKGCONFIG_OVERRIDE+= src/libnghttp2_asio.pc.in -CONFIGURE_ARGS+= --disable-examples -CONFIGURE_ARGS+= --disable-python-bindings +REPLACE_PYTHON+= script/fetch-ocsp-response + +.include "options.mk" +.include "../../lang/python/application.mk" +.include "../../textproc/libxml2/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/www/nghttp2/distinfo b/www/nghttp2/distinfo index e6962eb2e01..069a7421217 100644 --- a/www/nghttp2/distinfo +++ b/www/nghttp2/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.1 2015/06/03 11:53:53 fhajny Exp $ +$NetBSD: distinfo,v 1.2 2015/10/17 09:56:40 adam Exp $ -SHA1 (nghttp2-1.0.1.tar.gz) = 6dc5a07e8f5a0351ca388e5d30c0978fe0530fee -RMD160 (nghttp2-1.0.1.tar.gz) = e6b7fa4d2502506b7cef6967b4e88a490a5e238d -Size (nghttp2-1.0.1.tar.gz) = 1350918 bytes -SHA1 (patch-configure) = 7a776cad97a6590d3bbef93ffee6815341719f46 +SHA1 (nghttp2-1.3.4.tar.xz) = d7d5ff650ffcced862db7ef0e83c1cc72b420740 +RMD160 (nghttp2-1.3.4.tar.xz) = e04fc798e99f63c3a325cbe1242e8c75620c4c9b +SHA512 (nghttp2-1.3.4.tar.xz) = 5130ea9e68f85d7c626f585b20c4cd9af22de2c3ecc70f811197f07f00b94d135b645e9437909a60923fa5c24ef0a2d3fd7b7b6334653cdb2a627f5b5a0c80db +Size (nghttp2-1.3.4.tar.xz) = 1271920 bytes diff --git a/www/nghttp2/options.mk b/www/nghttp2/options.mk index 8a154867c07..4df1bc3191b 100644 --- a/www/nghttp2/options.mk +++ b/www/nghttp2/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.1 2015/06/03 11:53:53 fhajny Exp $ +# $NetBSD: options.mk,v 1.2 2015/10/17 09:56:40 adam Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.nghttp2 PKG_SUPPORTED_OPTIONS= nghttp2-asio nghttp2-tools @@ -16,7 +16,9 @@ PLIST_VARS+= asio tools GCC_REQD+= 4.8 CONFIGURE_ARGS+= --enable-asio-lib CONFIGURE_ARGS+= --with-boost=${BUILDLINK_PREFIX.boost-libs} -CONFIGURE_ARGS+= --with-boost-asio --with-boost-system --with-boost-thread +CONFIGURE_ARGS+= --with-boost-asio +CONFIGURE_ARGS+= --with-boost-system +CONFIGURE_ARGS+= --with-boost-thread PLIST.asio= yes .include "../../devel/boost-libs/buildlink3.mk" .include "../../security/openssl/buildlink3.mk" |