View | Details | Raw Unified | Return to bug 200180 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-2 / +21 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	drood
4
PORTNAME=	drood
5
PORTVERSION=	3.25
5
PORTVERSION=	4.3
6
CATEGORIES=	www
6
CATEGORIES=	www
7
MASTER_SITES=	http://www.mammothcheese.ca/
7
MASTER_SITES=	http://www.mammothcheese.ca/
8
8
Lines 9-12 Link Here
9
MAINTAINER=	jimmy@mammothcheese.ca
9
MAINTAINER=	jimmy@mammothcheese.ca
10
COMMENT=	Lightweight kqueue-based http/1.1 server
10
COMMENT=	Lightweight kqueue-based http/1.1 server
11
11
12
.include <bsd.port.mk>
12
LICENSE=	BSD3CLAUSE
13
LICENSE_FILE=	${WRKSRC}/LICENSE
14
15
USE_SQLITE=	3
16
USE_OPENSSL=	yes
17
18
PLIST_FILES=	bin/drood \
19
		man/man8/drood.8.gz \
20
		etc/rc.d/drood \
21
		etc/drood/types.tab \
22
		etc/drood/types.tab.dist
23
24
.include <bsd.port.pre.mk>
25
26
.if ${OSVERSION} < 1000000
27
BUILD_DEPENDS+=	${LOCALBASE}/lib/libssl.so:${PORTSDIR}/security/openssl
28
RUN_DEPENDS+=	${LOCALBASE}/lib/libssl.so:${PORTSDIR}/security/openssl
29
.endif
30
31
.include <bsd.port.post.mk>
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (drood-3.25.tar.gz) = 4717e15e14af948fa89b8ee27c036679c08d64de393ab72d27a9ffcc5c4b90d9
1
SHA256 (drood-4.3.tar.gz) = 9bfa4818c6a0bfea49ec32450a5923e9387263cb4fb17430fb70ff1bc91bd529
2
SIZE (drood-3.25.tar.gz) = 61146
2
SIZE (drood-4.3.tar.gz) = 53744
(-)pkg-descr (-3 / +2 lines)
Lines 1-7 Link Here
1
Drood is a lightweight, partially-compliant HTTP/1.1 server, intended as an
1
Drood is a lightweight, partially-compliant HTTP/1.1 server, intended as an
2
alternative to more complex web servers for websites where the server
2
alternative to more complex web servers for websites where the server
3
requirements are simple.  Drood supports name-based virtual hosting, CGI
3
requirements are simple.  Drood supports IPv4/IPv6, name-based virtual
4
and SCGI, local WebSocket forwarding, gzipped content-encoding for static
4
hosting, TLS, SCGI, and WebSockets.
5
resources, and will service both IPv4 and IPv6 connections.
6
5
7
WWW: http://www.mammothcheese.ca/
6
WWW: http://www.mammothcheese.ca/
(-)pkg-plist (-5 lines)
Lines 1-5 Link Here
1
bin/drood
2
man/man8/drood.8.gz
3
etc/rc.d/drood
4
etc/drood/types.tab
5
etc/drood/types.tab.dist

Return to bug 200180