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

(-)www/spdylay/Makefile (-5 / +4 lines)
Lines 2-14 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	spdylay
4
PORTNAME=	spdylay
5
PORTVERSION=	1.1.0
5
PORTVERSION=	1.2.2
6
PORTREVISION=	1
7
CATEGORIES=	www net
6
CATEGORIES=	www net
8
MASTER_SITES=	SF/${PORTNAME}/stable/${PORTNAME}-${PORTVERSION}
7
MASTER_SITES=	https://github.com/tatsuhiro-t/${PORTNAME}/releases/download/v${PORTVERSION}/
9
8
10
MAINTAINER=	sunpoet@FreeBSD.org
9
MAINTAINER=	sunpoet@FreeBSD.org
11
COMMENT=	SPDY protocol version 2 and 3 implementation in C
10
COMMENT=	SPDY protocol version 2, 3 and 3.1 implementation in C
12
11
13
LICENSE=	MIT
12
LICENSE=	MIT
14
13
Lines 36-42 Link Here
36
.endif
35
.endif
37
36
38
post-build:
37
post-build:
39
	@${STRIP_CMD} ${WRKSRC}/lib/.libs/libspdylay.so.6
38
	@${STRIP_CMD} ${WRKSRC}/lib/.libs/libspdylay.so.7
40
39
41
post-install:
40
post-install:
42
	@${INSTALL_SCRIPT} ${WRKSRC}/examples/spdycli ${STAGEDIR}${PREFIX}/bin/
41
	@${INSTALL_SCRIPT} ${WRKSRC}/examples/spdycli ${STAGEDIR}${PREFIX}/bin/
(-)www/spdylay/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (spdylay-1.1.0.tar.xz) = f6382926fc42031bc01b9402be606356430ec122db0ff9bbeac895cc84085ec7
1
SHA256 (spdylay-1.2.2.tar.xz) = 010e32f657deda922859293b5117db8a2c4f4b5d8213b1a96f36de55c32ec582
2
SIZE (spdylay-1.1.0.tar.xz) = 411900
2
SIZE (spdylay-1.2.2.tar.xz) = 414456
(-)www/spdylay/pkg-descr (-6 / +6 lines)
Lines 1-12 Link Here
1
Spdylay - SPDY C Library
1
Spdylay - SPDY C Library
2
2
3
This is an experimental implementation of Google's SPDY protocol in C. This
3
This is an experimental implementation of Google's SPDY protocol in C. This
4
library provides SPDY version 2 and 3 framing layer implementation. It does not
4
library provides SPDY version 2, 3 and 3.1 framing layer implementation. It
5
perform any I/O operations. When the library needs them, it calls the callback
5
does not perform any I/O operations. When the library needs them, it calls the
6
functions provided by the application. It also does not include any event
6
callback functions provided by the application. It also does not include any
7
polling mechanism, so the application can freely choose the way of handling
7
event polling mechanism, so the application can freely choose the way of
8
events. This library code does not depend on any particular SSL library (except
8
handling events. This library code does not depend on any particular SSL
9
for example programs which depend on OpenSSL 1.0.1 or later).
9
library (except for example programs which depend on OpenSSL 1.0.1 or later).
10
10
11
This project also develops SPDY client, server and proxy on top of Spdylay
11
This project also develops SPDY client, server and proxy on top of Spdylay
12
library.
12
library.
(-)www/spdylay/pkg-plist (-1 / +1 lines)
Lines 8-13 Link Here
8
lib/libspdylay.a
8
lib/libspdylay.a
9
lib/libspdylay.la
9
lib/libspdylay.la
10
lib/libspdylay.so
10
lib/libspdylay.so
11
lib/libspdylay.so.6
11
lib/libspdylay.so.7
12
libdata/pkgconfig/libspdylay.pc
12
libdata/pkgconfig/libspdylay.pc
13
@dirrm include/spdylay
13
@dirrm include/spdylay

Return to bug 185634