mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
74e8265462
- Retire etc/shttpd.conf, it appeared and not needed by default PR: 91550 Submitted by: Sergey Lyubka <valenok@gmail.com> (maintainer)
31 lines
695 B
Makefile
31 lines
695 B
Makefile
# New ports collection makefile for: shttpd
|
|
# Date created: Wed Dec 15, 2004
|
|
# Whom: Sergey Lyubka (valenok@gmail.com)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= shttpd
|
|
PORTVERSION= 1.32
|
|
CATEGORIES= www
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= shttpd
|
|
DISTNAME= shttpd-${PORTVERSION}
|
|
|
|
MAINTAINER= valenok@gmail.com
|
|
COMMENT= Small, fast, embeddable web server with CGI, SSL, Authorization
|
|
|
|
MAN1= shttpd.1
|
|
|
|
PLIST_FILES= bin/shttpd
|
|
|
|
do-build:
|
|
${CC} ${CFLAGS} -DCONFIG=\"${PREFIX}/etc/shttpd.conf\" \
|
|
${WRKSRC}/shttpd.c -o ${WRKSRC}/shttpd
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/shttpd ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/shttpd.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|