mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
96a38c7c3a
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Category W. CR: D510 Approved by: portmgr (bapt)
26 lines
698 B
Makefile
26 lines
698 B
Makefile
# Created by: Kim Scarborough <user@unknown.nu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= micro_httpd
|
|
PORTVERSION= 2001.12.14
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.acme.com/software/micro_httpd/ \
|
|
http://www.unknown.nu/ports/
|
|
DISTNAME= ${PORTNAME}_14dec2001
|
|
|
|
MAINTAINER= user@unknown.nu
|
|
COMMENT= Extremely small web server
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
PLIST_FILES= sbin/micro_httpd man/man8/micro_httpd.8.gz
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s:/usr/local/sbin:${PREFIX}/sbin:g; \
|
|
s:/usr/local/man/man8:${MAN8PREFIX}/man/man8:g; \
|
|
s:gcc:${CC}:g; s:-O:${CFLAGS}:g" \
|
|
${WRKSRC}/Makefile
|
|
@${REINPLACE_CMD} -e "s/^.TH micro_httpd 1/.TH micro_httpd 8/g" \
|
|
${WRKSRC}/micro_httpd.8
|
|
|
|
.include <bsd.port.mk>
|