This is a patch for setup.py to recognise /etc/trac as it's configuration directory. And closes this bug.
-- Best Regards, -- Luis Matos
--- trac-0.10/setup.py 2006-09-04 20:17:55.000000000 +0100 +++ trac-changed-0.10/setup.py 2006-10-22 21:29:05.000000000 +0100 @@ -33,7 +33,7 @@ def siteconfig(self): path = self.prefix or self.home path = os.path.expanduser(path) - conf_dir = os.path.join(path, 'share', 'trac', 'conf') + conf_dir = '/etc/trac' templates_dir = os.path.join(path, 'share', 'trac', 'templates') htdocs_dir = os.path.join(path, 'share', 'trac', 'htdocs') wiki_dir = os.path.join(path, 'share', 'trac', 'wiki-default')