mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
4fd010a50c
documented in CVE-2017-17663. Reviewed by: matthew (mentor) Approved by: matthew (mentor) MFH: 2018Q1 Security: f5524753-67b1-4c88-8114-29c2d258b383 Differential Revision: https://reviews.freebsd.org/D14218
42 lines
1.3 KiB
Makefile
42 lines
1.3 KiB
Makefile
# Created by: Stefan Esser <se@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mini_httpd
|
|
PORTVERSION= 1.28
|
|
CATEGORIES= www ipv6
|
|
MASTER_SITES= https://www.acme.com/software/mini_httpd/
|
|
|
|
MAINTAINER= leres@FreeBSD.org
|
|
COMMENT= Small HTTP server with support for GET, HEAD, POST, CGI, SSL, IPv6
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
USES= cpe ssl
|
|
CPE_VENDOR= acme
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's/htpasswd/${PORTNAME}-htpasswd/' \
|
|
${WRKSRC}/htpasswd.1
|
|
@${REINPLACE_CMD} -e 's/\(htpasswd(1)\)/${PORTNAME}-\1/' \
|
|
${WRKSRC}/${PORTNAME}.8
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/etc/periodic/daily
|
|
${INSTALL_PROGRAM} ${WRKSRC}/mini_httpd ${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/htpasswd \
|
|
${STAGEDIR}${PREFIX}/sbin/${PORTNAME}-htpasswd
|
|
${INSTALL_SCRIPT} ${WRKSRC}/scripts/500.mini_httpd-rotate \
|
|
${STAGEDIR}${PREFIX}/etc/periodic/daily
|
|
${INSTALL_SCRIPT} ${WRKSRC}/scripts/mini_httpd_wrapper \
|
|
${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/scripts/mini_httpd.sh \
|
|
${STAGEDIR}${PREFIX}/etc/rc.d/mini_httpd
|
|
${INSTALL_MAN} ${WRKSRC}/htpasswd.1 \
|
|
${STAGEDIR}${MANPREFIX}/man/man1/${PORTNAME}-htpasswd.1
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 \
|
|
${STAGEDIR}${MANPREFIX}/man/man8
|
|
${INSTALL_DATA} ${WRKSRC}/mini_httpd.cnf \
|
|
${STAGEDIR}${PREFIX}/etc/mini_httpd.cnf.sample
|
|
|
|
.include <bsd.port.mk>
|