Magellan Linux

Diff of /smage/trunk/include/python.sminc

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

revision 1899 by niro, Tue Dec 7 21:21:11 2010 UTC revision 1900 by niro, Wed Nov 9 09:30:34 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  # get the major.minor current installed python version  # get the major.minor current installed python version
4  # -> ex 2.4  # -> ex 2.4
# Line 14  get_python_version() Line 14  get_python_version()
14  get_python_libdir()  get_python_libdir()
15  {  {
16   local pylib   local pylib
17   pylib=$(python -c 'from distutils import sysconfig; print sysconfig.get_python_version()')   pylib=$(python -c 'from distutils import sysconfig; print sysconfig.get_python_lib()')
18   echo "${pylib}"   echo "${pylib}"
19   return 0   return 0
20  }  }
21    
22    get_python_includedir()
23    {
24     local pyinc
25     pyinc=$(python -c 'from distutils import sysconfig; print sysconfig.get_python_inc()')
26     echo "${pyinc}"
27     return 0
28    }
29    
30  python_src_prepare()  python_src_prepare()
31  {  {
32   munpack ${SRCFILE} || die   munpack ${SRCFILE} || die
33  }  }
34    
35  python_src_compile()  python_docompile()
36  {  {
  cd ${SRCDIR}  
   
37   if [[ -e setup.py ]]   if [[ -e setup.py ]]
38   then   then
39   python setup.py build "$@" || die   python setup.py build $@ || die
40     elif [[ -e waf ]]
41     then
42     python waf configure --prefix=/usr --libdir=/usr/$(mlibdir) $@ || die
43     python waf build $@ || die
44   elif [[ -e configure ]]   elif [[ -e configure ]]
45   then   then
46   mconfigure "$@" || die   mconfigure $@ || die
47   mmake || die   mmake || die
48   else   else
49   mmake || die   mmake || die
50   fi   fi
51  }  }
52    
53  python_src_install()  python_doinstall()
54  {  {
  cd ${SRCDIR}  
   
55   if [[ -e setup.py ]]   if [[ -e setup.py ]]
56   then   then
57   python setup.py install --no-compile --root ${BINDIR} "$@" || die   python setup.py install --no-compile --root ${BINDIR} $@ || die
58     elif [[ -e waf ]]
59     then
60     python waf install --destdir=${BINDIR} $@ || die
61   else   else
62   mmake DESTDIR=${BINDIR} install || die   mmake DESTDIR=${BINDIR} install || die
63   fi   fi
64    }
65    
66    python_src_compile()
67    {
68     cd ${SRCDIR}
69     python_docompile || die
70    }
71    
72    python_src_install()
73    {
74     cd ${SRCDIR}
75     python_doinstall || die
76    
77   local i   local i
78   for i in ABOUT-NLS AUTHORS BUGS CHANGES ChangeLog COPYING \   for i in ABOUT-NLS AUTHORS BUGS CHANGES ChangeLog COPYING \

Legend:
Removed from v.1899  
changed lines
  Added in v.1900