Files
poky/meta/recipes-extended/lsb/lsb_1.4.bb
Richard Purdie 8511d1ec1b Drop PRIORITY variable
As discussed on the mailing list, this variable isn't useful and if wanted
would be better implemented by distros using pn-X overrides.

This patch executes:

find . -regex ".*\.\(bb\|inc\)$" | xargs sed -i '/^PRIORITY = ".*"$/d'

against the tree removing the referenced. Thanks to Phil Blundell for
the command.

(From OE-Core rev: d122343362669c683acc4af295971a62cbc823fc)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-07-01 23:27:29 +01:00

99 lines
3.4 KiB
BlitzBasic

DESCRIPTION = "LSB support for Poky Linux"
SECTION = "console/utils"
HOMEPAGE = "http://prdownloads.sourceforge.net/lsb"
LICENSE = "GPLv2+"
PR = "r1"
LIC_FILES_CHKSUM = "file://README;md5=12da544b1a3a5a1795a21160b49471cf"
SRC_URI = "${SOURCEFORGE_MIRROR}/project/lsb/lsb_release/${PV}/lsb-release-${PV}.tar.gz \
file://init-functions \
file://lsb_killproc \
file://lsb_log_message \
file://lsb_pidofproc \
file://lsb_start_daemon \
"
SRC_URI[md5sum] = "30537ef5a01e0ca94b7b8eb6a36bb1e4"
SRC_URI[sha256sum] = "99321288f8d62e7a1d485b7c6bdccf06766fb8ca603c6195806e4457fdf17172"
S = ${WORKDIR}/lsb-release-${PV}
do_install(){
oe_runmake install prefix=${D} mandir=${D}/man/ DESTDIR=${D}
mkdir -p ${D}/bin
mkdir -p ${D}/lib
mkdir -p ${D}/etc/lsb-release.d
echo -n "LSB_VERSION=\"core-4.1-noarch:" > ${D}/etc/lsb-release
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
fi
echo "\"" >> ${D}/etc/lsb-release
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
touch ${D}/etc/lsb-release.d/desktop-${PV}-noarch
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
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
touch ${D}/etc/lsb-release.d/desktop-${PV}-amd64
fi
if [ "${TARGET_ARCH}" = "powerpc" ];then
touch ${D}/etc/lsb-release.d/graphics-4.1-noarch
touch ${D}/etc/lsb-release.d/graphics-4.1-ppc32
touch ${D}/etc/lsb-release.d/graphics-${PV}-ppc32
touch ${D}/etc/lsb-release.d/desktop-${PV}-ppc32
elif [ "${TARGET_ARCH}" = "powerpc64" ];then
touch ${D}/etc/lsb-release.d/graphics-4.1-noarch
touch ${D}/etc/lsb-release.d/graphics-4.1-ppc64
touch ${D}/etc/lsb-release.d/graphics-${PV}-ppc64
touch ${D}/etc/lsb-release.d/desktop-${PV}-ppc64
fi
}
do_install_append(){
install -d ${D}/etc/core-lsb
install -d ${D}/lib/lsb
for i in lsb_killproc lsb_log_message lsb_pidofproc lsb_start_daemon
do
install -m 0755 ${WORKDIR}/${i} ${D}/etc/core-lsb
done
install -m 0755 ${WORKDIR}/init-functions ${D}/lib/lsb
if [ "${TARGET_ARCH}" == "x86_64" ];then
cd ${D}
ln -sf lib lib64
cd ${D}/lib
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
cd ${D}/lib
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
cd ${D}
ln -sf lib lib64
cd ${D}/lib
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
cd ${D}/lib
ln -sf ld.so.1 ld-lsb-ppc32.so.2
ln -sf ld.so.1 ld-lsb-ppc32.so.3
fi
}
FILES_${PN} += "/lib64 \
${base_libdir}/lsb/* \
"