View | Details | Raw Unified | Return to bug 269548
Collapse All | Expand All

(-)b/www/libnghttp2/Makefile (-9 / +8 lines)
Lines 1-8 Link Here
1
PORTNAME=	nghttp2
1
PORTNAME=	nghttp2
2
PORTVERSION=	1.51.0
2
DISTVERSION=	1.52.0
3
PORTREVISION=	1
4
CATEGORIES=	www net
3
CATEGORIES=	www net
5
MASTER_SITES=	https://github.com/nghttp2/nghttp2/releases/download/v${PORTVERSION}/
4
MASTER_SITES=	https://github.com/${PORTNAME}/${PORTNAME}/releases/download/v${DISTVERSION}/
6
PKGNAMEPREFIX=	lib
5
PKGNAMEPREFIX=	lib
7
6
8
MAINTAINER=	sunpoet@FreeBSD.org
7
MAINTAINER=	sunpoet@FreeBSD.org
Lines 12-23 WWW= https://nghttp2.org/ Link Here
12
LICENSE=	MIT
11
LICENSE=	MIT
13
LICENSE_FILE=	${WRKSRC}/COPYING
12
LICENSE_FILE=	${WRKSRC}/COPYING
14
13
15
USES=		compiler:c++14-lang cpe libtool pathfix pkgconfig tar:xz
14
USES=		cmake compiler:c++14-lang cpe libtool pathfix pkgconfig tar:xz
16
17
CONFIGURE_ARGS=	--enable-lib-only
18
GNU_CONFIGURE=	yes
19
INSTALL_TARGET=	install-strip
20
USE_CXXSTD=	c++14
21
USE_LDCONFIG=	yes
15
USE_LDCONFIG=	yes
22
16
17
CMAKE_OFF=	ENABLE_DOC \
18
		ENABLE_HTTP3
19
CMAKE_ON=	ENABLE_LIB_ONLY \
20
		ENABLE_STATIC_LIB
21
23
.include <bsd.port.mk>
22
.include <bsd.port.mk>
(-)b/www/libnghttp2/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1671868303
1
TIMESTAMP = 1676359019
2
SHA256 (nghttp2-1.51.0.tar.xz) = 66aa76d97c143f42295405a31413e5e7d157968dad9f957bb4b015b598882e6b
2
SHA256 (nghttp2-1.52.0.tar.xz) = 3ea9f0439e60469ad4d39cb349938684ffb929dd7e8e06a7bffe9f9d21f8ba7d
3
SIZE (nghttp2-1.51.0.tar.xz) = 4115988
3
SIZE (nghttp2-1.52.0.tar.xz) = 1491732
(-)b/www/libnghttp2/files/patch-CMakeLists.txt (+20 lines)
Added Link Here
1
--- CMakeLists.txt.orig	2022-12-24 08:18:29 UTC
2
+++ CMakeLists.txt
3
@@ -503,7 +503,7 @@ include_directories(
4
 set(PKGDATADIR "${CMAKE_INSTALL_FULL_DATADIR}/${CMAKE_PROJECT_NAME}")
5
 set(PKGLIBDIR "${CMAKE_INSTALL_FULL_LIBDIR}/${CMAKE_PROJECT_NAME}")
6
 
7
-install(FILES README.rst DESTINATION "${CMAKE_INSTALL_DOCDIR}")
8
+#install(FILES README.rst DESTINATION "${CMAKE_INSTALL_DOCDIR}")
9
 
10
 add_subdirectory(lib)
11
 #add_subdirectory(lib/includes)
12
@@ -519,7 +519,7 @@ if(ENABLE_DOC)
13
   add_subdirectory(doc)
14
 endif()
15
 add_subdirectory(contrib)
16
-add_subdirectory(script)
17
+#add_subdirectory(script)
18
 add_subdirectory(bpf)
19
 
20
 
(-)a/www/libnghttp2/files/patch-Makefile.in (-21 lines)
Removed Link Here
1
--- Makefile.in.orig	2022-11-13 06:53:28 UTC
2
+++ Makefile.in
3
@@ -465,8 +465,7 @@ top_srcdir = @top_srcdir@
4
 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
5
 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
6
 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
7
-SUBDIRS = lib third-party src bpf examples python tests integration-tests \
8
-	doc contrib script
9
+SUBDIRS = lib
10
 
11
 
12
 # Now with python setuptools, make uninstall will leave many files we
13
@@ -474,7 +473,7 @@ SUBDIRS = lib third-party src bpf examples python test
14
 # distcheck rule.
15
 AM_DISTCHECK_CONFIGURE_FLAGS = --disable-python-bindings
16
 ACLOCAL_AMFLAGS = -I m4
17
-dist_doc_DATA = README.rst
18
+dist_doc_DATA =
19
 EXTRA_DIST = nghttpx.conf.sample proxy.pac.sample android-config android-env \
20
 	Dockerfile.android \
21
 	cmakeconfig.h.in \

Return to bug 269548