1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-17 08:01:36 +00:00
freebsd-ports/www/mohawk/Makefile
Rene Ladan 32cf9e1bf6 Return Neels ports to the pool on his request.
Submitted by:	neelc@neelc.org (former maintainer) via freebsd-ports
2020-03-28 11:26:58 +00:00

44 lines
1.0 KiB
Makefile

# $FreeBSD$
PORTNAME= mohawk
PORTVERSION= 2.0.20
CATEGORIES= www
MASTER_SITES= http://fossil.bsdsx.fr/mohawk/tarball/ \
http://fossil.etoilebsd.net/mohawk/tarball/
DISTFILES= ${DISTNAME}.tar.gz?uuid=${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Simple and lightweight HTTP daemon
LICENSE= BSD2CLAUSE
LIB_DEPENDS= libevent.so:devel/libevent
PLIST_FILES+= bin/mhtpasswd \
man/man5/mohawk.conf.5.gz \
man/man8/mhtpasswd.8.gz \
man/man8/mohawk.8.gz \
sbin/mohawk \
etc/mohawk.conf.sample
USES= uidfix
PORTEXAMPLES= *
USE_RC_SUBR= mohawk
CFLAGS+= -I${LOCALBASE}/include/event2/compat -I${LOCALBASE}/include
OPTIONS_DEFINE= EXAMPLES
.include <bsd.port.options.mk>
post-install:
${INSTALL_DATA} ${WRKSRC}/examples/minimal.conf ${STAGEDIR}${PREFIX}/etc/mohawk.conf.sample
${INSTALL_SCRIPT} ${WRKSRC}/mhtpasswd.sh ${STAGEDIR}${PREFIX}/bin/mhtpasswd
.if ${PORT_OPTIONS:MEXAMPLES}
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/examples/*.conf ${STAGEDIR}${EXAMPLESDIR}
.endif
.include <bsd.port.mk>