# --------------------------------------------------------------------------- # # Copyright (C) 2003 Greg Stein. All Rights Reserved. # # By using this file, you agree to the terms and conditions set forth in # the LICENSE.html file which can be found at the top level of the SubWiki # distribution or at: # http://svn.webdav.org/repos/projects/subwiki/trunk/LICENSE.html # # Contact information: # Greg Stein, PO Box 760, Palo Alto, CA, 94302 # gstein@lyra.org, http://subwiki.tigris.org/ # # --------------------------------------------------------------------------- # # layouts.conf: various installation layouts for SubWiki # # --------------------------------------------------------------------------- [subwiki] description = Standard SubWiki # default prefix prefix = /usr/local/subwiki # the six installation directories bin-dir = %(prefix)s/bin python-dir = %(prefix)s/lib content-dir = %(prefix)s/content plugin-dir = %(prefix)s/plugins scripts-dir = %(prefix)s/scripts extra-dir = %(prefix)s # --------------------------------------------------------------------------- [redhat-7.x] description = Red Hat Linux 7.x prefix = /usr bin-dir = %(prefix)s/bin # convenience symbol for the install dirs share-dir = %(prefix)s/share/subwiki/%(version)s # for RH 7.x, assume the user has installed Python 2.2 in /usr/local python-dir = /usr/local/lib/python2.2/site-packages content-dir = %(share-dir)s/content plugin-dir = %(share-dir)s/plugins scripts-dir = %(share-dir)s/scripts extra-dir = %(share-dir)s # ---------------------------------------------------------------------------