summaryrefslogtreecommitdiff
path: root/security/py-prewikka/patches/patch-ab
blob: b039ab8bee05dcd64e2dc1fd5a9142076af20a63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$NetBSD: patch-ab,v 1.1 2006/10/10 15:05:14 joerg Exp $

--- setup.py.orig	2006-08-16 10:45:41.000000000 +0000
+++ setup.py
@@ -116,17 +116,13 @@ class my_install_scripts (install_script
 class my_install(install):
     def finalize_options(self):
         ### if no prefix is given, configuration should go to /etc or in {prefix}/etc otherwise
-        if self.prefix:
-            self.conf_prefix = self.prefix + "/etc/prewikka"
-        else:
-            self.conf_prefix = "/etc/prewikka"
-
+        self.conf_prefix = os.environ["PKG_SYSCONFDIR"]
         install.finalize_options(self)
 
     def install_conf(self):
         self.mkpath((self.root or "") + self.conf_prefix)
         for file in self.distribution.conf_files:
-            dest = (self.root or "") + self.conf_prefix + "/" + os.path.basename(file)
+            dest = (self.root or "") + self.prefix + "/" + os.environ["EXAMPLEDIR"] + "/" + os.path.basename(file)
             if os.path.exists(dest):
                 dest += "-dist"
             self.copy_file(file, dest)