Edgewall Software

Changes between Version 5 and Version 6 of TracOnOsxMacPorts


Ignore:
Timestamp:
Jan 11, 2016, 11:52:30 PM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TracOnOsxMacPorts

    v5 v6  
    1 = Using MacPorts =
     1[[PageOutline(2-5,Contents,pullout)]]
    22
    3 Installation steps:
     3= Installing Trac on MacOSX using !MacPorts
     4
     5== Installation steps
    46
    57 1. sudo port install apache2
     
    1012  1. sudo port install mod_python26
    1113
    12 Note that you must ensure that you have installed the right version of mod_python for the python version upon which trac depends.  As of September, 2010 this is python26, and thus you have to use mod_python26.
     14Note that you must have installed the right version of mod_python for the Python version upon which Trac depends. As of September 2010 this is Python 2.6, and thus you have to use mod_python26.
    1315
    1416After installing mod_python you may need to add
    1517{{{LoadModule python_module modules/mod_python.so}}} to your /opt/local/apache2/conf/httpd.conf file.
    1618
    17 
    18 Here is the trac configuration from my httpd.conf
    19 
    20 {{{
     19Here is the configuration for my httpd.conf:
     20{{{#!apache
    2121<VirtualHost *>
    2222  #
     
    7878}}}
    7979
    80 
    81 == If you installed Subversion without Berkeley DB support ==
     80== If you installed Subversion without Berkeley DB support
    8281
    8382If you installed Subversion with the variant +no_bdb, but the rest as above you get a Trac error:
     
    9190Either start again and follow the above instructions exactly or fix as follows:
    9291
    93 {{{
     92{{{#!sh
    9493sudo port upgrade --enforce-variants subversion-python26bindings +no_bdb
    9594}}}