From owner-freebsd-ports Sun Dec 23 12:20: 6 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AF96237B41B for ; Sun, 23 Dec 2001 12:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBNKK1q44343; Sun, 23 Dec 2001 12:20:01 -0800 (PST) (envelope-from gnats) Received: from hronir.scardini.com (dsl-209-162-215-176.easystreet.com [209.162.215.176]) by hub.freebsd.org (Postfix) with ESMTP id 7E5FA37B416 for ; Sun, 23 Dec 2001 12:17:14 -0800 (PST) Received: from tlon.lan.scardini.com (tlon.lan.scardini.com [192.168.2.2]) by hronir.scardini.com (8.11.6/8.11.6) with ESMTP id fBNKHDX76192 for ; Sun, 23 Dec 2001 12:17:13 -0800 (PST) (envelope-from chrise@hronir.lan.scardini.com) Received: (from chrise@localhost) by tlon.lan.scardini.com (8.11.6/8.11.6) id fBNKHDb01977; Sun, 23 Dec 2001 12:17:13 -0800 (PST) (envelope-from chrise) Message-Id: <200112232017.fBNKHDb01977@tlon.lan.scardini.com> Date: Sun, 23 Dec 2001 12:17:13 -0800 (PST) From: Christopher Elkins Reply-To: Christopher Elkins To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/33119: textproc/man2html doesn't install man.cgi Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 33119 >Category: ports >Synopsis: textproc/man2html doesn't install man.cgi >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Dec 23 12:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Christopher Elkins >Release: FreeBSD 4.4-RELEASE i386 >Organization: >Environment: System: FreeBSD tlon.lan.scardini.com 4.4-RELEASE FreeBSD 4.4-RELEASE #0: Fri Nov 30 17:22:23 PST 2001 chrise@tlon.lan.scardini.com:/usr/src/sys/compile/TLON i386 >Description: man.cgi isn't installed for two reasons: 1) Test for existence of cgi-bin directory uses the wrong flag. 2) man.cgi is installed as a binary (but it's not), so strip fails. >How-To-Repeat: Install port and look in ${PREFIX}/www/cgi-bin. See that man.cgi isn't there. >Fix: diff -c -r man2html.orig/Makefile man2html/Makefile *** man2html.orig/Makefile Sun Dec 23 11:51:09 2001 --- man2html/Makefile Sun Dec 23 11:52:49 2001 *************** *** 29,36 **** ${PERL5} ${WRKSRC}/install.me -batch -binpath ${PREFIX}/bin \ -manpath ${PREFIX}/man -libpath ${PREFIX}/lib \ -perlpath ${PERL5} ! if [ -f ${CGIDIR} ] ; then \ ! ${INSTALL_PROGRAM} ${WRKSRC}/man.cgi ${CGIDIR} ; \ fi .include --- 29,36 ---- ${PERL5} ${WRKSRC}/install.me -batch -binpath ${PREFIX}/bin \ -manpath ${PREFIX}/man -libpath ${PREFIX}/lib \ -perlpath ${PERL5} ! if [ -d ${CGIDIR} ] ; then \ ! ${INSTALL_SCRIPT} ${WRKSRC}/man.cgi ${CGIDIR} ; \ fi .include >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message