Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
$NetBSD: patch-cs,v 1.2 2007/12/03 21:54:31 bouyer Exp $
--- misc/xen-python-path.orig 2007-11-15 00:35:27.000000000 +0100
+++ misc/xen-python-path 2007-12-03 12:45:29.000000000 +0100
@@ -22,14 +22,14 @@
# take the first installed instance of auxbin that we find, and then run it
# to determine the correct path, appending that to sys.path.
-AUXBIN = 'xen/util/auxbin.py'
+AUXBIN = 'site-packages/xen/util/auxbin.py'
import os
import os.path
import sys
for p in ['python%s' % sys.version[:3], 'python']:
- for l in ['/usr/lib64', '/usr/lib']:
+ for l in ['@PREFIX@/lib']:
for k in ['', 'site-packages/']:
d = os.path.join(l, p, k)
if os.path.exists(os.path.join(d, AUXBIN)):