Changes between Version 5 and Version 6 of TracOnOsxMacPorts
- Timestamp:
- Jan 11, 2016, 11:52:30 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracOnOsxMacPorts
v5 v6 1 = Using MacPorts = 1 [[PageOutline(2-5,Contents,pullout)]] 2 2 3 Installation steps: 3 = Installing Trac on MacOSX using !MacPorts 4 5 == Installation steps 4 6 5 7 1. sudo port install apache2 … … 10 12 1. sudo port install mod_python26 11 13 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.14 Note 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. 13 15 14 16 After installing mod_python you may need to add 15 17 {{{LoadModule python_module modules/mod_python.so}}} to your /opt/local/apache2/conf/httpd.conf file. 16 18 17 18 Here is the trac configuration from my httpd.conf 19 20 {{{ 19 Here is the configuration for my httpd.conf: 20 {{{#!apache 21 21 <VirtualHost *> 22 22 # … … 78 78 }}} 79 79 80 81 == If you installed Subversion without Berkeley DB support == 80 == If you installed Subversion without Berkeley DB support 82 81 83 82 If you installed Subversion with the variant +no_bdb, but the rest as above you get a Trac error: … … 91 90 Either start again and follow the above instructions exactly or fix as follows: 92 91 93 {{{ 92 {{{#!sh 94 93 sudo port upgrade --enforce-variants subversion-python26bindings +no_bdb 95 94 }}}