summaryrefslogtreecommitdiffstats
path: root/meta/recipes-lsb4
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2015-10-09 22:59:03 +0200
committerTudor Florea <tudor.florea@enea.com>2015-10-09 22:59:03 +0200
commit972dcfcdbfe75dcfeb777150c136576cf1a71e99 (patch)
tree97a61cd7e293d7ae9d56ef7ed0f81253365bb026 /meta/recipes-lsb4
downloadpoky-972dcfcdbfe75dcfeb777150c136576cf1a71e99.tar.gz
initial commit for Enea Linux 5.0 arm
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta/recipes-lsb4')
-rw-r--r--meta/recipes-lsb4/libpng/libpng12_1.2.51.bb33
-rw-r--r--meta/recipes-lsb4/perl/libclass-isa-perl_0.36.bb31
-rw-r--r--meta/recipes-lsb4/perl/libdumpvalue-perl_1.17.bb18
-rw-r--r--meta/recipes-lsb4/perl/libenv-perl_1.04.bb21
-rw-r--r--meta/recipes-lsb4/perl/libfile-checktree-perl_4.41.bb32
-rw-r--r--meta/recipes-lsb4/perl/libi18n-collate-perl_1.02.bb21
-rw-r--r--meta/recipes-lsb4/perl/libpod-plainer-perl_1.04.bb23
7 files changed, 179 insertions, 0 deletions
diff --git a/meta/recipes-lsb4/libpng/libpng12_1.2.51.bb b/meta/recipes-lsb4/libpng/libpng12_1.2.51.bb
new file mode 100644
index 0000000000..6b2dcba1f1
--- /dev/null
+++ b/meta/recipes-lsb4/libpng/libpng12_1.2.51.bb
@@ -0,0 +1,33 @@
1SUMMARY = "PNG image format decoding library"
2HOMEPAGE = "http://www.libpng.org/"
3SECTION = "libs"
4LICENSE = "Libpng"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=ec135c8490e3b3d4ba2cc21f84c3a294 \
6 file://png.h;beginline=314;endline=428;md5=151cf86c4efc2a7400f8a9a61d743d8e"
7DEPENDS = "zlib"
8
9PN = "libpng12"
10S = "${WORKDIR}/libpng-${PV}"
11
12SRC_URI = "${SOURCEFORGE_MIRROR}/project/libpng/libpng12/${PV}/libpng-${PV}.tar.xz"
13
14SRC_URI[md5sum] = "4efba67fa5aa2b785c6fcec2cc3e90c9"
15SRC_URI[sha256sum] = "c7d7b813b022afd70474f78bcc3655c7bb54edbf28dd4652e5521cbb6da56d4a"
16
17BINCONFIG_GLOB = "${PN}-config"
18
19inherit autotools binconfig pkgconfig
20
21do_install_append() {
22 # The follow link files link to corresponding png12*.h and libpng12* files
23 # They conflict with higher verison, so drop them
24 unlink ${D}/${includedir}/png.h
25 unlink ${D}/${includedir}/pngconf.h
26
27 unlink ${D}/${libdir}/libpng.la
28 unlink ${D}/${libdir}/libpng.so
29 unlink ${D}/${libdir}/libpng.a
30 unlink ${D}/${libdir}/pkgconfig/libpng.pc
31
32 unlink ${D}/${bindir}/libpng-config
33}
diff --git a/meta/recipes-lsb4/perl/libclass-isa-perl_0.36.bb b/meta/recipes-lsb4/perl/libclass-isa-perl_0.36.bb
new file mode 100644
index 0000000000..f93841dc7f
--- /dev/null
+++ b/meta/recipes-lsb4/perl/libclass-isa-perl_0.36.bb
@@ -0,0 +1,31 @@
1SUMMARY = "Perl module for reporting the search path for a class's ISA tree"
2DESCRIPTION = "Suppose you have a class (like Food::Fish::Fishstick) that is derived, \
3via its @ISA, from one or more superclasses (as Food::Fish::Fishstick is from Food::Fish,\
4Life::Fungus, and Chemicals), and some of those superclasses may themselves each be\
5derived, via its @ISA, from one or more superclasses (as above).\
6\
7When, then, you call a method in that class ($fishstick->calories), Perl first searches\
8there for that method, but if it's not there, it goes searching in its superclasses, and\
9so on, in a depth-first (or maybe "height-first" is the word) search. In the above example,\
10it'd first look in Food::Fish, then Food, then Matter, then Life::Fungus, then Life, then\
11Chemicals.\
12\
13This library, Class::ISA, provides functions that return that list -- the list\
14(in order) of names of classes Perl would search to find a method, with no duplicates."
15
16HOMEPAGE = "http://search.cpan.org/dist/Class-ISA/"
17SECTION = "libs"
18LICENSE = "Artistic-1.0 | GPL-1.0+"
19
20LIC_FILES_CHKSUM = "file://README;beginline=107;endline=111;md5=6a5c6842a63cfe4dab1f66e2350e4d25"
21
22SRC_URI = "http://search.cpan.org/CPAN/authors/id/S/SM/SMUELLER/Class-ISA-${PV}.tar.gz"
23
24SRC_URI[md5sum] = "3a2ad203c8dc87d6c9de16215d00af47"
25SRC_URI[sha256sum] = "8816f34e9a38e849a10df756030dccf9fe061a196c11ac3faafd7113c929b964"
26
27S = "${WORKDIR}/Class-ISA-${PV}"
28
29inherit cpan
30
31BBCLASSEXTEND = "native"
diff --git a/meta/recipes-lsb4/perl/libdumpvalue-perl_1.17.bb b/meta/recipes-lsb4/perl/libdumpvalue-perl_1.17.bb
new file mode 100644
index 0000000000..9a7461463a
--- /dev/null
+++ b/meta/recipes-lsb4/perl/libdumpvalue-perl_1.17.bb
@@ -0,0 +1,18 @@
1SUMMARY = "Perl module for provides screen dump of Perl data"
2
3HOMEPAGE = "http://search.cpan.org/~flora/Dumpvalue/"
4SECTION = "libs"
5LICENSE = "Artistic-1.0 | GPL-1.0+"
6
7LIC_FILES_CHKSUM = "file://LICENSE;md5=f736bec5ada1fc5e39b2a8e7e06bbcbb"
8
9SRC_URI = "http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/Dumpvalue-${PV}.tar.gz"
10
11SRC_URI[md5sum] = "6ede9f693d4a9c4555541cb1a1cc2006"
12SRC_URI[sha256sum] = "9ea74606b545f769a787ec2ae229549a2ad0a8e3cd4b14eff2ce3841836b3bdb"
13
14S = "${WORKDIR}/Dumpvalue-${PV}"
15
16inherit cpan
17
18BBCLASSEXTEND = "native"
diff --git a/meta/recipes-lsb4/perl/libenv-perl_1.04.bb b/meta/recipes-lsb4/perl/libenv-perl_1.04.bb
new file mode 100644
index 0000000000..dd8e1159ee
--- /dev/null
+++ b/meta/recipes-lsb4/perl/libenv-perl_1.04.bb
@@ -0,0 +1,21 @@
1SUMMARY = "Perl module that imports environment variables as scalars or arrays"
2DESCRIPTION = "Perl maintains environment variables in a special hash named %ENV. \
3For when this access method is inconvenient, the Perl module Env allows environment \
4variables to be treated as scalar or array variables."
5
6HOMEPAGE = "http://search.cpan.org/~flora/Env/"
7SECTION = "libs"
8LICENSE = "Artistic-1.0 | GPL-1.0+"
9
10LIC_FILES_CHKSUM = "file://LICENSE;md5=76c1cbf18db56b3340d91cb947943bd3"
11
12SRC_URI = "http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/Env-${PV}.tar.gz"
13
14SRC_URI[md5sum] = "fdba5c0690e66972c96fee112cf5f25c"
15SRC_URI[sha256sum] = "d94a3d412df246afdc31a2199cbd8ae915167a3f4684f7b7014ce1200251ebb0"
16
17S = "${WORKDIR}/Env-${PV}"
18
19inherit cpan
20
21BBCLASSEXTEND = "native"
diff --git a/meta/recipes-lsb4/perl/libfile-checktree-perl_4.41.bb b/meta/recipes-lsb4/perl/libfile-checktree-perl_4.41.bb
new file mode 100644
index 0000000000..ce37c72ca8
--- /dev/null
+++ b/meta/recipes-lsb4/perl/libfile-checktree-perl_4.41.bb
@@ -0,0 +1,32 @@
1SUMMARY = "Perl module that run many filetest checks on a tree"
2DESCRIPTION = "The validate() routine takes a single multiline string consisting \
3of directives, each containing a filename plus a file test to try on it. (The file \
4test may also be a "cd", causing subsequent relative filenames to be interpreted \
5relative to that directory.) After the file test you may put || die to make it a \
6fatal error if the file test fails. The default is || warn. The file test may \
7optionally have a "!' prepended to test for the opposite condition. If you do a \
8cd and then list some relative filenames, you may want to indent them slightly for \
9readability. If you supply your own die() or warn() message, you can use $file to \
10interpolate the filename. \
11\
12Filetests may be bunched: "-rwx" tests for all of -r, -w, and -x. Only the first failed \
13test of the bunch will produce a warning. \
14\
15The routine returns the number of warnings issued."
16
17HOMEPAGE = "http://search.cpan.org/~flora/File-CheckTree/"
18SECTION = "libs"
19LICENSE = "Artistic-1.0 | GPL-1.0+"
20
21LIC_FILES_CHKSUM = "file://LICENSE;md5=c6fcacc5df80e037060300a7f4b93bf9"
22
23SRC_URI = "http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/File-CheckTree-${PV}.tar.gz"
24
25SRC_URI[md5sum] = "519c82aa7e5b7f752b4da14a6c8ad740"
26SRC_URI[sha256sum] = "fc99ab6bb5af4664832715974b5a19e328071dc9202ab72e5d5a594ebd46a729"
27
28S = "${WORKDIR}/File-CheckTree-${PV}"
29
30inherit cpan
31
32BBCLASSEXTEND = "native"
diff --git a/meta/recipes-lsb4/perl/libi18n-collate-perl_1.02.bb b/meta/recipes-lsb4/perl/libi18n-collate-perl_1.02.bb
new file mode 100644
index 0000000000..f1839e0cf9
--- /dev/null
+++ b/meta/recipes-lsb4/perl/libi18n-collate-perl_1.02.bb
@@ -0,0 +1,21 @@
1SUMMARY = "Perl module that compare 8-bit scalar data according to the current locale"
2DESCRIPTION = "This module provides you with objects that will collate according to \
3your national character set, provided that the POSIX setlocale() function is supported \
4on your system."
5
6HOMEPAGE = "http://search.cpan.org/~flora/I18N-Collate/"
7SECTION = "libs"
8LICENSE = "Artistic-1.0 | GPL-1.0+"
9
10LIC_FILES_CHKSUM = "file://LICENSE;md5=ff6d629144a6ec1ea8c300f75760184f"
11
12SRC_URI = "http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/I18N-Collate-${PV}.tar.gz"
13
14SRC_URI[md5sum] = "72ddb6d1c59cfdf31aa3b04799b86af0"
15SRC_URI[sha256sum] = "9174506bc903eda89690394e3f45558ab7e013114227896d8569d6164648fe37"
16
17S = "${WORKDIR}/I18N-Collate-${PV}"
18
19inherit cpan
20
21BBCLASSEXTEND = "native"
diff --git a/meta/recipes-lsb4/perl/libpod-plainer-perl_1.04.bb b/meta/recipes-lsb4/perl/libpod-plainer-perl_1.04.bb
new file mode 100644
index 0000000000..a3e58f031e
--- /dev/null
+++ b/meta/recipes-lsb4/perl/libpod-plainer-perl_1.04.bb
@@ -0,0 +1,23 @@
1SUMMARY = "Perl extension for converting Pod to old-style Pod"
2DESCRIPTION = "Pod::Plainer uses Pod::Parser which takes Pod with the (new) 'C<< .. >>' \
3constructs and returns the old(er) style with just 'C<>'; '<' and '>' are replaced by \
4'E<lt>' and 'E<gt>'. \
5\
6This can be used to pre-process Pod before using tools which do not recognise the new style Pods."
7
8HOMEPAGE = "http://search.cpan.org/dist/Pod-Plainer/"
9SECTION = "libs"
10LICENSE = "Artistic-1.0 | GPL-1.0+"
11
12LIC_FILES_CHKSUM = "file://README;beginline=27;md5=227cf83970fc61264845825d9d2bf6f8"
13
14SRC_URI = "http://search.cpan.org/CPAN/authors/id/R/RM/RMBARKER/Pod-Plainer-${PV}.tar.gz"
15
16SRC_URI[md5sum] = "f502eacd1a40894b9dfea55fc2cd5e7d"
17SRC_URI[sha256sum] = "1bbfbf7d1d4871e5a83bab2137e22d089078206815190eb1d5c1260a3499456f"
18
19S = "${WORKDIR}/Pod-Plainer-${PV}"
20
21inherit cpan
22
23BBCLASSEXTEND = "native"