Magellan Linux

Annotation of /smage/trunk/include/cpan.sminc

Parent Directory Parent Directory | Revision Log Revision Log


Revision 11534 - (hide annotations) (download)
Thu Dec 21 09:40:01 2017 UTC (6 years, 5 months ago) by niro
File size: 1678 byte(s)
-updated from upstream
1 niro 5710 # $Id$
2 niro 1838 # CPAN functions
3    
4     # needs perl
5     sminclude perl
6    
7     # needed extra vars:
8     # ${CPAN_AUTHOR}: needed, author of the CPAN-module
9     [[ -z ${CPAN_AUTHOR} ]] && die "cpan.sminc: \$CPAN_AUTHOR not given!"
10    
11 niro 5867 if [[ ${BASH_VERSINFO[0]} -le 3 ]]
12     then
13     CPAN_AUTHOR_UPPER=$(echo ${CPAN_AUTHOR} | tr '[a-z]' '[A-Z]')
14     CPAN_AUTHOR_LOWER=$(echo ${CPAN_AUTHOR} | tr '[A-Z]' '[a-z]')
15     else
16     CPAN_AUTHOR_UPPER="${CPAN_AUTHOR^^}"
17     CPAN_AUTHOR_LOWER="${CPAN_AUTHOR,,}"
18     fi
19 niro 1838
20     : ${CPAN_MODULE="${PNAME}"}
21 niro 5983 : ${CPAN_TARBALL_SUFFIX="gz"}
22 niro 1838
23     # some sane defaults
24 niro 3582 : ${PCAT="dev-perl"}
25 niro 1838 # always lower letters
26 niro 11534 #: ${HOMEPAGE="http://search.cpan.org/~${CPAN_AUTHOR_LOWER}/"}
27     : ${HOMEPAGE="http://search.cpan.org/dist/${CPAN_MODULE}/"}
28 niro 1838 : ${SRCFILE="${CPAN_MODULE}-${PVER}.tar.gz"}
29     : ${SRCDIR="${BUILDDIR}/${CPAN_MODULE}-${PVER}"}
30    
31     DEPEND="${DEPEND}
32 niro 11534 >= dev-lang/perl-5.24.1"
33 niro 1838
34     SRC_URI=(
35     ${SRC_URI[*]}
36     http://search.cpan.org/CPAN/authors/id/${CPAN_AUTHOR_UPPER:0:1}/${CPAN_AUTHOR_UPPER:0:2}/${CPAN_AUTHOR_UPPER}/${SRCFILE}
37     mirror://${PNAME}/${SRCFILE}
38     )
39    
40 niro 5983 UP2DATE="updatecmd_perl ${CPAN_MODULE} ${CPAN_TARBALL_SUFFIX}"
41 niro 5710
42 niro 1838 cpan_src_prepare()
43     {
44     perl_src_prepare || die
45     }
46    
47     cpan_src_compile()
48     {
49     local configure_opts="$@"
50     perl_src_compile ${configure_opts} || die
51     }
52    
53 niro 3582 cpan_src_check()
54     {
55     return 0
56     }
57    
58     cpan_multilib_src_compile()
59     {
60     local configure_opts="$@"
61     perl_multilib_src_compile ${configure_opts} || die
62     }
63    
64 niro 1838 cpan_src_install()
65     {
66     perl_src_install || die
67     }
68    
69 niro 3582 cpan_multilib_src_install()
70     {
71     perl_multilib_src_install || die
72     }
73    
74     export_inherits cpan src_prepare src_check
75     if [[ ${MULTILIB_BUILD} = true ]]
76     then
77     export_inherits cpan_multilib src_compile src_install
78     else
79     export_inherits cpan src_compile src_install
80     fi