summaryrefslogtreecommitdiffstats
path: root/documentation/poky-ref-manual/examples
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2011-08-23 14:08:50 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-08-24 19:49:36 -0700
commit547ba60f85643f589ce1665a5a8a20a049905fd5 (patch)
treee0c18aa54e54b14340407b455be75efdbcae7c6f /documentation/poky-ref-manual/examples
parent3906b607917ded41fe11e3867b4e12fd6202f879 (diff)
downloadpoky-547ba60f85643f589ce1665a5a8a20a049905fd5.tar.gz
documentation: ensure all examples have LIC_FILES_CHKSUM
We really need to have LIC_FILES_CHKSUM in all of our example recipes, because it is now mandatory. (From yocto-docs rev: 76998b7c54246e0505cf01b21d65d04ab285f1f0) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/poky-ref-manual/examples')
-rw-r--r--documentation/poky-ref-manual/examples/hello-autotools/hello_2.3.bb1
-rw-r--r--documentation/poky-ref-manual/examples/hello-single/hello.bb1
-rw-r--r--documentation/poky-ref-manual/examples/libxpm/libxpm_3.5.6.bb1
-rw-r--r--documentation/poky-ref-manual/examples/mtd-makefile/mtd-utils_1.0.0.bb2
4 files changed, 5 insertions, 0 deletions
diff --git a/documentation/poky-ref-manual/examples/hello-autotools/hello_2.3.bb b/documentation/poky-ref-manual/examples/hello-autotools/hello_2.3.bb
index 5c5332f731..5dfb0b30cf 100644
--- a/documentation/poky-ref-manual/examples/hello-autotools/hello_2.3.bb
+++ b/documentation/poky-ref-manual/examples/hello-autotools/hello_2.3.bb
@@ -1,6 +1,7 @@
1DESCRIPTION = "GNU Helloworld application" 1DESCRIPTION = "GNU Helloworld application"
2SECTION = "examples" 2SECTION = "examples"
3LICENSE = "GPLv3" 3LICENSE = "GPLv3"
4LIC_FILES_CHKSUM = "file://COPYING;md5=adefda309052235aa5d1e99ce7557010"
4 5
5SRC_URI = "${GNU_MIRROR}/hello/hello-${PV}.tar.bz2" 6SRC_URI = "${GNU_MIRROR}/hello/hello-${PV}.tar.bz2"
6 7
diff --git a/documentation/poky-ref-manual/examples/hello-single/hello.bb b/documentation/poky-ref-manual/examples/hello-single/hello.bb
index d815b1ed73..0812743e39 100644
--- a/documentation/poky-ref-manual/examples/hello-single/hello.bb
+++ b/documentation/poky-ref-manual/examples/hello-single/hello.bb
@@ -1,6 +1,7 @@
1DESCRIPTION = "Simple helloworld application" 1DESCRIPTION = "Simple helloworld application"
2SECTION = "examples" 2SECTION = "examples"
3LICENSE = "MIT" 3LICENSE = "MIT"
4LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
4 5
5SRC_URI = "file://helloworld.c" 6SRC_URI = "file://helloworld.c"
6 7
diff --git a/documentation/poky-ref-manual/examples/libxpm/libxpm_3.5.6.bb b/documentation/poky-ref-manual/examples/libxpm/libxpm_3.5.6.bb
index 2710189b2a..b58d4d7bd1 100644
--- a/documentation/poky-ref-manual/examples/libxpm/libxpm_3.5.6.bb
+++ b/documentation/poky-ref-manual/examples/libxpm/libxpm_3.5.6.bb
@@ -2,6 +2,7 @@ require xorg-lib-common.inc
2 2
3DESCRIPTION = "X11 Pixmap library" 3DESCRIPTION = "X11 Pixmap library"
4LICENSE = "X-BSD" 4LICENSE = "X-BSD"
5LIC_FILES_CHKSUM = "file://COPYING;md5=3e07763d16963c3af12db271a31abaa5"
5DEPENDS += "libxext" 6DEPENDS += "libxext"
6PR = "r2" 7PR = "r2"
7PE = "1" 8PE = "1"
diff --git a/documentation/poky-ref-manual/examples/mtd-makefile/mtd-utils_1.0.0.bb b/documentation/poky-ref-manual/examples/mtd-makefile/mtd-utils_1.0.0.bb
index b21dc653af..5d05a437a4 100644
--- a/documentation/poky-ref-manual/examples/mtd-makefile/mtd-utils_1.0.0.bb
+++ b/documentation/poky-ref-manual/examples/mtd-makefile/mtd-utils_1.0.0.bb
@@ -3,6 +3,8 @@ SECTION = "base"
3DEPENDS = "zlib" 3DEPENDS = "zlib"
4HOMEPAGE = "http://www.linux-mtd.infradead.org/" 4HOMEPAGE = "http://www.linux-mtd.infradead.org/"
5LICENSE = "GPLv2" 5LICENSE = "GPLv2"
6LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \
7 file://include/common.h;beginline=1;endline=17;md5=ba05b07912a44ea2bf81ce409380049c"
6 8
7SRC_URI = "ftp://ftp.infradead.org/pub/mtd-utils/mtd-utils-${PV}.tar.gz" 9SRC_URI = "ftp://ftp.infradead.org/pub/mtd-utils/mtd-utils-${PV}.tar.gz"
8 10