syslinux: add a non-native package
authorOtavio Salvador <otavio@ossystems.com.br>
Fri, 16 Jan 2009 15:43:50 +0000 (13:43 -0200)
committerOtavio Salvador <otavio@ossystems.com.br>
Thu, 22 Jan 2009 20:51:09 +0000 (18:51 -0200)
packages/syslinux/syslinux-native_3.63.bb
packages/syslinux/syslinux_3.63.bb [new file with mode: 0644]

index 471ef1b..3cd1ff8 100644 (file)
@@ -1,20 +1,9 @@
 # syslinux-native OE build file
 # Copyright (C) 2004-2006, Advanced Micro Devices, Inc.  All Rights Reserved
+# Copyright (C) 2009, O.S. Systems Software Ltda.  All Rights Reserved
 # Released under the MIT license (see packages/COPYING)
 
-DESCRIPTION="A multi-purpose linux bootloader"
-HOMEPAGE="http://syslinux.zytor.com/"
-LICENSE="GPL"
-PR="r1"
-
-# If you really want to run syslinux, you need mtools.  We just want the
-# ldlinux.* stuff for now, so skip mtools-native
-DEPENDS="nasm-native"
-
-SRC_URI = "${KERNELORG_MIRROR}/pub/linux/utils/boot/syslinux/syslinux-${PV}.tar.bz2 "
-
-S="${WORKDIR}/syslinux-${PV}"
-
+require syslinux_${PV}.bb
 inherit native
 
 STAGE_TEMP="${WORKDIR}/stage_temp"
@@ -27,10 +16,6 @@ do_stage() {
        install -m 755 ${STAGE_TEMP}/usr/bin/syslinux ${STAGING_BINDIR}
        install -m 755 ${STAGE_TEMP}/sbin/extlinux ${STAGING_BINDIR}
 
-       # When building media, the syslinux binary isn't nearly as useful
-       # as the DOS data files, so we copy those into a special location
-       # for usage during a image build stage
-
        install -d ${STAGING_DATADIR}/syslinux
        install -m 0644 ${STAGE_TEMP}/usr/lib/syslinux/isolinux.bin ${STAGING_DATADIR}/syslinux/isolinux.bin
        install -m 644 ${S}/ldlinux.sys ${STAGING_DATADIR}/syslinux/ldlinux.sys
diff --git a/packages/syslinux/syslinux_3.63.bb b/packages/syslinux/syslinux_3.63.bb
new file mode 100644 (file)
index 0000000..95fb557
--- /dev/null
@@ -0,0 +1,32 @@
+# syslinux OE build file
+# Copyright (C) 2009, O.S. Systems Software Ltda.  All Rights Reserved
+# Released under the MIT license (see packages/COPYING)
+
+DESCRIPTION="A multi-purpose linux bootloader"
+HOMEPAGE="http://syslinux.zytor.com/"
+LICENSE="GPL"
+DEPENDS="nasm-native"
+RDEPENDS="mtools"
+PR="r2"
+
+SRC_URI = "${KERNELORG_MIRROR}/pub/linux/utils/boot/syslinux/syslinux-${PV}.tar.bz2 "
+
+S="${WORKDIR}/syslinux-${PV}"
+
+inherit autotools
+
+do_configure_prepend() {
+       # drop win32 targets or build fails
+       sed -i 's,win32/\S*,,g' -i Makefile
+}
+
+do_compile() {
+       oe_runmake CC="${CC}"
+}
+
+do_install() {
+       oe_runmake install INSTALLROOT="${D}"
+
+       # we don't use com32, drop it
+       rm -r "${D}/${libdir}/syslinux/com32"
+}