Magellan Linux

Diff of /trunk/include/python.sminc

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 8123 by niro, Tue Jul 12 17:20:55 2011 UTC revision 8643 by niro, Wed Jul 27 11:10:28 2011 UTC
# Line 1  Line 1 
1  # $Header: /magellan-cvs/smage/include/python.sminc,v 1.4 2007/01/23 20:46:41 niro Exp $  # $Id$
2    
3    # needed for mbindir()
4    sminclude mtools
5    
6  # get the major.minor current installed python version  # get the major.minor current installed python version
7  # -> ex 2.4  # -> ex 2.4
# Line 14  get_python_version() Line 17  get_python_version()
17  get_python_libdir()  get_python_libdir()
18  {  {
19   local pylib   local pylib
20   pylib=$(python -c 'from distutils import sysconfig; print sysconfig.get_python_version()')   pylib=$(python -c 'from distutils import sysconfig; print sysconfig.get_python_lib()')
21   echo "${pylib}"   echo "${pylib}"
22   return 0   return 0
23  }  }
# Line 50  python_src_install() Line 53  python_src_install()
53    
54   if [[ -e setup.py ]]   if [[ -e setup.py ]]
55   then   then
56   python setup.py install --no-compile --root ${BINDIR} "$@" || die   python setup.py install --no-compile --root $(mbindir) "$@" || die
57   elif [[ -e waf ]]   elif [[ -e waf ]]
58   then   then
59   python waf install --destdir="${BINDIR}" "$@" || die   python waf install --destdir="$(mbindir)" "$@" || die
60   else   else
61   mmake DESTDIR=${BINDIR} install || die   mmake DESTDIR=$(mbindir) install || die
62   fi   fi
63    
64   local i   local i

Legend:
Removed from v.8123  
changed lines
  Added in v.8643