1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00
freebsd-ports/www/bozohttpd/Makefile
Alexey Dokuchaev 3c8a36012b - Remove redundant definitions of IPV6_DESC and [OPEN]SSL_DESC when closely
matching standard ones from `Mk/bsd.options.desc.mk'
- Rename couple of options to standard name or the one that better reflects
  their usage
2016-11-14 03:15:03 +00:00

60 lines
1.1 KiB
Makefile

# 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
SSL_USES= ssl
SSL_CFLAGS= -I${OPENSSLINC}
SSL_LDFLAGS= -L${OPENSSLLIB}
USES= cpe uidfix tar:bzip2
CPE_VENDOR= eterna
HTPASSWD_DESC= Enable htpassword 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}
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>