From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 22 01:30:28 2005 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14BC916A4CE for ; Sat, 22 Jan 2005 01:30:28 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C858543D41 for ; Sat, 22 Jan 2005 01:30:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id j0M1URgc001596 for ; Sat, 22 Jan 2005 01:30:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id j0M1URRe001595; Sat, 22 Jan 2005 01:30:27 GMT (envelope-from gnats) Date: Sat, 22 Jan 2005 01:30:27 GMT Message-Id: <200501220130.j0M1URRe001595@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: David Thiel Subject: Re: ports/76556: Update: www/publicfile optional patches X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: David Thiel List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jan 2005 01:30:28 -0000 The following reply was made to PR ports/76556; it has been noted by GNATS. From: David Thiel To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/76556: Update: www/publicfile optional patches Date: Fri, 21 Jan 2005 17:28:22 -0800 Changing to use OPTIONS. Diff against the Makefile(after original diff is applied): --- /tmp/publicfile.Makefile Fri Jan 21 16:56:26 2005 +++ Makefile Fri Jan 21 17:22:32 2005 @@ -18,29 +18,21 @@ RUN_DEPENDS= setuidgid:${PORTSDIR}/sysutils/daemontools \ tcpserver:${PORTSDIR}/sysutils/ucspi-tcp -pre-everything:: +OPTIONS= BASICAUTH "basic HTTP authentication support" off \ + COMMONLOG "support for Apache common log format" off \ + REDIRECT_SLASH "don't error when omitting trailing slash" off \ + SSL "provide SSL support through ucspi-ssl" off - @${ECHO_MSG} - @${ECHO_MSG} "This port can use the following tuneables:" - @${ECHO_MSG} - @${ECHO_MSG} "WITH_BASICAUTH basic HTTP authentication support" - @${ECHO_MSG} "WITH_COMMONLOG support for Apache common log format" - @${ECHO_MSG} "WITH_REDIRECT_SLASH don't complain when omitting trailing slash" - @${ECHO_MSG} "WITH_SSL provide SSL support through ucspi-ssl" - @${ECHO_MSG} +.include .if defined(WITH_BASICAUTH) && defined(WITH_COMMONLOG) - @${ECHO_MSG} - @${ECHO_MSG} "Currently the common log and auth patches conflict." - @${ECHO_MSG} -BROKEN= "Currently the common log and auth patches conflict." +BROKEN= "Currently the common log and auth patches conflict.\ + Run 'make config' to reconfigure the port." .endif .if defined(WITH_BASICAUTH) && defined(WITH_REDIRECT_SLASH) - @${ECHO_MSG} - @${ECHO_MSG} "Currently the redirect slash and auth patches conflict." - @${ECHO_MSG} -BROKEN= "Currently the redirect slash and auth patches conflict." +BROKEN= "Currently the redirect slash and auth patches conflict.\ + Run 'make config' to reconfigure the port." .endif .if defined(WITH_REDIRECT_SLASH) @@ -92,4 +84,4 @@ @${ECHO_CMD} "${CC} -s" > ${WRKSRC}/conf-ld @${ECHO_CMD} "${PREFIX}" > ${WRKSRC}/conf-home -.include +.include