summaryrefslogtreecommitdiff
path: root/lang/py-cxfreeze
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2015-03-21 19:26:47 +0000
committerjoerg <joerg@pkgsrc.org>2015-03-21 19:26:47 +0000
commitcf341841b3d39d74fd1b1ae459611a6dec0b9155 (patch)
tree8ccd983eda2e5efdf8063907e2899fd84dd38c1c /lang/py-cxfreeze
parent3b362a498b9dcc2b2dbf82fb3004c3caefe05f54 (diff)
downloadpkgsrc-cf341841b3d39d74fd1b1ae459611a6dec0b9155.tar.gz
Provide library path to libpython too.
Diffstat (limited to 'lang/py-cxfreeze')
-rw-r--r--lang/py-cxfreeze/distinfo4
-rw-r--r--lang/py-cxfreeze/patches/patch-aa9
2 files changed, 7 insertions, 6 deletions
diff --git a/lang/py-cxfreeze/distinfo b/lang/py-cxfreeze/distinfo
index 3ea9cd21e5b..09dff8740db 100644
--- a/lang/py-cxfreeze/distinfo
+++ b/lang/py-cxfreeze/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.3 2012/05/22 08:28:47 obache Exp $
+$NetBSD: distinfo,v 1.4 2015/03/21 19:26:47 joerg Exp $
SHA1 (cx_Freeze-4.2.3.tar.gz) = 860de723365f2994f94f242f1147f89e09ed1ee9
RMD160 (cx_Freeze-4.2.3.tar.gz) = 92dbdd14315bc4b02d98649b8c6b2982b06ad2e7
Size (cx_Freeze-4.2.3.tar.gz) = 62436 bytes
-SHA1 (patch-aa) = fd0b9d5537fac3c9d881b55f5eb8173a05adf109
+SHA1 (patch-aa) = a2e592b9de2a59cac2563a02cdac8bed1385d2cd
diff --git a/lang/py-cxfreeze/patches/patch-aa b/lang/py-cxfreeze/patches/patch-aa
index 2d7805509bf..86332ef69f4 100644
--- a/lang/py-cxfreeze/patches/patch-aa
+++ b/lang/py-cxfreeze/patches/patch-aa
@@ -1,4 +1,4 @@
-$NetBSD: patch-aa,v 1.2 2012/05/22 08:28:47 obache Exp $
+$NetBSD: patch-aa,v 1.3 2015/03/21 19:26:47 joerg Exp $
--- setup.py.orig 2011-03-19 17:27:27.000000000 +0000
+++ setup.py
@@ -10,16 +10,17 @@ $NetBSD: patch-aa,v 1.2 2012/05/22 08:28:47 obache Exp $
libraries = self.get_libraries(ext)
extraArgs = ext.extra_link_args or []
if sys.platform != "win32":
-@@ -78,6 +79,8 @@ class build_ext(distutils.command.build_
+@@ -78,6 +79,9 @@ class build_ext(distutils.command.build_
extraArgs.extend(vars["BASEMODLIBS"].split())
if vars["LOCALMODLIBS"]:
extraArgs.extend(vars["LOCALMODLIBS"].split())
+ else:
+ runtimeLibraryDirs.append(sys.prefix + "/lib")
++ libraryDirs.append(sys.prefix + "/lib")
extraArgs.append("-s")
elif ext.name.find("Win32GUI") > 0 \
and self.compiler.compiler_type == "mingw32":
-@@ -85,7 +88,7 @@ class build_ext(distutils.command.build_
+@@ -85,7 +89,7 @@ class build_ext(distutils.command.build_
self.compiler.link_executable(objects, fullName,
libraries = libraries,
library_dirs = libraryDirs,
@@ -28,7 +29,7 @@ $NetBSD: patch-aa,v 1.2 2012/05/22 08:28:47 obache Exp $
extra_postargs = extraArgs,
debug = self.debug)
-@@ -238,7 +241,7 @@ setup(name = "cx_Freeze",
+@@ -238,7 +242,7 @@ setup(name = "cx_Freeze",
maintainer="Anthony Tuininga",
maintainer_email="anthony.tuininga@gmail.com",
url = "http://cx-freeze.sourceforge.net",