openbsd-ports/x11/pypanel/patches/patch-setup_py
jasper f3267b41ea import pypanel 2.4
PyPanel is a lightweight panel/taskbar written in Python and C for X11
window managers.  It can be easily customized to match any desktop theme
or taste. PyPanel works with WindowMaker and EWMH compliant WMs
(Kahakai, Openbox, PekWM, FVWM, etc).

help from steven@, ok ajacoutot@
2006-12-21 09:09:26 +00:00

26 lines
958 B
Plaintext

$OpenBSD: patch-setup_py,v 1.1.1.1 2006/12/21 09:09:26 jasper Exp $
--- setup.py.orig Mon Dec 18 08:02:19 2006
+++ setup.py Mon Dec 18 08:05:38 2006
@@ -3,10 +3,10 @@ from distutils.core import Extension, se
from distutils import sysconfig
# Full paths to imlib2-config and freetype-config, adjust as needed -
-configs = ["/usr/bin/freetype-config", "/usr/bin/imlib2-config"]
+configs = ["!!X11BASE!!/bin/freetype-config", "!!LOCALBASE!!/bin/imlib2-config"]
# Adjust or add any additional include directories here -
-idirs = ["/usr/X11R6/include"]
+idirs = ["!!X11BASE!!/include"]
# Add any additional library directories here -
ldirs = []
@@ -15,7 +15,7 @@ ldirs = []
cargs = ["-Wall"]
# Full path to libImlib2 shared library
-imlib2 = "/usr/lib/libImlib2.so.1"
+imlib2 = "libImlib2.so"
#------------------------------------------------------------------------------
# The rest of this script should not need to be modified!