mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 12:12:16 +02:00
* meta-oe now provides xmlto-native http://git.openembedded.org/meta-openembedded/commit/?id=ab8f876ca8fa223c183e3db2029cce88f3435a27 but not the stylesheets for buildhosts without them it's unusable and fails, because xorg macros autodetecting xmlto available, see: http://lists.linuxtogo.org/pipermail/openembedded-devel/2011-December/037066.html after adding xmlto-native and stylesheets-native to DEPENDS we can enable it again Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
29 lines
929 B
BlitzBasic
29 lines
929 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 libxp printproto libxau xmlto-native"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=f1beacbc336a5a256bb28dbfcf01c2be"
|
|
|
|
PE = "1"
|
|
PR = "r12"
|
|
|
|
SRC_URI[md5sum] = "ccc57478c41b7a75b9702241b889b1d4"
|
|
SRC_URI[sha256sum] = "a83977546b78e24ac5dca86affc10b6404a87c16272405b05386feca1a2db037"
|
|
|
|
# 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*"
|
|
|
|
XORG_PN = "libXaw"
|