mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
93 lines
2.5 KiB
Makefile
93 lines
2.5 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= fnord
|
|
PORTVERSION= 1.10
|
|
PORTREVISION= 1
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.fefe.de/fnord/
|
|
|
|
MAINTAINER= flz@FreeBSD.org
|
|
COMMENT= Small and fast webserver with CGI-capability
|
|
|
|
USE_GMAKE= yes
|
|
USE_BZIP2= yes
|
|
|
|
PLIST_FILES= bin/fnord \
|
|
bin/fnord-conf \
|
|
bin/fnord.inetd
|
|
|
|
SUB_FILES= pkg-message fnord.inetd
|
|
|
|
OPTIONS_DEFINE= DAEMONTOOLS TCPSERVER CGI DIR_LIST SYSTEM_SYMLINK_DEREF OLD_STYLE_REDIRECT
|
|
OPTIONS_DEFAULT= CGI DIR_LIST
|
|
DAEMONTOOLS_DESC= Use DJB's daemontools
|
|
TCPSERVER_DESC= Use DJB's tcpserver
|
|
CGI_DESC= Enable CGI support
|
|
DIR_LIST_DESC= Enable directory listing
|
|
SYSTEM_SYMLINK_DEREF_DESC= Enable system symlink (needs DIR_LIST)
|
|
OLD_STYLE_REDIRECT_DESC= "Enable old style redirection
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MDAEMONTOOLS}
|
|
RUN_DEPENDS= setuidgid:${PORTSDIR}/sysutils/daemontools
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MTCPSERVER}
|
|
RUN_DEPENDS= tcpserver:${PORTSDIR}/sysutils/ucspi-tcp
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MCGI}
|
|
SED_SCRIPT+= -e "s|^// \(\#define CGI\).*|\1|"
|
|
.endif
|
|
|
|
# HOPE YOU KNOW WHAT YOU'RE LINKING !
|
|
#
|
|
# e.g.: if a file foo is a symlink to /etc/passwd and you don't have a
|
|
# chroot enviroment then the system-wide /etc/passwd is provided !!!
|
|
#
|
|
# If the symlink is dangling OR this option is not active the symlink is
|
|
# provided as a new http-uri.
|
|
#
|
|
# e.g.: is foo a symlink to /etc/passwd than the client gets a href to
|
|
# http://<vhost>/etc/passwd */
|
|
|
|
.if ${PORT_OPTIONS:MSYSTEM_SYMLINK_DEREF}
|
|
.if ${PORT_OPTIONS:MDIR_LIST}
|
|
IGNORE= SYSTEM_SYMLINK_DEREF has no effect if DIR_LIST is not enabled
|
|
.endif
|
|
SED_SCRIPT+= -e "s|^/\* \(\#define SYSTEM_SYMLINK_DEREF\).*|\1|"
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDIR_LIST}
|
|
SED_SCRIPT+= -e "s|^/\* \(\#define DIR_LIST\).*|\1|"
|
|
.endif
|
|
|
|
# If a file is not found locally, and $REDIRECT_HOST is set, fnord will
|
|
# issue a redirect to strcat($REDIRECT_HOST,uri). Otherwise, if
|
|
# $REDIRECT_URI is set, fnord will issue a redirect to $REDIRECT_URI.
|
|
# Only if those fail will a 404 error be returned. */
|
|
|
|
.if ${PORT_OPTIONS:MOLD_STYLE_REDIRECT}
|
|
SED_SCRIPT+= -e "s|^/\* \(\#define OLD_STYLE_REDIRECT\).*|\1|"
|
|
.endif
|
|
|
|
post-patch:
|
|
@[ -z '${SED_SCRIPT}' ] || \
|
|
${REINPLACE_CMD} ${SED_SCRIPT} ${WRKSRC}/httpd.c
|
|
@${REINPLACE_CMD} -e "/strip/d" ${WRKSRC}/Makefile
|
|
|
|
do-build:
|
|
cd ${WRKSRC}; ${GMAKE} DIET=""
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/fnord ${PREFIX}/bin/
|
|
${INSTALL_SCRIPT} ${WRKSRC}/fnord-conf ${PREFIX}/bin/
|
|
${INSTALL_SCRIPT} ${WRKDIR}/fnord.inetd ${PREFIX}/bin/
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|