Lines 38-45
Link Here
|
38 |
|
38 |
|
39 |
INSTALL_SCHEMES = { |
39 |
INSTALL_SCHEMES = { |
40 |
'unix_prefix': { |
40 |
'unix_prefix': { |
41 |
'purelib': '$base/@@GENTOO_LIBDIR@@/python$py_version_short/site-packages', |
41 |
'purelib': '$base/$libdirname/python$py_version_short/site-packages', |
42 |
'platlib': '$platbase/@@GENTOO_LIBDIR@@/python$py_version_short/site-packages', |
42 |
'platlib': '$platbase/$libdirname/python$py_version_short/site-packages', |
43 |
'headers': '$base/include/python$py_version_short/$dist_name', |
43 |
'headers': '$base/include/python$py_version_short/$dist_name', |
44 |
'scripts': '$base/bin', |
44 |
'scripts': '$base/bin', |
45 |
'data' : '$base', |
45 |
'data' : '$base', |
Lines 289-294
Link Here
|
289 |
# everything else. |
289 |
# everything else. |
290 |
self.config_vars['base'] = self.install_base |
290 |
self.config_vars['base'] = self.install_base |
291 |
self.config_vars['platbase'] = self.install_platbase |
291 |
self.config_vars['platbase'] = self.install_platbase |
|
|
292 |
self.config_vars['libdirname'] = self.install_libdirname |
292 |
|
293 |
|
293 |
if DEBUG: |
294 |
if DEBUG: |
294 |
from pprint import pprint |
295 |
from pprint import pprint |
Lines 394-399
Link Here
|
394 |
|
395 |
|
395 |
self.install_base = self.prefix |
396 |
self.install_base = self.prefix |
396 |
self.install_platbase = self.exec_prefix |
397 |
self.install_platbase = self.exec_prefix |
|
|
398 |
self.install_libdirname = get_config_vars('LIBDIRNAME')[0] |
399 |
if self.install_libdirname is None: |
400 |
self.install_libdirname = @@GENTOO_LIBDIR@@ |
401 |
|
397 |
self.select_scheme("unix_prefix") |
402 |
self.select_scheme("unix_prefix") |
398 |
|
403 |
|
399 |
# finalize_unix () |
404 |
# finalize_unix () |