diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-18 12:06:48 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-18 12:06:48 +0100 |
commit | 48ef8dbb0d1bdbc7e0e62665b5112282637f3266 (patch) | |
tree | 2126f7abaa115a8289b5cc258d8b61bba6a35cf9 /meta/recipes-extended/lsb | |
parent | cb1f7cffc171e6b182f33a69ff688d76b7f1baed (diff) | |
download | openembedded-core-48ef8dbb0d1bdbc7e0e62665b5112282637f3266.tar.gz openembedded-core-48ef8dbb0d1bdbc7e0e62665b5112282637f3266.tar.bz2 openembedded-core-48ef8dbb0d1bdbc7e0e62665b5112282637f3266.zip |
lsb: Fix PR bump, fix bashisms, correct dependency issue, tweak package description
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/lsb')
-rw-r--r-- | meta/recipes-extended/lsb/lsb_1.4.bb | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/meta/recipes-extended/lsb/lsb_1.4.bb b/meta/recipes-extended/lsb/lsb_1.4.bb index e414d93260..15dbeaafdf 100644 --- a/meta/recipes-extended/lsb/lsb_1.4.bb +++ b/meta/recipes-extended/lsb/lsb_1.4.bb @@ -1,10 +1,11 @@ -DESCRIPTION = "LSB support for Poky Linux" +DESCRIPTION = "LSB support for OpenEmbedded" SECTION = "console/utils" HOMEPAGE = "http://prdownloads.sourceforge.net/lsb" LICENSE = "GPLv2+" -PR = "r2" +PR = "r3" -DEPENDS="util-linux" +# lsb_release needs getopt +RDEPENDS_${PN} += "util-linux" LIC_FILES_CHKSUM = "file://README;md5=12da544b1a3a5a1795a21160b49471cf" @@ -27,7 +28,7 @@ do_install(){ mkdir -p ${D}/etc/lsb-release.d echo -n "LSB_VERSION=\"core-4.1-noarch:" > ${D}/etc/lsb-release - if [ "${TARGET_ARCH}" == "i586" ];then + if [ "${TARGET_ARCH}" = "i586" ];then echo -n "core-4.1-ia32" >> ${D}/etc/lsb-release else echo -n "core-4.1-${TARGET_ARCH}" >> ${D}/etc/lsb-release @@ -37,7 +38,7 @@ do_install(){ echo "DISTRIB_RELEASE=${DISTRO_VERSION}" >> ${D}/etc/lsb-release echo "DISTRIB_DESCRIPTION=\"${DISTRO_NAME} ${DISTRO_VERSION}\"" >> ${D}/etc/lsb-release - if [ "${TARGET_ARCH}" == "i586" ];then + if [ "${TARGET_ARCH}" = "i586" ];then mkdir -p ${D}/etc/lsb-release.d touch ${D}/etc/lsb-release.d/graphics-4.1-noarch touch ${D}/etc/lsb-release.d/graphics-${PV}-noarch @@ -45,7 +46,7 @@ do_install(){ touch ${D}/etc/lsb-release.d/graphics-4.1-ia32 touch ${D}/etc/lsb-release.d/graphics-${PV}-ia32 touch ${D}/etc/lsb-release.d/desktop-${PV}-ia32 - elif [ "${TARGET_ARCH}" == "x86_64" ];then + elif [ "${TARGET_ARCH}" = "x86_64" ];then touch ${D}/etc/lsb-release.d/graphics-4.1-noarch touch ${D}/etc/lsb-release.d/graphics-4.1-amd64 touch ${D}/etc/lsb-release.d/graphics-${PV}-amd64 @@ -72,7 +73,7 @@ do_install_append(){ install -m 0755 ${WORKDIR}/${i} ${D}/etc/core-lsb done install -m 0755 ${WORKDIR}/init-functions ${D}/${baselib}/lsb - if [ "${TARGET_ARCH}" == "x86_64" ];then + if [ "${TARGET_ARCH}" = "x86_64" ];then cd ${D} if [ "${baselib}" != "lib64" ]; then ln -sf ${baselib} lib64 @@ -81,13 +82,13 @@ do_install_append(){ ln -sf ld-linux-x86-64.so.2 ld-lsb-x86-64.so.2 ln -sf ld-linux-x86-64.so.2 ld-lsb-x86-64.so.3 fi - if [ "${TARGET_ARCH}" == "i586" ];then + if [ "${TARGET_ARCH}" = "i586" ];then cd ${D}/${baselib} ln -sf ld-linux.so.2 ld-lsb.so.2 ln -sf ld-linux.so.2 ld-lsb.so.3 fi - if [ "${TARGET_ARCH}" == "powerpc64" ];then + if [ "${TARGET_ARCH}" = "powerpc64" ];then cd ${D} if [ "${baselib}" != "lib64" ]; then ln -sf ${baselib} lib64 @@ -96,7 +97,7 @@ do_install_append(){ ln -sf ld64.so.1 ld-lsb-ppc64.so.2 ln -sf ld64.so.1 ld-lsb-ppc64.so.3 fi - if [ "${TARGET_ARCH}" == "powerpc" ];then + if [ "${TARGET_ARCH}" = "powerpc" ];then cd ${D}/${baselib} ln -sf ld.so.1 ld-lsb-ppc32.so.2 ln -sf ld.so.1 ld-lsb-ppc32.so.3 |