2024-09-09 08:52:07 +00:00
|
|
|
#
|
|
|
|
# cpan-base providers various perl related information needed for building
|
|
|
|
# cpan modules
|
|
|
|
#
|
|
|
|
FILES_${PN} += "${libdir}/perl ${datadir}/perl"
|
|
|
|
|
|
|
|
DEPENDS += "${@["perl", "perl-native"][(bb.data.inherits_class('native', d))]}"
|
2024-09-09 08:57:42 +00:00
|
|
|
RDEPENDS_${PN} += "${@["perl", ""][(bb.data.inherits_class('native', d))]}"
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
PERL_OWN_DIR = "${@["", "/perl-native"][(bb.data.inherits_class('native', d))]}"
|
|
|
|
|
|
|
|
# Determine the staged version of perl from the perl configuration file
|
2024-09-09 08:57:42 +00:00
|
|
|
# Assign vardepvalue, because otherwise signature is changed before and after
|
|
|
|
# perl is built (from None to real version in config.sh).
|
|
|
|
get_perl_version[vardepvalue] = "${PERL_OWN_DIR}"
|
2024-09-09 08:52:07 +00:00
|
|
|
def get_perl_version(d):
|
2024-09-09 08:57:42 +00:00
|
|
|
import re
|
|
|
|
cfg = d.expand('${STAGING_LIBDIR}${PERL_OWN_DIR}/perl/config.sh')
|
|
|
|
try:
|
|
|
|
f = open(cfg, 'r')
|
|
|
|
except IOError:
|
|
|
|
return None
|
|
|
|
l = f.readlines();
|
|
|
|
f.close();
|
|
|
|
r = re.compile("^version='(\d*\.\d*\.\d*)'")
|
|
|
|
for s in l:
|
|
|
|
m = r.match(s)
|
|
|
|
if m:
|
|
|
|
return m.group(1)
|
|
|
|
return None
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
# Determine where the library directories are
|
|
|
|
def perl_get_libdirs(d):
|
2024-09-09 08:57:42 +00:00
|
|
|
libdir = d.getVar('libdir', True)
|
|
|
|
if is_target(d) == "no":
|
|
|
|
libdir += '/perl-native'
|
|
|
|
libdir += '/perl'
|
|
|
|
return libdir
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
def is_target(d):
|
|
|
|
if not bb.data.inherits_class('native', d):
|
|
|
|
return "yes"
|
|
|
|
return "no"
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
PERLLIBDIRS := "${@perl_get_libdirs(d)}"
|
|
|
|
PERLVERSION := "${@get_perl_version(d)}"
|
|
|
|
PERLVERSION[vardepvalue] = ""
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
FILES_${PN}-dbg += "${PERLLIBDIRS}/auto/*/.debug \
|
|
|
|
${PERLLIBDIRS}/auto/*/*/.debug \
|
2024-09-09 08:57:42 +00:00
|
|
|
${PERLLIBDIRS}/auto/*/*/*/.debug \
|
|
|
|
${PERLLIBDIRS}/vendor_perl/${PERLVERSION}/auto/*/.debug \
|
|
|
|
${PERLLIBDIRS}/vendor_perl/${PERLVERSION}/auto/*/*/.debug \
|
|
|
|
${PERLLIBDIRS}/vendor_perl/${PERLVERSION}/auto/*/*/*/.debug \
|
|
|
|
"
|