1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-30 10:38:37 +00:00
freebsd-ports/www/bozohttpd/Makefile
Baptiste Daroussin a5e990a2bb - Update to 20100621
- Add license

PR:		ports/149113
Submitted by:	Janos Mohacsi <janos.mohacsi _at_ bsd.hu> (maintainer)
Approved by:	jadawin@ (co-mentor)
2010-08-03 06:15:00 +00:00

58 lines
1.0 KiB
Makefile

# New ports collection makefile for: bozohttpd
# Date created: 21.03.2002
# Whom: Janos.Mohacsi@bsd.hu
#
# $FreeBSD$
#
PORTNAME= bozohttpd
PORTVERSION= 20100621
CATEGORIES= www ipv6
MASTER_SITES= http://www.eterna.com.au/bozohttpd/ \
${MASTER_SITE_NETBSD}
MAINTAINER= janos.mohacsi@bsd.hu
COMMENT= The bozotic HTTP server
LICENSE= BSD
USE_BZIP2= YES
USE_RC_SUBR= bozohttpd
#options handling
OPTIONS= HTPASSWD_SUPPORT "Enable htpassord support" off \
SSL "Enable SSL support" on \
CGI "Enable CGI support" on
#make happy portlint
.if defined(WITHOUT_SSL)
.else
USE_OPENSSL= yes
.endif
.include <bsd.port.pre.mk>
.if defined(WITH_HTPASSWD_SUPPORT)
CFLAGS+= -DDO_HTPASSWD
MAKE_ARGS+= 'LDFLAGS+= -lcrypt'
.endif
.if defined(WITHOUT_SSL)
CFLAGS+= -DNO_SSL_SUPPORT
.else
#USE_OPENSSL= yes
CFLAGS+= -UNO_SSL_SUPPORT
.endif
.if defined(WITHOUT_CGI)
CFLAGS+= -DNO_CGIBIN_SUPPORT
.else
CFLAGS+= -UNO_CGIBIN_SUPPORT
.endif
MAN8= bozohttpd.8
MANCOMPRESSED= maybe
PLIST_FILES= libexec/bozohttpd
.include <bsd.port.post.mk>