lsb: Fix PR bump, fix bashisms, correct dependency issue, tweak package description

(From OE-Core rev: 48ef8dbb0d1bdbc7e0e62665b5112282637f3266)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2012-04-18 12:06:48 +01:00
parent d220e071ab
commit b76513948b
2 changed files with 12 additions and 11 deletions

View File

@ -3,7 +3,7 @@
#
DESCRIPTION = "Create Basic Image Tasks"
PR = "r9"
PR = "r10"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"

View File

@ -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