diff options
author | Roman Bogorodskiy <novel@FreeBSD.org> | 2005-04-05 17:17:04 +0000 |
---|---|---|
committer | Roman Bogorodskiy <novel@FreeBSD.org> | 2005-04-05 17:17:04 +0000 |
commit | d6048e6649485a6a515d669e6ada08625153d168 (patch) | |
tree | 97df2adb9764b19784cb0a1682c341ea646e7293 /misc/py-osd/files/patch-setup.py | |
parent | Update to 3.6.6. (diff) |
- use the original extension name "pyosd", not "osd"
- install docs
PR: 78121
Submitted by: novel
Approved by: maintainer timeout
Notes
Notes:
svn path=/head/; revision=132571
Diffstat (limited to 'misc/py-osd/files/patch-setup.py')
-rw-r--r-- | misc/py-osd/files/patch-setup.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/misc/py-osd/files/patch-setup.py b/misc/py-osd/files/patch-setup.py new file mode 100644 index 000000000000..72f3812256bb --- /dev/null +++ b/misc/py-osd/files/patch-setup.py @@ -0,0 +1,15 @@ +--- setup.py.orig Thu Jan 27 15:46:22 2005 ++++ setup.py Sat Feb 26 18:43:15 2005 +@@ -8,9 +8,11 @@ + url = "http://repose.cx/pyosd/", + author = "Damien Elmes", + author_email = "pyosd@repose.cx", ++ include_dirs = ['/usr/X11R6/include'], + packages = ['pyosd'], + ext_modules = \ + [Extension("_pyosd", ["_pyosd.c"], +- libraries=["xosd"])] ++ libraries=["xosd"], ++ library_dirs = ['/usr/X11R6/lib'])] + ) + |