From 46d43adaeec0533384c69d3bc65f1cf6a8b48b85 Mon Sep 17 00:00:00 2001 From: Zhenhua Luo Date: Thu, 30 Aug 2012 09:07:09 +0000 Subject: [PATCH] lio-utils: add lio-utils-4.0 Signed-off-by: Zhenhua Luo --- .../recipes-tools/lio-utils/lio-utils_4.0.bb | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 meta-fsl-ppc/recipes-tools/lio-utils/lio-utils_4.0.bb diff --git a/meta-fsl-ppc/recipes-tools/lio-utils/lio-utils_4.0.bb b/meta-fsl-ppc/recipes-tools/lio-utils/lio-utils_4.0.bb new file mode 100644 index 00000000..d4613503 --- /dev/null +++ b/meta-fsl-ppc/recipes-tools/lio-utils/lio-utils_4.0.bb @@ -0,0 +1,48 @@ +SUMMARY = "lio-utils" +DESCRIPTION = "a simple low-level configuration tool set for the Target+iSCSI (LIO)" +HOMEPAGE = "http://linux-iscsi.org/index.php/Lio-utils" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://debian/copyright;md5=c3ea231a32635cbb5debedf3e88aa3df" + +SRC_URI = "git://risingtidesystems.com/lio-utils.git;protocal=git" +SRCREV = "lio-4.0" +S = "${WORKDIR}/git" + +inherit distutils + +EXTRA_OEMAKE += "-C ${S}/tools PREFIX=${prefix} DESTDIR=${D}" + +# pass LDFLAGS to linker to avoid missing GNU_HASH QA errors +TARGET_CC_ARCH += "${LDFLAGS}" +do_compile() { + cd ${S}/tcm-py + distutils_do_compile + + cd ${S}/lio-py + distutils_do_compile + + if test -d ${S}/tools; then + oe_runmake + fi +} + +do_install() { + cd ${S}/tcm-py + distutils_do_install + + cd ${S}/lio-py + distutils_do_install + + SITE_PACKAGES=${D}/${PYTHON_SITEPACKAGES_DIR} + [ ! -d ${D}/${sbindir} ] && install -d ${D}/${sbindir} + for var in tcm_node tcm_dump tcm_loop tcm_fabric lio_dump lio_node; do + chmod a+x ${SITE_PACKAGES}/${var}.py + [ ! -f ${D}/${sbindir}/${var} ] && ln -s ${PYTHON_SITEPACKAGES_DIR}/${var}.py ${D}/${sbindir}/${var} + done + + if test -d ${S}/tools; then + oe_runmake install + fi +} + +FILES_${PN} += "${sbindir}/*" -- 2.40.1