diff options
Diffstat (limited to 'meta/recipes-graphics/xorg-app')
24 files changed, 322 insertions, 0 deletions
diff --git a/meta/recipes-graphics/xorg-app/mkfontdir_1.0.5.bb b/meta/recipes-graphics/xorg-app/mkfontdir_1.0.5.bb new file mode 100644 index 0000000000..ebd5775725 --- /dev/null +++ b/meta/recipes-graphics/xorg-app/mkfontdir_1.0.5.bb | |||
@@ -0,0 +1,11 @@ | |||
1 | require xorg-app-common.inc | ||
2 | |||
3 | DESCRIPTION = "a program to create an index of X font files in a directory" | ||
4 | |||
5 | PE = "1" | ||
6 | |||
7 | RDEPENDS += "mkfontscale" | ||
8 | |||
9 | BBCLASSEXTEND = "native" | ||
10 | |||
11 | LIC_FILES_CHKSUM = "file://COPYING;md5=b4fcf2b90cadbfc15009b9e124dc3a3f" | ||
diff --git a/meta/recipes-graphics/xorg-app/mkfontscale_1.0.7.bb b/meta/recipes-graphics/xorg-app/mkfontscale_1.0.7.bb new file mode 100644 index 0000000000..46a73111b1 --- /dev/null +++ b/meta/recipes-graphics/xorg-app/mkfontscale_1.0.7.bb | |||
@@ -0,0 +1,9 @@ | |||
1 | require xorg-app-common.inc | ||
2 | |||
3 | DESCRIPTION = "a program to create an index of scalable font files for X" | ||
4 | |||
5 | DEPENDS += " zlib libfontenc freetype virtual/libx11" | ||
6 | |||
7 | BBCLASSEXTEND = "native" | ||
8 | |||
9 | LIC_FILES_CHKSUM = "file://COPYING;md5=8ecbbbc1259a329e96ccc4dd86ad2ca2" | ||
diff --git a/meta/recipes-graphics/xorg-app/x11perf_1.5.bb b/meta/recipes-graphics/xorg-app/x11perf_1.5.bb new file mode 100644 index 0000000000..35680e7925 --- /dev/null +++ b/meta/recipes-graphics/xorg-app/x11perf_1.5.bb | |||
@@ -0,0 +1,6 @@ | |||
1 | require xorg-app-common.inc | ||
2 | |||
3 | DESCRIPTION = "X11 server performance test program" | ||
4 | DEPENDS += "libxmu libxrender libxft libxext fontconfig" | ||
5 | PR = "r1" | ||
6 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-app/xauth_1.0.4.bb b/meta/recipes-graphics/xorg-app/xauth_1.0.4.bb new file mode 100644 index 0000000000..d5f35768af --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xauth_1.0.4.bb | |||
@@ -0,0 +1,10 @@ | |||
1 | require xorg-app-common.inc | ||
2 | |||
3 | DESCRIPTION = "X application to edit and display the authorization \ | ||
4 | information used in connecting to the X server" | ||
5 | |||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=5ec74dd7ea4d10c4715a7c44f159a40b" | ||
7 | |||
8 | DEPENDS += "libxau libxext libxmu" | ||
9 | PR = "r0" | ||
10 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-app/xbacklight_1.1.bb b/meta/recipes-graphics/xorg-app/xbacklight_1.1.bb new file mode 100644 index 0000000000..78804d734e --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xbacklight_1.1.bb | |||
@@ -0,0 +1,4 @@ | |||
1 | require xorg-app-common.inc | ||
2 | |||
3 | DESCRIPTION = "X Backlight Utility" | ||
4 | DEPENDS += "libxrender libxrandr" | ||
diff --git a/meta/recipes-graphics/xorg-app/xdpyinfo/disable-xkb.patch b/meta/recipes-graphics/xorg-app/xdpyinfo/disable-xkb.patch new file mode 100644 index 0000000000..24af21f4fc --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xdpyinfo/disable-xkb.patch | |||
@@ -0,0 +1,18 @@ | |||
1 | --- xdpyinfo-1.0.1/configure.ac.orig 2006-03-08 16:33:05.000000000 +0100 | ||
2 | +++ xdpyinfo-1.0.1/configure.ac 2006-03-08 16:41:59.000000000 +0100 | ||
3 | @@ -45,11 +45,15 @@ | ||
4 | AC_CHECK_HEADERS([X11/extensions/multibuf.h X11/extensions/XShm.h],,,[#include <X11/Xlib.h>]) | ||
5 | CPPFLAGS="$SAVE_CPPFLAGS"],[echo "not found"]) | ||
6 | |||
7 | +AC_ARG_ENABLE(xkb, AC_HELP_STRING([--disable-xkb], [Disable XKB support]), | ||
8 | + XKB="$enableval", XKB="yes") | ||
9 | +if test "x$XKB" = "xyes" ; then | ||
10 | PKG_CHECK_MODULES(DPY_XKB, x11, | ||
11 | [SAVE_CPPFLAGS="$CPPFLAGS" | ||
12 | CPPFLAGS="$CPPFLAGS $DPY_XKB_CFLAGS $DPY_X11_CFLAGS" | ||
13 | AC_CHECK_HEADERS([X11/extensions/XKB.h X11/XKBlib.h],,,[#include <X11/Xlib.h>]) | ||
14 | CPPFLAGS="$SAVE_CPPFLAGS"],[echo "not found"]) | ||
15 | +fi | ||
16 | |||
17 | PKG_CHECK_MODULES(DPY_XF86VIDMODE, xxf86vm, | ||
18 | [SAVE_CPPFLAGS="$CPPFLAGS" | ||
diff --git a/meta/recipes-graphics/xorg-app/xdpyinfo_1.1.0.bb b/meta/recipes-graphics/xorg-app/xdpyinfo_1.1.0.bb new file mode 100644 index 0000000000..f5d47e1392 --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xdpyinfo_1.1.0.bb | |||
@@ -0,0 +1,11 @@ | |||
1 | require xorg-app-common.inc | ||
2 | |||
3 | DESCRIPTION = "X display information utility" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=4641deddaa80fe7ca88e944e1fd94a94" | ||
5 | DEPENDS += "libxtst libxext libxxf86vm libxxf86dga libxxf86misc libxi libxrender libxinerama libdmx libxp libxau" | ||
6 | PR = "r0" | ||
7 | PE = "1" | ||
8 | |||
9 | SRC_URI += "file://disable-xkb.patch" | ||
10 | |||
11 | EXTRA_OECONF = "--disable-xkb" | ||
diff --git a/meta/recipes-graphics/xorg-app/xev/diet-x11.patch b/meta/recipes-graphics/xorg-app/xev/diet-x11.patch new file mode 100644 index 0000000000..9f515e8c73 --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xev/diet-x11.patch | |||
@@ -0,0 +1,80 @@ | |||
1 | --- | ||
2 | xev.c | 16 ++++++++-------- | ||
3 | 1 file changed, 8 insertions(+), 8 deletions(-) | ||
4 | |||
5 | Index: xev-1.0.2/xev.c | ||
6 | =================================================================== | ||
7 | --- xev-1.0.2.orig/xev.c 2006-06-02 00:25:44.000000000 +0100 | ||
8 | +++ xev-1.0.2/xev.c 2007-05-10 15:22:07.000000000 +0100 | ||
9 | @@ -109,7 +109,7 @@ do_KeyPress (XEvent *eventp) | ||
10 | nbytes = XLookupString (e, str, 256, &ks, NULL); | ||
11 | |||
12 | /* not supposed to call XmbLookupString on a key release event */ | ||
13 | - if (e->type == KeyPress && xic) { | ||
14 | + /*if (e->type == KeyPress && xic) { | ||
15 | do { | ||
16 | nmbbytes = XmbLookupString (xic, e, buf, bsize - 1, &ks, &status); | ||
17 | buf[nmbbytes] = '\0'; | ||
18 | @@ -119,7 +119,7 @@ do_KeyPress (XEvent *eventp) | ||
19 | buf = realloc (buf, bsize); | ||
20 | } | ||
21 | } while (status == XBufferOverflow); | ||
22 | - } | ||
23 | + }*/ | ||
24 | |||
25 | if (ks == NoSymbol) | ||
26 | ksname = "NoSymbol"; | ||
27 | @@ -149,7 +149,7 @@ do_KeyPress (XEvent *eventp) | ||
28 | } | ||
29 | |||
30 | /* not supposed to call XmbLookupString on a key release event */ | ||
31 | - if (e->type == KeyPress && xic) { | ||
32 | + /*if (e->type == KeyPress && xic) { | ||
33 | printf (" XmbLookupString gives %d bytes: ", nmbbytes); | ||
34 | if (nmbbytes > 0) { | ||
35 | dump (buf, nmbbytes); | ||
36 | @@ -157,7 +157,7 @@ do_KeyPress (XEvent *eventp) | ||
37 | } else { | ||
38 | printf ("\n"); | ||
39 | } | ||
40 | - } | ||
41 | + } */ | ||
42 | |||
43 | printf (" XFilterEvent returns: %s\n", | ||
44 | XFilterEvent (eventp, e->window) ? "True" : "False"); | ||
45 | @@ -804,7 +804,7 @@ main (int argc, char **argv) | ||
46 | fprintf (stderr, "%s: XSetLocaleModifiers failed\n", ProgramName); | ||
47 | } | ||
48 | |||
49 | - xim = XOpenIM (dpy, NULL, NULL, NULL); | ||
50 | + /*xim = XOpenIM (dpy, NULL, NULL, NULL); | ||
51 | if (xim == NULL) { | ||
52 | fprintf (stderr, "%s: XOpenIM failed\n", ProgramName); | ||
53 | } | ||
54 | @@ -831,7 +831,7 @@ main (int argc, char **argv) | ||
55 | } | ||
56 | XFree (xim_styles); | ||
57 | } | ||
58 | - } | ||
59 | + }*/ | ||
60 | |||
61 | screen = DefaultScreen (dpy); | ||
62 | |||
63 | @@ -891,7 +891,7 @@ main (int argc, char **argv) | ||
64 | printf ("Outer window is 0x%lx, inner window is 0x%lx\n", w, subw); | ||
65 | } | ||
66 | |||
67 | - if (xim && xim_style) { | ||
68 | + /*if (xim && xim_style) { | ||
69 | xic = XCreateIC (xim, | ||
70 | XNInputStyle, xim_style, | ||
71 | XNClientWindow, w, | ||
72 | @@ -901,7 +901,7 @@ main (int argc, char **argv) | ||
73 | if (xic == NULL) { | ||
74 | fprintf (stderr, "XCreateIC failed\n"); | ||
75 | } | ||
76 | - } | ||
77 | + }*/ | ||
78 | |||
79 | for (done = 0; !done; ) { | ||
80 | XEvent event; | ||
diff --git a/meta/recipes-graphics/xorg-app/xev_1.0.3.bb b/meta/recipes-graphics/xorg-app/xev_1.0.3.bb new file mode 100644 index 0000000000..b7a4070a8f --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xev_1.0.3.bb | |||
@@ -0,0 +1,7 @@ | |||
1 | require xorg-app-common.inc | ||
2 | |||
3 | DESCRIPTION = "X Event Viewer" | ||
4 | LICENSE = "MIT" | ||
5 | PE = "1" | ||
6 | |||
7 | SRC_URI += "file://diet-x11.patch;patch=1" | ||
diff --git a/meta/recipes-graphics/xorg-app/xeyes_1.0.1.bb b/meta/recipes-graphics/xorg-app/xeyes_1.0.1.bb new file mode 100644 index 0000000000..07ce0724fa --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xeyes_1.0.1.bb | |||
@@ -0,0 +1,4 @@ | |||
1 | require xorg-app-common.inc | ||
2 | PE = "1" | ||
3 | |||
4 | DEPENDS += " virtual/libx11 libxau libxt libxext libxmu" | ||
diff --git a/meta/recipes-graphics/xorg-app/xhost_1.0.3.bb b/meta/recipes-graphics/xorg-app/xhost_1.0.3.bb new file mode 100644 index 0000000000..2c643d81a5 --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xhost_1.0.3.bb | |||
@@ -0,0 +1,7 @@ | |||
1 | require xorg-app-common.inc | ||
2 | |||
3 | DESCRIPTION = "Server access control program for X" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=cbe6a2ee97dc38c7265adfec5644689b" | ||
5 | DEPENDS += "libxmu libxau" | ||
6 | PR = "r0" | ||
7 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-app/xinit_1.2.1.bb b/meta/recipes-graphics/xorg-app/xinit_1.2.1.bb new file mode 100644 index 0000000000..7a083a7884 --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xinit_1.2.1.bb | |||
@@ -0,0 +1,8 @@ | |||
1 | require xorg-app-common.inc | ||
2 | |||
3 | DESCRIPTION = "X Window System initializer" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=0d4b5eef75f1584ccbdc5e4a34314407" | ||
5 | PR = "r0" | ||
6 | PE = "1" | ||
7 | |||
8 | FILES_${PN} += "${libdir}X11/xinit" | ||
diff --git a/meta/recipes-graphics/xorg-app/xkbcomp_1.1.1.bb b/meta/recipes-graphics/xorg-app/xkbcomp_1.1.1.bb new file mode 100644 index 0000000000..bc2b788ba2 --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xkbcomp_1.1.1.bb | |||
@@ -0,0 +1,9 @@ | |||
1 | require xorg-app-common.inc | ||
2 | |||
3 | DESCRIPTION = "The X Keyboard Extension essentially replaces the core protocol definition of keyboard." | ||
4 | |||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=08436e4f4476964e2e2dd7e7e41e076a" | ||
6 | |||
7 | DEPENDS += "libxkbfile" | ||
8 | |||
9 | BBCLASSEXTEND = "native" | ||
diff --git a/meta/recipes-graphics/xorg-app/xmodmap_1.0.4.bb b/meta/recipes-graphics/xorg-app/xmodmap_1.0.4.bb new file mode 100644 index 0000000000..d7d31e2677 --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xmodmap_1.0.4.bb | |||
@@ -0,0 +1,7 @@ | |||
1 | require xorg-app-common.inc | ||
2 | |||
3 | DESCRIPTION = "utility for modifying keymaps and pointer button mappings in X" | ||
4 | LICENSE = "MIT" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=4eafccf13653fd18ec3263631e5feb68" | ||
6 | PR = "r0" | ||
7 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-app/xorg-app-common.inc b/meta/recipes-graphics/xorg-app/xorg-app-common.inc new file mode 100644 index 0000000000..4add357cc9 --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xorg-app-common.inc | |||
@@ -0,0 +1,16 @@ | |||
1 | DESCRIPTION = "X application" | ||
2 | HOMEPAGE = "http://www.x.org/" | ||
3 | BUGTRACKER = "https://bugs.freedesktop.org" | ||
4 | SECTION = "x11/apps" | ||
5 | LICENSE = "MIT-X" | ||
6 | DEPENDS = "util-macros virtual/libx11" | ||
7 | |||
8 | XORG_PN = "${BPN}" | ||
9 | |||
10 | SRC_URI = "${XORG_MIRROR}/individual/app/${XORG_PN}-${PV}.tar.bz2" | ||
11 | |||
12 | S = "${WORKDIR}/${XORG_PN}-${PV}" | ||
13 | |||
14 | inherit autotools pkgconfig | ||
15 | |||
16 | FILES_${PN} += " /usr/lib/X11/${XORG_PN}" | ||
diff --git a/meta/recipes-graphics/xorg-app/xprop_1.1.0.bb b/meta/recipes-graphics/xorg-app/xprop_1.1.0.bb new file mode 100644 index 0000000000..e9b0b2ee7f --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xprop_1.1.0.bb | |||
@@ -0,0 +1,10 @@ | |||
1 | require xorg-app-common.inc | ||
2 | |||
3 | DESCRIPTION = "utility to display window and font properties of an X server" | ||
4 | |||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=4641deddaa80fe7ca88e944e1fd94a94" | ||
6 | |||
7 | DEPENDS += " libxmu virtual/libx11" | ||
8 | |||
9 | PR = "r0" | ||
10 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-app/xrandr/resolve_symbol_clash.patch b/meta/recipes-graphics/xorg-app/xrandr/resolve_symbol_clash.patch new file mode 100644 index 0000000000..1ecf9563f6 --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xrandr/resolve_symbol_clash.patch | |||
@@ -0,0 +1,33 @@ | |||
1 | --- | ||
2 | xrandr.c | 6 +++--- | ||
3 | 1 file changed, 3 insertions(+), 3 deletions(-) | ||
4 | |||
5 | --- xrandr-1.2.2.orig/xrandr.c | ||
6 | +++ xrandr-1.2.2/xrandr.c | ||
7 | @@ -189,7 +189,7 @@ | ||
8 | |||
9 | #if HAS_RANDR_1_2 | ||
10 | typedef enum _policy { | ||
11 | - clone, extend | ||
12 | + policy_clone, extend | ||
13 | } policy_t; | ||
14 | |||
15 | typedef enum _relation { | ||
16 | @@ -1602,7 +1602,7 @@ | ||
17 | int ret = 0; | ||
18 | #if HAS_RANDR_1_2 | ||
19 | output_t *output = NULL; | ||
20 | - policy_t policy = clone; | ||
21 | + policy_t policy = policy_clone; | ||
22 | Bool setit_1_2 = False; | ||
23 | Bool query_1_2 = False; | ||
24 | Bool modeit = False; | ||
25 | @@ -1863,7 +1863,7 @@ | ||
26 | continue; | ||
27 | } | ||
28 | if (!strcmp ("--clone", argv[i])) { | ||
29 | - policy = clone; | ||
30 | + policy = policy_clone; | ||
31 | setit_1_2 = True; | ||
32 | continue; | ||
33 | } | ||
diff --git a/meta/recipes-graphics/xorg-app/xrandr_1.3.2.bb b/meta/recipes-graphics/xorg-app/xrandr_1.3.2.bb new file mode 100644 index 0000000000..3ddccb2496 --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xrandr_1.3.2.bb | |||
@@ -0,0 +1,10 @@ | |||
1 | require xorg-app-common.inc | ||
2 | |||
3 | DESCRIPTION = "X Resize and Rotate extension command." | ||
4 | LICENSE= "BSD-X" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=fe1608bdb33cf8c62a4438f7d34679b3" | ||
6 | DEPENDS += "libxrandr libxrender" | ||
7 | PE = "1" | ||
8 | PR = "r0" | ||
9 | |||
10 | SRC_URI += "file://resolve_symbol_clash.patch" | ||
diff --git a/meta/recipes-graphics/xorg-app/xrdb/60XDefaults.sh b/meta/recipes-graphics/xorg-app/xrdb/60XDefaults.sh new file mode 100644 index 0000000000..08d8beca33 --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xrdb/60XDefaults.sh | |||
@@ -0,0 +1,3 @@ | |||
1 | if [ -e $HOME/.Xdefaults ]; then | ||
2 | xrdb -merge -nocpp < $HOME/.Xdefaults | ||
3 | fi | ||
diff --git a/meta/recipes-graphics/xorg-app/xrdb_1.0.5.bb b/meta/recipes-graphics/xorg-app/xrdb_1.0.5.bb new file mode 100644 index 0000000000..906d7d8527 --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xrdb_1.0.5.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | require xorg-app-common.inc | ||
2 | |||
3 | DESCRIPTION = "X server resource database utility" | ||
4 | LICENSE = "xrdb" | ||
5 | DEPENDS += "libxmu" | ||
6 | PE = "1" | ||
7 | PR = "r2" | ||
8 | |||
9 | SRC_URI += "file://60XDefaults.sh" | ||
10 | |||
11 | do_install_append() { | ||
12 | install -d ${D}${sysconfdir}/X11/Xsession.d/ | ||
13 | install -m 0755 ${WORKDIR}/60XDefaults.sh ${D}${sysconfdir}/X11/Xsession.d/ | ||
14 | } | ||
diff --git a/meta/recipes-graphics/xorg-app/xset/disable-xkb.patch b/meta/recipes-graphics/xorg-app/xset/disable-xkb.patch new file mode 100644 index 0000000000..6060fbb995 --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xset/disable-xkb.patch | |||
@@ -0,0 +1,18 @@ | |||
1 | --- xset-1.0.1/configure.ac.orig 2006-03-08 19:46:59.000000000 +0100 | ||
2 | +++ xset-1.0.1/configure.ac 2006-03-08 19:47:40.000000000 +0100 | ||
3 | @@ -42,11 +42,15 @@ | ||
4 | AC_CHECK_HEADERS([X11/extensions/dpms.h X11/extensions/MITMisc.h],,,[#include <X11/Xlib.h>]) | ||
5 | CPPFLAGS="$SAVE_CPPFLAGS"],[echo "not found"]) | ||
6 | |||
7 | +AC_ARG_ENABLE(xkb, AC_HELP_STRING([--disable-xkb], [Disable XKB support]), | ||
8 | + XKB="$enableval", XKB="yes") | ||
9 | +if test "x$XKB" = "xyes" ; then | ||
10 | PKG_CHECK_MODULES(SET_XKB, x11, | ||
11 | [SAVE_CPPFLAGS="$CPPFLAGS" | ||
12 | CPPFLAGS="$CPPFLAGS $SET_XKB_CFLAGS $SET_X11_CFLAGS" | ||
13 | AC_CHECK_HEADERS([X11/XKBlib.h],,,[#include <X11/Xlib.h>]) | ||
14 | CPPFLAGS="$SAVE_CPPFLAGS"],[echo "not found"]) | ||
15 | +fi | ||
16 | |||
17 | PKG_CHECK_MODULES(SET_XF86MISC, xxf86misc, | ||
18 | [SAVE_CPPFLAGS="$CPPFLAGS" | ||
diff --git a/meta/recipes-graphics/xorg-app/xset_1.1.0.bb b/meta/recipes-graphics/xorg-app/xset_1.1.0.bb new file mode 100644 index 0000000000..817b097213 --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xset_1.1.0.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | require xorg-app-common.inc | ||
2 | |||
3 | DESCRIPTION = "Utility of setting various user preference options of the display" | ||
4 | LICENSE = "MIT" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=bea81cc9827cdf1af0e12c2b8228cf8d" | ||
6 | DISTRO_PN_ALIAS = "Fedora=xorg-x11-server-utils;Ubuntu=x11-xserver-utils;Debian=x11-xserver-utils;Opensuse=xorg-x11" | ||
7 | DEPENDS += "libxext libxxf86misc libxfontcache libxmu libxp libxau" | ||
8 | PR = "r0" | ||
9 | PE = "1" | ||
10 | |||
11 | SRC_URI += "file://disable-xkb.patch" | ||
12 | |||
13 | CFLAGS += "-D_GNU_SOURCE" | ||
14 | EXTRA_OECONF = "--disable-xkb" | ||
diff --git a/meta/recipes-graphics/xorg-app/xvinfo_1.0.2.bb b/meta/recipes-graphics/xorg-app/xvinfo_1.0.2.bb new file mode 100644 index 0000000000..ac27f13f34 --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xvinfo_1.0.2.bb | |||
@@ -0,0 +1,5 @@ | |||
1 | require xorg-app-common.inc | ||
2 | |||
3 | DESCRIPTION = "Print out X-Video extension adaptor information" | ||
4 | DEPENDS += " libxv" | ||
5 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-app/xwininfo_1.0.5.bb b/meta/recipes-graphics/xorg-app/xwininfo_1.0.5.bb new file mode 100644 index 0000000000..bd3e3e7583 --- /dev/null +++ b/meta/recipes-graphics/xorg-app/xwininfo_1.0.5.bb | |||
@@ -0,0 +1,8 @@ | |||
1 | require xorg-app-common.inc | ||
2 | |||
3 | DESCRIPTION = "window information utility for X" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=2f077ba838116bbe7cfaac34aff40328" | ||
5 | DEPENDS += "libxext libxmu" | ||
6 | |||
7 | PR = "r0" | ||
8 | PE = "0" | ||