Magellan Linux

Diff of /trunk/include/python.sminc

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

revision 6882 by niro, Thu Sep 23 18:16:10 2010 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 31  python_src_compile() Line 34  python_src_compile()
34   if [[ -e setup.py ]]   if [[ -e setup.py ]]
35   then   then
36   python setup.py build "$@" || die   python setup.py build "$@" || die
37     elif [[ -e waf ]]
38     then
39     python waf configure --prefix=/usr --libdir=/usr/$(mlibdir) "$@" || die
40     python waf build "$@" || die
41   elif [[ -e configure ]]   elif [[ -e configure ]]
42   then   then
43   mconfigure "$@" || die   mconfigure "$@" || die
# Line 46  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 ]]
58     then
59     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.6882  
changed lines
  Added in v.8643