summaryrefslogtreecommitdiffstats
path: root/www/bozohttpd/Makefile
blob: ec1f0334a0cd2dd05ced28282f136817efb8e71d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Created by: Janos.Mohacsi@bsd.hu
# $FreeBSD$

PORTNAME=	bozohttpd
PORTVERSION=	20130711
CATEGORIES=	www ipv6
MASTER_SITES=	http://www.eterna.com.au/bozohttpd/ \
		NETBSD

MAINTAINER=	jmohacsi@bsd.hu
COMMENT=	The bozotic HTTP server

LICENSE=	BSD2CLAUSE

USE_RC_SUBR=	bozohttpd

#options handling
OPTIONS_DEFINE=		HTPASSWD SSL CGI
OPTIONS_DEFAULT=	SSL CGI

USES=		cpe uidfix tar:bzip2
CPE_VENDOR=	eterna

HTPASSWD_DESC=		Enable htpassword support
SSL_DESC=		Enable SSL support
CGI_DESC=		Enable CGI support

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MHTPASSWD}
MAKE_ARGS+=	'COPTS+=	-DDO_HTPASSWD' \
		'LDFLAGS+= -lcrypt'
.else
MAKE_ARGS+=	'COPTS+=	-UDO_HTPASSWD'
.endif

.if ${PORT_OPTIONS:MSSL}
USE_OPENSSL=	yes
MAKE_ARGS+=	'COPTS+=	-UNO_SSL_SUPPORT'
.else
MAKE_ARGS+=	'COPTS+=	-DNO_SSL_SUPPORT' \
		'CRYPTOLIBS=' \
		'CRYPTODEPS='
.endif

.if ${PORT_OPTIONS:MCGI}
MAKE_ARGS+=	'COPTS+=	-UNO_CGIBIN_SUPPORT'
.else
MAKE_ARGS+=	'COPTS+=	-DNO_CGIBIN_SUPPORT'
.endif

PLIST_FILES=	libexec/bozohttpd \
		man/man8/bozohttpd.8.gz
post-patch:
	@${REINPLACE_CMD} -e 's|@@PREFIX@@|${PREFIX}|g' ${WRKSRC}/bozohttpd.8

.include <bsd.port.mk>
OpenPOWER on IntegriCloud