Magellan Linux

Diff of /trunk/include/cpan.sminc

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

branches/magellan-next/include/cpan.sminc revision 9863 by niro, Fri Jan 13 19:22:05 2012 UTC trunk/include/cpan.sminc revision 11553 by niro, Mon Mar 12 21:18:55 2012 UTC
# Line 40  cpan_src_compile() Line 40  cpan_src_compile()
40   perl_src_compile ${configure_opts} || die   perl_src_compile ${configure_opts} || die
41  }  }
42    
43    cpan_src_check()
44    {
45     return 0
46    }
47    
48    cpan_multilib_src_compile()
49    {
50     local configure_opts="$@"
51     perl_multilib_src_compile ${configure_opts} || die
52    }
53    
54  cpan_src_install()  cpan_src_install()
55  {  {
56   perl_src_install || die   perl_src_install || die
57  }  }
58    
59  export_inherits cpan src_prepare src_compile src_install  cpan_multilib_src_install()
60    {
61     perl_multilib_src_install || die
62    }
63    
64    export_inherits cpan src_prepare src_check
65    if [[ ${MULTILIB_BUILD} = true ]]
66    then
67     export_inherits cpan_multilib src_compile src_install
68    else
69     export_inherits cpan src_compile src_install
70    fi

Legend:
Removed from v.9863  
changed lines
  Added in v.11553