summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorJason Wessel <jason.wessel@windriver.com>2013-09-14 00:08:58 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-17 14:35:18 +0100
commit85a5a2c3b2a12efde2b99ed669aadad94a1caceb (patch)
treeff5eed126742b417ead9143ea1b0bed7f00f6794 /meta
parentc78c1f9c92a2c2b38699a732ad893b669ccefcda (diff)
downloadpoky-85a5a2c3b2a12efde2b99ed669aadad94a1caceb.tar.gz
cdrtools-native: Update from 3.00 to 3.01a17
The update is needed to support generation of EFI boot images that work with optical media. Specifically the "-eltorito-platform efi" capability for mkisofs is needed. [YOCTO #4100] (From OE-Core rev: aaa85b0706197423786dfeae386dbb402ee15684) Signed-off-by: Jason Wessel <jason.wessel@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-devtools/cdrtools/cdrtools-native_3.00.bb30
-rw-r--r--meta/recipes-devtools/cdrtools/cdrtools-native_3.01a17.bb24
2 files changed, 24 insertions, 30 deletions
diff --git a/meta/recipes-devtools/cdrtools/cdrtools-native_3.00.bb b/meta/recipes-devtools/cdrtools/cdrtools-native_3.00.bb
deleted file mode 100644
index 7e4c381f98..0000000000
--- a/meta/recipes-devtools/cdrtools/cdrtools-native_3.00.bb
+++ /dev/null
@@ -1,30 +0,0 @@
1# cdrtools-native OE build file
2# Copyright (C) 2004-2006, Advanced Micro Devices, Inc. All Rights Reserved
3# Released under the MIT license (see packages/COPYING)
4SUMMARY = "A set of tools for CD recording, including cdrecord"
5DESCRIPTION = "A set of tools for CD recording, including cdrecord"
6HOMEPAGE = "http://cdrecord.berlios.de/private/cdrecord.html"
7SECTION = "console/utils"
8LICENSE = "GPLv2"
9LIC_FILES_CHKSUM = "file://COPYING;md5=8d16123ffd39e649a5e4a6bc1de60e6d"
10PR = "r0"
11
12SRC_URI = "ftp://ftp.berlios.de/pub/cdrecord/cdrtools-${PV}.tar.bz2 \
13 file://no_usr_src.patch"
14
15SRC_URI[md5sum] = "f9fbab08fbd458b0d2312976d8c5f558"
16SRC_URI[sha256sum] = "7f9cb64820055573b880f77b2f16662a512518336ba95ab49228a1617973423d"
17
18inherit native
19
20STAGE_TEMP = "${WORKDIR}/image-temp"
21
22FILESPATH = "${FILE_DIRNAME}/cdrtools-native/"
23
24do_install() {
25 install -d ${STAGE_TEMP}
26 make install INS_BASE=${STAGE_TEMP}
27
28 install -d ${D}${bindir}/
29 install ${STAGE_TEMP}/bin/* ${D}${bindir}/
30}
diff --git a/meta/recipes-devtools/cdrtools/cdrtools-native_3.01a17.bb b/meta/recipes-devtools/cdrtools/cdrtools-native_3.01a17.bb
new file mode 100644
index 0000000000..2ae3f4ad63
--- /dev/null
+++ b/meta/recipes-devtools/cdrtools/cdrtools-native_3.01a17.bb
@@ -0,0 +1,24 @@
1# cdrtools-native OE build file
2# Copyright (C) 2004-2006, Advanced Micro Devices, Inc. All Rights Reserved
3# Released under the MIT license (see packages/COPYING)
4SUMMARY = "A set of tools for CD recording, including cdrecord"
5DESCRIPTION = "A set of tools for CD recording, including cdrecord"
6HOMEPAGE = "http://cdrecord.berlios.de/private/cdrecord.html"
7SECTION = "console/utils"
8LICENSE = "GPLv2 & CDDL-1.0 & LGPLv2.1+"
9LIC_FILES_CHKSUM = "file://COPYING;md5=32f68170be424c2cd64804337726b312"
10
11SRC_URI = "ftp://ftp.berlios.de/pub/cdrecord/alpha/cdrtools-${PV}.tar.bz2"
12
13SRC_URI[md5sum] = "4cef9db0cf15a770c52d65b00bbee2db"
14SRC_URI[sha256sum] = "3d613965b213ad83e4be0ba2535e784901839ea4d11a20a2beb6765f0eb76dfa"
15
16S = "${WORKDIR}/cdrtools-3.01"
17
18inherit native
19
20FILESPATH = "${FILE_DIRNAME}/cdrtools-native/"
21
22do_install() {
23 make install GMAKE_NOWARN=true INS_BASE=${prefix} DESTDIR=${D}
24}