> I'll give
> it another try next month and bug you a lot, then I'll write the
> recipe myself. ;-)

The following worked for me (tried tonight from a fresh OS X install):

# INSTALL PYTHON
# Get Python from http://www.python.org/ftp/python/2.5.1/python-2.5.1-macosx.dmg
# Install with the default settings

# Check out that /usr/local/bin is in your path

# INSTALL APACHE (you may want to build the module as shared object here)
curl http://apache.cict.fr/httpd/httpd-2.2.6.tar.bz2 | bunzip2 -c | tar xf -
cd httpd-2.2.6
./configure --enable-modules=all --enable-mods-shared
make
sudo make install
cd ..

# INSTALL MOD PYTHON
curl http://apache.multidist.com/httpd/modpython/mod_python-3.3.1.tgz
| gunzip -c | tar xf -
cd  mod_python-3.3.1
./configure --with-apxs=/usr/local/apache2/bin/apxs
--with-python=/usr/local/bin/python2.5
make
sudo make install
cd ..

# INSTALL SUBVERSION
curl http://subversion.tigris.org/downloads/subversion-1.4.5.tar.bz2 |
bunzip2 -c | tar xf -
./configure --with-apxs=/usr/local/apache2/bin/apxs --enable-shared
make all swig-py
sudo make install install-siwg-py
cd ..

# INSTALL or UPDATE setuptools
curl http://peak.telecommunity.com/dist/ez_setup.py -O ez_setup.py
sudo python ez_setup.py [-U setuptools]

# INSTALL Genshi
easy_install-2.5 genshi

# INSTALL PySQLite
easy_install-2.5 pysqlite

# INSTALL Trac
svn co http://svn.edgewall.org/repos/trac/trunk trac
python setup.py install

# CREATE a Trac project
mkdir test
svnadmin create test/svn
trac-admin test/trac initenv

# VERIFY tracd works
LANG="" tracd -p 8080 test/trac

# Configure Apache and start it

I have something wrong with the Apache and the locale here, so I need
to find out what's going on (I add to add a line in Trac source to
make it work as it is late here, I'll try to find a clean way
tomorrow). Anyway it works out-of-the-box with tracd.

HTH,
Manu

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to