2011-03-26 09:02:38 +01:00
|
|
|
$NetBSD: patch-aa,v 1.3 2011/03/26 08:02:38 obache Exp $
|
2008-09-04 19:20:26 +02:00
|
|
|
|
2011-03-26 09:02:38 +01:00
|
|
|
--- setup.py.orig 2011-03-24 23:14:27.000000000 +0000
|
2008-09-04 19:20:26 +02:00
|
|
|
+++ setup.py
|
2011-03-26 09:02:38 +01:00
|
|
|
@@ -18,6 +18,7 @@
|
2008-09-04 19:20:26 +02:00
|
|
|
|
2011-03-26 09:02:38 +01:00
|
|
|
"""Loggerhead is a web viewer for projects in bazaar"""
|
2008-09-04 19:20:26 +02:00
|
|
|
|
|
|
|
+import os
|
|
|
|
from distutils.core import setup
|
|
|
|
|
2011-03-26 09:02:38 +01:00
|
|
|
import loggerhead
|
|
|
|
@@ -64,7 +65,7 @@ setup(
|
2008-12-26 20:51:55 +01:00
|
|
|
"static/javascript/yui/build/yui-base/*",
|
|
|
|
"static/images/*"]},
|
2008-09-04 19:20:26 +02:00
|
|
|
data_files = [
|
2008-12-26 20:51:55 +01:00
|
|
|
- ('share/man/man1', ['start-loggerhead.1',
|
2011-03-26 09:02:38 +01:00
|
|
|
+ (os.getenv('PKGMANDIR', 'share/man') + '/man1', ['start-loggerhead.1',
|
2008-12-26 20:51:55 +01:00
|
|
|
'stop-loggerhead.1',
|
|
|
|
'serve-branches.1']),
|
2008-09-04 19:20:26 +02:00
|
|
|
('share/doc/loggerhead', ['loggerhead.conf.example']),
|