diff options
author | Sergei Kolobov <sergei@FreeBSD.org> | 2004-10-18 10:22:40 +0000 |
---|---|---|
committer | Sergei Kolobov <sergei@FreeBSD.org> | 2004-10-18 10:22:40 +0000 |
commit | 5bd97c5b5ef28174aa64708c5505ba2c1c3b80f2 (patch) | |
tree | 06bc8662918b6897d710a0099385f4adf5d6a955 /mail/getmail/files/patch-setup.py | |
parent | - update to 0.80 release (diff) |
- Simplify Makefile install target by utilizing USE_PYDISTUTILS
- Update pkg-descr and clarify COMMENT
- Add pkg-message warning the user about the configuration file syntax
change from 3.x to 4.x
PR: ports/72720
Submitted by: Linh Pham (maintainer)
Obtained from: Nuno Teixeira <nunotex@freeshell.org>
Notes
Notes:
svn path=/head/; revision=119717
Diffstat (limited to 'mail/getmail/files/patch-setup.py')
-rw-r--r-- | mail/getmail/files/patch-setup.py | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/mail/getmail/files/patch-setup.py b/mail/getmail/files/patch-setup.py new file mode 100644 index 000000000000..e25b9f14cd9f --- /dev/null +++ b/mail/getmail/files/patch-setup.py @@ -0,0 +1,41 @@ +--- setup.py.orig ++++ setup.py +@@ -39,12 +39,11 @@ + datadir or prefix, + 'share', + 'doc', +- 'getmail-%s' % __version__ ++ 'getmail' + ) + + GETMAILMANDIR = os.path.join( + datadir or prefix, +- 'share', + 'man', + 'man1' + ) +@@ -97,24 +96,6 @@ + 'getmail_mbox' + ], + data_files=[ +- (GETMAILDOCDIR, [ +- './README', +- 'docs/BUGS', +- 'docs/COPYING', +- 'docs/CHANGELOG', +- 'docs/TODO', +- 'docs/THANKS', +- 'docs/configuration.html', +- 'docs/configuration.txt', +- 'docs/documentation.html', +- 'docs/documentation.txt', +- 'docs/faq.html', +- 'docs/faq.txt', +- 'docs/getmaildocs.css', +- 'docs/getmailrc-examples', +- 'docs/troubleshooting.html', +- 'docs/troubleshooting.txt', +- ]), + (GETMAILMANDIR, [ + 'docs/getmail.1', + 'docs/getmail_maildir.1', |