openbsd-ports/x11/py-osd/patches/patch-setup_py
alek f40ec3c360 Import py-osd 0.2.14
PyOSD is a python module for displaying text on your X display, much
like the "On Screen Displays" used on TVs and some monitors.
2006-10-14 16:35:26 +00:00

13 lines
471 B
Plaintext

$OpenBSD: patch-setup_py,v 1.1.1.1 2006/10/14 16:35:26 alek Exp $
--- setup.py.orig Thu Jul 20 01:11:22 2006
+++ setup.py Thu Jul 20 01:11:59 2006
@@ -11,6 +11,7 @@ setup (name = "pyosd",
packages = ['pyosd'],
ext_modules = \
[Extension("_pyosd", ["_pyosd.c"],
- libraries=["xosd"])]
+ libraries=["xosd"], include_dirs=["!!LOCALBASE!!/include"],
+ library_dirs=['!!LOCALBASE!!/lib'])]
)