diff options
Diffstat (limited to 'meta-perl/recipes-perl/libnet/libnet-dns-perl_1.24.bb')
| -rw-r--r-- | meta-perl/recipes-perl/libnet/libnet-dns-perl_1.24.bb | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.24.bb b/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.24.bb new file mode 100644 index 0000000000..8994f692b4 --- /dev/null +++ b/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.24.bb | |||
| @@ -0,0 +1,66 @@ | |||
| 1 | DESCRIPTION = "This package contains the DNS.pm module with friends." | ||
| 2 | HOMEPAGE = "http://www.net-dns.org/" | ||
| 3 | SECTION = "libs" | ||
| 4 | LICENSE = "MIT" | ||
| 5 | |||
| 6 | LIC_FILES_CHKSUM = "file://README;beginline=252;endline=269;md5=27db37b42cd1a5173a53922d67072bcb" | ||
| 7 | |||
| 8 | DEPENDS += "perl" | ||
| 9 | |||
| 10 | SRC_URI = "http://search.cpan.org/CPAN/authors/id/N/NL/NLNETLABS/Net-DNS-${PV}.tar.gz" | ||
| 11 | |||
| 12 | SRC_URI[md5sum] = "1bf07817bb272d412a737ecc2347d70b" | ||
| 13 | SRC_URI[sha256sum] = "11a6c2ba6cb1c6640f01c9bbf2036bcbe3974232e9b939ab94985230c92cde63" | ||
| 14 | |||
| 15 | UPSTREAM_CHECK_REGEX = "Net\-DNS\-(?P<pver>(\d+\.\d+))(?!_\d+).tar" | ||
| 16 | |||
| 17 | S = "${WORKDIR}/Net-DNS-${PV}" | ||
| 18 | |||
| 19 | EXTRA_CPANFLAGS = "EXPATLIBPATH=${STAGING_LIBDIR} EXPATINCPATH=${STAGING_INCDIR}" | ||
| 20 | |||
| 21 | inherit cpan ptest-perl | ||
| 22 | |||
| 23 | RDEPENDS_${PN} = " \ | ||
| 24 | libdigest-hmac-perl \ | ||
| 25 | perl-module-base \ | ||
| 26 | perl-module-constant \ | ||
| 27 | perl-module-digest-md5 \ | ||
| 28 | perl-module-digest-sha \ | ||
| 29 | perl-module-file-spec \ | ||
| 30 | perl-module-integer \ | ||
| 31 | perl-module-io-file \ | ||
| 32 | perl-module-io-select \ | ||
| 33 | perl-module-io-socket \ | ||
| 34 | perl-module-io-socket-ip \ | ||
| 35 | perl-module-mime-base64 \ | ||
| 36 | perl-module-scalar-util \ | ||
| 37 | perl-module-test-more \ | ||
| 38 | perl-module-time-local \ | ||
| 39 | " | ||
| 40 | |||
| 41 | RRECOMMENDS_${PN} += " \ | ||
| 42 | libnet-dns-sec-perl \ | ||
| 43 | " | ||
| 44 | |||
| 45 | RDEPENDS_${PN}-ptest += " \ | ||
| 46 | perl-module-encode \ | ||
| 47 | perl-module-encode-byte \ | ||
| 48 | perl-module-extutils-mm \ | ||
| 49 | perl-module-extutils-mm-unix \ | ||
| 50 | perl-module-overload \ | ||
| 51 | " | ||
| 52 | |||
| 53 | python __anonymous () { | ||
| 54 | # rather than use "find" to determine libc-*.so, | ||
| 55 | # statically export the known paths for glibc and musl | ||
| 56 | import os | ||
| 57 | if d.getVar('TCLIBC') == "glibc": | ||
| 58 | os.environ["LIBC"] = "${STAGING_BASELIBDIR}/libc.so.6" | ||
| 59 | elif d.getVar('TCLIBC') == "musl": | ||
| 60 | os.environ["LIBC"] = "${STAGING_LIBDIR}/libc.so" | ||
| 61 | else: | ||
| 62 | raise bb.parse.SkipRecipe("incompatible with %s C library" % | ||
| 63 | d.getVar('TCLIBC')) | ||
| 64 | } | ||
| 65 | |||
| 66 | BBCLASSEXTEND = "native" | ||
