From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 24 10:40:02 2008 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ABF871065673 for ; Tue, 24 Jun 2008 10:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8D14C8FC22 for ; Tue, 24 Jun 2008 10:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m5OAe29e051269 for ; Tue, 24 Jun 2008 10:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m5OAe2G1051268; Tue, 24 Jun 2008 10:40:02 GMT (envelope-from gnats) Resent-Date: Tue, 24 Jun 2008 10:40:02 GMT Resent-Message-Id: <200806241040.m5OAe2G1051268@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Janos Mohacsi Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 77EF41065674 for ; Tue, 24 Jun 2008 10:32:15 +0000 (UTC) (envelope-from mohacsi@skye.ki.iif.hu) Received: from skye.ki.iif.hu (skye.ki.iif.hu [IPv6:2001:738:0:402::2]) by mx1.freebsd.org (Postfix) with ESMTP id E3A688FC16 for ; Tue, 24 Jun 2008 10:32:14 +0000 (UTC) (envelope-from mohacsi@skye.ki.iif.hu) Received: (from mohacsi@localhost) by skye.ki.iif.hu (8.14.1/8.14.1) id m5OAW2gG059502; Tue, 24 Jun 2008 12:32:02 +0200 (CEST) (envelope-from mohacsi) Message-Id: <200806241032.m5OAW2gG059502@skye.ki.iif.hu> Date: Tue, 24 Jun 2008 12:32:02 +0200 (CEST) From: Janos Mohacsi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/124925: [MAINTAINER] www/bozohttpd: update to 20080303 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jun 2008 10:40:02 -0000 >Number: 124925 >Category: ports >Synopsis: [MAINTAINER] www/bozohttpd: update to 20080303 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Jun 24 10:40:01 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Janos Mohacsi >Release: FreeBSD 5.5-STABLE i386 >Organization: NIIF/HUNGARNET >Environment: System: FreeBSD skye.ki.iif.hu 5.5-STABLE FreeBSD 5.5-STABLE #4: Mon Aug 6 13:25:53 CEST >Description: - Update to 20080303 - update to port options Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- bozohttpd-20080303.patch begins here --- diff -ruN --exclude=CVS /home/ports/www/bozohttpd.orig/Makefile /home/ports/www/bozohttpd/Makefile --- /home/ports/www/bozohttpd.orig/Makefile Fri Feb 22 18:41:52 2008 +++ /home/ports/www/bozohttpd/Makefile Tue Jun 24 12:25:52 2008 @@ -6,8 +6,7 @@ # PORTNAME= bozohttpd -PORTVERSION= 20060517 -PORTREVISION= 1 +PORTVERSION= 20080303 CATEGORIES= www ipv6 MASTER_SITES= http://www.eterna.com.au/bozohttpd/ \ ${MASTER_SITE_NETBSD} @@ -18,19 +17,32 @@ USE_BZIP2= YES USE_RC_SUBR= bozohttpd +#options handling +OPTIONS= HTPASSWD_SUPPORT "Enable htpassord support" off \ + SSL "Enable SSL support" on \ + CGI "Enable CGI support" on + +#make happy portlint +.if defined(WITHOUT_SSL) +.else +USE_OPENSSL= yes +.endif + +.include + .if defined(WITH_HTPASSWD_SUPPORT) CFLAGS+= -DDO_HTPASSWD MAKE_ARGS+= 'LDFLAGS+= -lcrypt' .endif -.if !defined(WITHOUT_SSL) -USE_OPENSSL= yes -CFLAGS+= -UNO_SSL_SUPPORT -.else +.if defined(WITHOUT_SSL) CFLAGS+= -DNO_SSL_SUPPORT +.else +#USE_OPENSSL= yes +CFLAGS+= -UNO_SSL_SUPPORT .endif -.if defined(NO_CGI) +.if defined(WITHOUT_CGI) CFLAGS+= -DNO_CGIBIN_SUPPORT .else CFLAGS+= -UNO_CGIBIN_SUPPORT @@ -40,4 +52,4 @@ MANCOMPRESSED= maybe PLIST_FILES= libexec/bozohttpd -.include +.include diff -ruN --exclude=CVS /home/ports/www/bozohttpd.orig/distinfo /home/ports/www/bozohttpd/distinfo --- /home/ports/www/bozohttpd.orig/distinfo Fri Jul 21 18:28:16 2006 +++ /home/ports/www/bozohttpd/distinfo Tue Jun 24 12:23:46 2008 @@ -1,3 +1,3 @@ -MD5 (bozohttpd-20060517.tar.bz2) = 75b9b57bb56ecdbfac2f5d024080b226 -SHA256 (bozohttpd-20060517.tar.bz2) = 6b87c6d762f0100e0c32eb5fbd7ac33ab174ee7646a9b6787b9a79bf1f739bff -SIZE (bozohttpd-20060517.tar.bz2) = 33032 +MD5 (bozohttpd-20080303.tar.bz2) = bd4b83c27e589a6d7318e30ea418432d +SHA256 (bozohttpd-20080303.tar.bz2) = 8214876decc41dbdb73df231d4e49dad330e6ee3696fcc792ab1fb7b821e30ff +SIZE (bozohttpd-20080303.tar.bz2) = 34469 diff -ruN --exclude=CVS /home/ports/www/bozohttpd.orig/files/patch-bozohttpd.8 /home/ports/www/bozohttpd/files/patch-bozohttpd.8 --- /home/ports/www/bozohttpd.orig/files/patch-bozohttpd.8 Mon Sep 9 23:25:03 2002 +++ /home/ports/www/bozohttpd/files/patch-bozohttpd.8 Tue Jun 24 12:29:36 2008 @@ -1,22 +1,25 @@ ---- bozohttpd.8.orig Fri Aug 23 07:43:44 2002 -+++ bozohttpd.8 Tue Sep 3 10:23:12 2002 -@@ -197,8 +197,8 @@ + +$FreeBSD$ + +--- bozohttpd.8.orig ++++ bozohttpd.8 +@@ -284,8 +284,8 @@ .Xr inetd.conf 5 entry would be: .Bd -literal --www stream tcp nowait:600 httpd /usr/pkg/libexec/bozohttpd bozohttpd /var/www --www stream tcp6 nowait:600 httpd /usr/pkg/libexec/bozohttpd bozohttpd /var/www -+www stream tcp nowait:600 httpd /@@PREFIX@@/libexec/bozohttpd bozohttpd /var/www -+www stream tcp6 nowait:600 httpd /@@PREFIX@@/libexec/bozohttpd bozohttpd /var/www +-http stream tcp nowait:600 httpd /usr/pkg/libexec/bozohttpd bozohttpd /var/www +-http stream tcp6 nowait:600 httpd /usr/pkg/libexec/bozohttpd bozohttpd /var/www ++http stream tcp nowait:600 httpd /@@PREFI@@/libexec/bozohttpd bozohttpd /var/www ++http stream tcp6 nowait:600 httpd /@@PREFIX@@/libexec/bozohttpd bozohttpd /var/www .Ed .Pp This would serve web pages from -@@ -218,7 +218,7 @@ - .Pp - To configure set of virtual hosts, one would use an entry like: +@@ -308,7 +308,7 @@ + .Xr inetd.conf 5 + entry like: .Bd -literal --www stream tcp nowait:600 httpd /usr/pkg/libexec/bozohttpd bozohttpd -v /var/vroot /var/www -+www stream tcp nowait:600 httpd /@@PREFIX@@/libexec/bozohttpd bozohttpd -v /var/vroot /var/www +-http stream tcp nowait:600 httpd /usr/pkg/libexec/bozohttpd bozohttpd -v /var/vroot /var/www ++http stream tcp nowait:600 httpd /@@PREFIX@@/libexec/bozohttpd bozohttpd -v /var/vroot /var/www .Ed .Pp and inside --- bozohttpd-20080303.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: