Index: head/www/mini_httpd/Makefile =================================================================== --- head/www/mini_httpd/Makefile (revision 399972) +++ head/www/mini_httpd/Makefile (revision 399973) @@ -1,38 +1,37 @@ # Created by: se # $FreeBSD$ PORTNAME= mini_httpd -PORTVERSION= 1.21 -PORTREVISION= 1 +PORTVERSION= 1.22 CATEGORIES= www ipv6 MASTER_SITES= http://www.acme.com/software/mini_httpd/ MAINTAINER= ports@FreeBSD.org COMMENT= Small HTTP server with support for GET, HEAD, POST, CGI, SSL, IPv6 LICENSE= BSD2CLAUSE USES= cpe CPE_VENDOR= acme MAKE_ARGS= SSL_TREE="${OPENSSLBASE}" USE_OPENSSL= yes post-patch: @${REINPLACE_CMD} -e 's/htpasswd/${PORTNAME}-htpasswd/g' ${WRKSRC}/htpasswd.1 @${REINPLACE_CMD} -e 's/\(htpasswd(1)\)/${PORTNAME}-\1/g' ${WRKSRC}/${PORTNAME}.8 @${REINPLACE_CMD} \ -e '/^CFLAGS =/s|=|= ${CFLAGS}|' \ -e '/^LDFLAGS =/s|=|= ${LDFLAGS}|' ${WRKSRC}/Makefile 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 ${INSTALL_MAN} ${WRKSRC}/htpasswd.1 ${STAGEDIR}${PREFIX}/man/man1/${PORTNAME}-htpasswd.1 ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${PREFIX}/man/man8 ${INSTALL_DATA} ${WRKSRC}/mini_httpd.cnf ${STAGEDIR}${PREFIX}/etc/mini_httpd.cnf.sample .include Index: head/www/mini_httpd/distinfo =================================================================== --- head/www/mini_httpd/distinfo (revision 399972) +++ head/www/mini_httpd/distinfo (revision 399973) @@ -1,2 +1,2 @@ -SHA256 (mini_httpd-1.21.tar.gz) = 51fa38c87d79e973686557b8d3b72fed387b21931e37ee07a08991ebb2c95152 -SIZE (mini_httpd-1.21.tar.gz) = 43127 +SHA256 (mini_httpd-1.22.tar.gz) = 28399b9ad5fa31568944e625f4007c4b9ed9a096f78eda772fc9223a93ea7325 +SIZE (mini_httpd-1.22.tar.gz) = 43619 Index: head/www/mini_httpd/pkg-descr =================================================================== --- head/www/mini_httpd/pkg-descr (revision 399972) +++ head/www/mini_httpd/pkg-descr (revision 399973) @@ -1,19 +1,18 @@ -Mini_httpd is a small HTTP server. Its performance is not great, but -for low or medium traffic sites it's quite adequate. It implements -all the basic features of an HTTP server, including: +mini_httpd is a small HTTP server. Its performance is not great, but for +low or medium traffic sites it's quite adequate. It implements all the +basic features of an HTTP server, including: - - GET, HEAD, and POST methods. - - CGI. - - Basic authentication. - - Security against ".." filename snooping. - - The common MIME types. - - Trailing-slash redirection. - - index.html, index.htm, index.cgi - - Directory listings. - - Multihoming / virtual hosting. - - Standard logging. - - Custom error pages. + - GET, HEAD, and POST methods + - CGI and basic authentication support + - Security against ".." filename snooping + - The common MIME types + - Trailing-slash redirection + - index.html, index.htm, index.cgi + - Directory listings + - Multihoming (virtual hosting) + - Standard logging + - Custom error pages It can also be configured to do SSL/HTTPS and IPv6. WWW: http://www.acme.com/software/mini_httpd/