mirror of
https://git.yoctoproject.org/poky
synced 2026-06-04 02:00:04 +00:00
6c9d93a8c6
- dropped old unused recipes: libice 1.0.1, libxevie 1.0.1, libxext 1.0.1 - dependencies are cleaned as many recipes had repeated deps of own deps git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2099 311d38ba-8fff-0310-9ca6-ca027cbcb966
25 lines
770 B
BlitzBasic
25 lines
770 B
BlitzBasic
require xorg-lib-common.inc
|
|
|
|
DESCRIPTION = "Base X libs."
|
|
DEPENDS += "bigreqsproto xproto xextproto xtrans libxau xcmiscproto \
|
|
libxdmcp xf86bigfontproto kbproto inputproto"
|
|
PROVIDES = "virtual/libx11"
|
|
PR = "r1"
|
|
PE = "1"
|
|
|
|
XORG_PN = "libX11"
|
|
|
|
EXTRA_OECONF += "--without-xcb"
|
|
|
|
do_compile() {
|
|
(
|
|
unset CC LD CXX CCLD
|
|
oe_runmake -C src/util 'CC=${BUILD_CC}' 'LD=${BUILD_LD}' 'CXX=${BUILD_CXX}' 'CCLD=${BUILD_CCLD}' 'CFLAGS=-D_GNU_SOURCE ${BUILD_CFLAGS}' 'LDFLAGS=${BUILD_LDFLAGS}' 'CXXFLAGS=${BUILD_CXXFLAGS}' 'CPPFLAGS=${BUILD_CPPFLAGS}' makekeys
|
|
)
|
|
rm -f ${STAGING_INCDIR}/X11/Xlib.h
|
|
oe_runmake
|
|
}
|
|
|
|
FILES_${PN} += "${datadir}/X11/XKeysymDB ${datadir}/X11/XErrorDB ${libdir}/X11/Xcms.txt"
|
|
FILES_${PN}-locale += "${datadir}/X11/locale ${libdir}/X11/locale"
|