Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Dec 2011 20:36:10 GMT
From:      Peter <fbsdq@peterk.org>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/163490: moinmoin port fix
Message-ID:  <201112202036.pBKKaAqg054784@red.freebsd.org>
Resent-Message-ID: <201112202040.pBKKe7tr025975@freefall.freebsd.org>

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

>Number:         163490
>Category:       ports
>Synopsis:       moinmoin port fix
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Dec 20 20:40:07 UTC 2011
>Closed-Date:
>Last-Modified:
>Originator:     Peter
>Release:        9.0-RC3
>Organization:
>Environment:
FreeBSD wiki.pk.pb 9.0-RC3 FreeBSD 9.0-RC3 #0: Sun Dec  4 08:56:36 UTC 2011     root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64

>Description:
the 'moinmoin' port 'pkg-install.in' message references incorrect paths,

A message that /usr/local/www/wiki/moin.wsgi should be edited and pointing to the correct path for 'sys.path.insert...' or how to run 'setup.py' would be nice.

[I wasn't able to hack the Makefiles and 100% figure out the ports stuff on another test box to make it work, but manually made the changes and its working - sorry no patches, still trying to figure out 'ports' internals].
>How-To-Repeat:

$ cd /usr/ports/www/moinmoin/
$ make install
>Fix:

$ ls /usr/local/share/moin/htdocs/
ls: /usr/local/share/moin/htdocs/: No such file or directory


<Directory "/usr/local/share/moin/htdocs/">
 should be:
<Directory "/usr/local/lib/python2.7/site-packages/MoinMoin/web/static/htdocs/">

Alias /moin_static180/ "/usr/local/share/moin/htdocs/"
 should be:
Alias /moin_static193/ "/usr/local/lib/python2.7/site-packages/MoinMoin/web/static/htdocs/"

<Directory "/usr/local/share/moin/htdocs/">
 should be:
<Directory "/usr/local/www/wiki">

OR
  Is it being installed in wrong path?

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



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