blob: db9de85efa337a7f6c14acb6fee3ede5cb7f4216 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
SECTION = "x11/libs"
PRIORITY = "optional"
MAINTAINER = "Greg Gilbert <greg@treke.net>"
DEPENDS = "xproto xextensions xau xtrans xdmcp"
DESCRIPTION = "Base X libs."
FILES_${PN} += "${datadir}/X11/XKeysymDB ${datadir}/X11/XErrorDB"
FILES_${PN}-locale += "${datadir}/X11/locale"
PROVIDES = "x11"
PR = "r2"
SRC_URI = "${XLIBS_MIRROR}/libX11-${PV}.tar.bz2 \
file://autofoo.patch;patch=1"
S = "${WORKDIR}/libX11-${PV}"
inherit autotools pkgconfig
do_compile() {
(
unset CC LD CXX CCLD
# unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
oe_runmake -C src/util 'CFLAGS=' 'LDFLAGS=' 'CXXFLAGS=' 'CPPFLAGS=' makekeys
)
oe_runmake
}
do_stage() {
install -c -m 644 include/X11/XKBlib.h ${STAGING_INCDIR}/X11/XKBlib.h
install -c -m 644 include/X11/Xcms.h ${STAGING_INCDIR}/X11/Xcms.h
install -c -m 644 include/X11/Xlib.h ${STAGING_INCDIR}/X11/Xlib.h
install -c -m 644 include/X11/Xlibint.h ${STAGING_INCDIR}/X11/Xlibint.h
install -c -m 644 include/X11/Xlocale.h ${STAGING_INCDIR}/X11/Xlocale.h
install -c -m 644 include/X11/Xresource.h ${STAGING_INCDIR}/X11/Xresource.h
install -c -m 644 include/X11/Xutil.h ${STAGING_INCDIR}/X11/Xutil.h
install -c -m 644 include/X11/cursorfont.h ${STAGING_INCDIR}/X11/cursorfont.h
install -c -m 644 include/X11/region.h ${STAGING_INCDIR}/X11/region.h
oe_libinstall -a -so -C src libX11 ${STAGING_LIBDIR}
}
|