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

(-)b/net/libngtcp2/Makefile (-8 / +12 lines)
Lines 1-7 Link Here
1
PORTNAME=	ngtcp2
1
PORTNAME=	ngtcp2
2
PORTVERSION=	1.4.0
2
DISTVERSION=	1.4.0
3
CATEGORIES=	net
3
CATEGORIES=	net
4
MASTER_SITES=	https://github.com/ngtcp2/ngtcp2/releases/download/v${PORTVERSION}/
4
MASTER_SITES=	https://github.com/${PORTNAME}/${PORTNAME}/releases/download/v${DISTVERSION}/
5
PKGNAMEPREFIX=	lib
5
PKGNAMEPREFIX=	lib
6
6
7
MAINTAINER=	sunpoet@FreeBSD.org
7
MAINTAINER=	sunpoet@FreeBSD.org
Lines 12-23 WWW= https://nghttp2.org/ngtcp2/ \ Link Here
12
LICENSE=	MIT
12
LICENSE=	MIT
13
LICENSE_FILE=	${WRKSRC}/COPYING
13
LICENSE_FILE=	${WRKSRC}/COPYING
14
14
15
USES=		compiler:c++14-lang libtool pathfix pkgconfig tar:xz
15
USES=		cmake pathfix tar:xz
16
17
CONFIGURE_ARGS=	--enable-lib-only --with-jemalloc
18
GNU_CONFIGURE=	yes
19
INSTALL_TARGET=	install-strip
20
USE_CXXSTD=	c++14
21
USE_LDCONFIG=	yes
16
USE_LDCONFIG=	yes
22
17
18
TEST_TARGET=	check
19
20
# Always disabled due to lack of QUIC support which is in 3.2
21
CMAKE_OFF=	ENABLE_OPENSSL
22
CMAKE_ON=	CMAKE_DISABLE_FIND_PACKAGE_Libbrotlidec \
23
		CMAKE_DISABLE_FIND_PACKAGE_Libbrotlienc\
24
		CMAKE_DISABLE_FIND_PACKAGE_Libev \
25
		CMAKE_DISABLE_FIND_PACKAGE_Libnghttp3
26
23
.include <bsd.port.mk>
27
.include <bsd.port.mk>
(-)b/net/libngtcp2/distinfo (-1 / +1 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1713033312
1
TIMESTAMP = 1715405325
2
SHA256 (ngtcp2-1.4.0.tar.xz) = b5d1433b9f5c06ce249e1e390e97dcfa49bf7ada5cb7c8bed8e6cd4feaf1ca4a
2
SHA256 (ngtcp2-1.4.0.tar.xz) = b5d1433b9f5c06ce249e1e390e97dcfa49bf7ada5cb7c8bed8e6cd4feaf1ca4a
3
SIZE (ngtcp2-1.4.0.tar.xz) = 618480
3
SIZE (ngtcp2-1.4.0.tar.xz) = 618480
(-)a/net/libngtcp2/files/patch-Makefile.in (-13 lines)
Removed Link Here
1
--- Makefile.in.orig	2022-01-16 12:35:06 UTC
2
+++ Makefile.in
3
@@ -425,8 +425,8 @@ 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 tests doc $(am__append_1) $(am__append_2)
8
-dist_doc_DATA = README.rst
9
+SUBDIRS = lib $(am__append_1)
10
+dist_doc_DATA =
11
 ACLOCAL_AMFLAGS = -I m4
12
 EXTRA_DIST = \
13
 	cmakeconfig.h.in \

Return to bug 278906