1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00
freebsd-ports/www/mini_httpd/Makefile
Philip M. Gollucci 116ec22ac1 - DISTNAME= ${PORTNAME}-${PORTVERSION} is the default and not needed.
PR:             ports/153292
Submitted by:   myself (pgollucci)
Tested by:      -exp run by pav
Approved by:    portmgr (pav)
2010-12-29 20:04:42 +00:00

37 lines
962 B
Makefile

# New ports collection makefile for: mini_httpd
# Date created: 24 July 2002
# Whom: se
#
# $FreeBSD$
#
PORTNAME= mini_httpd
PORTVERSION= 1.19
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
.ifndef NO_SSL
MAKE_ARGS+= -DUSE_OPENSSL
.endif
MAN8= mini_httpd.8 htpasswd.8
post-build:
-${MV} ${WRKSRC}/htpasswd.1 ${WRKSRC}/htpasswd.8
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/mini_httpd ${PREFIX}/sbin/
${INSTALL_PROGRAM} ${WRKSRC}/htpasswd ${PREFIX}/sbin/
${INSTALL_SCRIPT} ${WRKSRC}/scripts/mini_httpd_wrapper ${PREFIX}/sbin/
${INSTALL_SCRIPT} ${WRKSRC}/scripts/mini_httpd.sh ${PREFIX}/etc/rc.d/
@for file in ${MAN8}; \
do \
${INSTALL_MAN} ${WRKSRC}/$$file ${PREFIX}/man/man8/; \
done
${INSTALL_DATA} ${WRKSRC}/mini_httpd.cnf ${PREFIX}/etc/mini_httpd.cnf.sample
.include <bsd.port.mk>