Files
pkgsrc-ng/x11/py-terminator/patches/patch-setup.py
2016-01-21 23:42:40 +01:00

21 lines
485 B
Python

$NetBSD: patch-setup.py,v 1.1 2015/07/11 11:54:02 kamil Exp $
Use the right path for man-pages in pkgsrc.
Install the man pages in the right directory.
--- setup.py.orig 2014-03-29 19:45:44.000000000 +0000
+++ setup.py
@@ -150,10 +150,7 @@ class InstallData(install_data):
return data_files
-if platform.system() in ['FreeBSD', 'OpenBSD']:
- man_dir = 'man'
-else:
- man_dir = 'share/man'
+man_dir = 'man'
setup(name=APP_NAME.capitalize(),
version=APP_VERSION,