mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-17 20:51:57 +02:00
* This change is only aesthetic (unlike indentation in Python tasks). * Some recipes were using tabs. * Some were using 8 spaces. * Some were using mix or different number of spaces. * Make them consistently use 4 spaces everywhere. * Yocto styleguide advises to use tabs (but the only reason to keep tabs is the need to update a lot of recipes). Lately this advice was also merged into the styleguide on the OE wiki. * Using 4 spaces in both types of tasks is better because it's less error prone when someone is not sure if e.g. do_generate_toolchain_file() is Python or shell task and also allows to highlight every tab used in .bb, .inc, .bbappend, .bbclass as potentially bad (shouldn't be used for indenting of multiline variable assignments and cannot be used for Python tasks). * Don't indent closing quote on multiline variables we're quite inconsistent wheater it's first character on line under opening quote or under first non-whitespace character in previous line. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Koen Kooi <koen@dominion.thruhere.net>
32 lines
972 B
BlitzBasic
32 lines
972 B
BlitzBasic
require recipes-graphics/xorg-lib/xorg-lib-common.inc
|
|
DESCRIPTION = "X Athena Widget Set"
|
|
DEPENDS += "xproto virtual/libx11 libxext xextproto libxt libxmu libxpm libxau xmlto-native"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=1c65719d42900bb81b83e8293c20a364"
|
|
|
|
PE = "1"
|
|
PR = "r2"
|
|
|
|
SRC_URI[md5sum] = "f1ea52debce7a18cc26b21647a00ad8b"
|
|
SRC_URI[sha256sum] = "2d96bcf92638b8ec5c91d379f5ec2e7b15133adeb2ba22066d48bf3239ee1bdd"
|
|
|
|
# disable docs as groff detection doesn't work on some hosts while cross compilling
|
|
EXTRA_OECONF += " --disable-docs "
|
|
|
|
do_install_append () {
|
|
ln -sf libXaw6.so.6 ${D}${libdir}/libXaw.so.6
|
|
ln -sf libXaw7.so.7 ${D}${libdir}/libXaw.so.7
|
|
ln -sf libXaw7.so.7 ${D}${libdir}/libXaw.so
|
|
}
|
|
|
|
PACKAGES =+ "libxaw6 libxaw7 libxaw8"
|
|
|
|
FILES_libxaw6 = "${libdir}/libXaw*.so.6*"
|
|
FILES_libxaw7 = "${libdir}/libXaw*.so.7*"
|
|
FILES_libxaw8 = "${libdir}/libXaw8.so.8*"
|
|
|
|
# Avoid dependency on libxaw as it is not build
|
|
RDEPENDS_${PN}-dev = ""
|
|
|
|
XORG_PN = "libXaw"
|