freebsd-ports/databases/pgbarman/files/patch-setup.py
Matthew Seaman 0bd8ff190b - Install man pages to a location where man(1) can find them
- While here update man pages and speciment barman.conf file to use
  FreeBSD-ish locations for various things, particularly that our idea
  of the PostgreSQL default user is 'pgsql' although the database to
  connect to is 'postgres'
2014-12-03 17:05:04 +00:00

13 lines
406 B
Python

--- setup.py.orig 2014-12-03 15:50:50 UTC
+++ setup.py
@@ -74,8 +74,8 @@ setup(
packages=['barman', ],
scripts=['bin/barman', ],
data_files=[
- ('share/man/man1', ['doc/barman.1']),
- ('share/man/man5', ['doc/barman.5']),
+ ('man/man1', ['doc/barman.1']),
+ ('man/man5', ['doc/barman.5']),
],
license='GPL-3.0',
description=__doc__.split("\n")[0],