diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2005-09-17 01:45:52 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2005-09-17 01:45:52 +0000 |
commit | 5a3210b445d6dd1ecc684f281f197422adbbd2c0 (patch) | |
tree | ee9d0937920e9af593e136fcf1cbbb3f21c426ac | |
parent | 0357dbb5f22f07ef1c04e22e81c622ea33a0b818 (diff) | |
download | ports-5a3210b445d6dd1ecc684f281f197422adbbd2c0.tar.gz ports-5a3210b445d6dd1ecc684f281f197422adbbd2c0.zip |
Notes
-rw-r--r-- | audio/py-libtunepimp/files/patch-python::tunepimp::tunepimp.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/audio/py-libtunepimp/files/patch-python::tunepimp::tunepimp.py b/audio/py-libtunepimp/files/patch-python::tunepimp::tunepimp.py index cab293d3a489..5bf71dc94d8e 100644 --- a/audio/py-libtunepimp/files/patch-python::tunepimp::tunepimp.py +++ b/audio/py-libtunepimp/files/patch-python::tunepimp::tunepimp.py @@ -1,6 +1,6 @@ ---- python/tunepimp/tunepimp.py.orig Sat Aug 20 13:53:49 2005 -+++ python/tunepimp/tunepimp.py Sat Aug 20 13:54:58 2005 -@@ -137,7 +137,13 @@ +--- python/tunepimp/tunepimp.py.orig Sat Jul 2 22:13:08 2005 ++++ python/tunepimp/tunepimp.py Fri Sep 16 22:44:39 2005 +@@ -137,7 +137,16 @@ if sys.platform == "linux2": lib = "libtunepimp.so.3" else: @@ -11,7 +11,10 @@ + if sys.platform == "freebsd6": + lib = "libtunepimp.so.3" + else: -+ raise TunePimpError, "Unknown platform: " + sys.platform ++ if sys.platform == "freebsd4": ++ lib = "libtunepimp.so.3" ++ else: ++ raise TunePimpError, "Unknown platform: " + sys.platform pathList = [ ] ldLibPath = os.environ.get('LD_LIBRARY_PATH') |