mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
4258f13dc4
- Add STRONGPLAYER option (default off) - Add files/patch-lib__pychess__widgets__newGameDialog.py - Fix path of the dependency py-gstreamer - Remove MD5 checksum from distinfo - Remove files/patch-pychess - Update WWW site
13 lines
467 B
Python
13 lines
467 B
Python
--- ./setup.py.orig 2010-12-16 11:38:10.000000000 +0100
|
|
+++ ./setup.py 2010-12-16 11:38:42.000000000 +0100
|
|
@@ -90,7 +90,8 @@
|
|
DATA_FILES += [('share/gtksourceview-1.0/language-specs', ['gtksourceview-1.0/language-specs/pgn.lang'])]
|
|
|
|
# Manpages
|
|
-DATA_FILES += [('share/man/man1', ['manpages/pychess.1.gz'])]
|
|
+if not os.environ.has_key('NO_INSTALL_MANPAGES'):
|
|
+ DATA_FILES += [('man/man1', ['manpages/pychess.1.gz'])]
|
|
|
|
# Language
|
|
pofile = "LC_MESSAGES/pychess"
|