Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 17 Mar 2010 14:09:53 GMT
From:      Alexander Moisseev <moiseev@mezonplus.ru>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/144819: [patch] www/moinmoin: fix moin.fcg not found
Message-ID:  <201003171409.o2HE9rOA062177@www.freebsd.org>
Resent-Message-ID: <201003171410.o2HEA4TN029645@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         144819
>Category:       ports
>Synopsis:       [patch] www/moinmoin: fix moin.fcg not found
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Mar 17 14:10:04 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Alexander Moisseev
>Release:        8.0-RELEASE
>Organization:
>Environment:
FreeBSD 8.0-RELEASE #0: Sat Nov 21 15:48:17 UTC 2009     root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  i386
>Description:
File moin.fcg not found when run "make instance MOINTYPE=FCGI" because real file name is moin.fcgi
>How-To-Repeat:
cd /usr/ports/www/moinmoin
make install
make instance MOINTYPE=FCGI
>Fix:
1. change MOINSCRIPT when defined MOINTYPE=FCGI
2. bump portrevision

Patch attached with submission follows:

diff -u moinmoin.old/Makefile moinmoin/Makefile
--- moinmoin.old/Makefile	2010-03-10 20:43:40.000000000 +0300
+++ moinmoin/Makefile	2010-03-17 16:38:06.000000000 +0300
@@ -7,6 +7,7 @@
 
 PORTNAME=	moinmoin
 PORTVERSION=	1.9.2
+PORTREVISION=	1
 CATEGORIES=	www python
 MASTER_SITES=	http://static.moinmo.in/files/
 DISTNAME=	moin-${PORTVERSION}
@@ -34,7 +35,7 @@
 .if ${MOINTYPE} == "STANDALONE"
 MOINSCRIPT=	${MOINDIR}/server/wikiserver.py
 .elif ${MOINTYPE} == "FCGI"
-MOINSCRIPT=	${MOINDIR}/server/moin.fcg
+MOINSCRIPT=	${MOINDIR}/server/moin.fcgi
 .elif ${MOINTYPE} == "MOD_PYTHON"
 .elif ${MOINTYPE} == "CGI"
 MOINSCRIPT=	${MOINDIR}/server/moin.cgi
Common subdirectories: moinmoin.old/files and moinmoin/files


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201003171409.o2HE9rOA062177>