diff options
Diffstat (limited to 'meta/recipes-graphics/xorg-proto')
38 files changed, 389 insertions, 0 deletions
diff --git a/meta/recipes-graphics/xorg-proto/applewmproto_1.4.1.bb b/meta/recipes-graphics/xorg-proto/applewmproto_1.4.1.bb new file mode 100644 index 0000000000..9f09fff7b7 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/applewmproto_1.4.1.bb | |||
@@ -0,0 +1,4 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | PR = "r1" | ||
4 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-proto/bigreqsproto_1.1.0.bb b/meta/recipes-graphics/xorg-proto/bigreqsproto_1.1.0.bb new file mode 100644 index 0000000000..0ea0729bcf --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/bigreqsproto_1.1.0.bb | |||
@@ -0,0 +1,12 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | PR = "r2" | ||
4 | PE = "1" | ||
5 | |||
6 | DEPENDS += "gettext" | ||
7 | |||
8 | DESCRIPTION = "X.Org BigReqs extension headers" | ||
9 | |||
10 | BBCLASSEXTEND = "native nativesdk" | ||
11 | |||
12 | LIC_FILES_CHKSUM = "file://COPYING;md5=b12715630da6f268d0d3712ee1a504f4" | ||
diff --git a/meta/recipes-graphics/xorg-proto/calibrateproto/fix.patch b/meta/recipes-graphics/xorg-proto/calibrateproto/fix.patch new file mode 100644 index 0000000000..0c85cb0ccf --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/calibrateproto/fix.patch | |||
@@ -0,0 +1,40 @@ | |||
1 | Add missing length fields to the replies. Without these, sanity checking in recent X | ||
2 | breaks things. | ||
3 | |||
4 | RP 11/2/10 | ||
5 | |||
6 | |||
7 | Index: git/xcalibrateproto.h | ||
8 | =================================================================== | ||
9 | --- git.orig/xcalibrateproto.h 2010-02-11 11:47:45.711985932 +0000 | ||
10 | +++ git/xcalibrateproto.h 2010-02-11 11:40:21.000000000 +0000 | ||
11 | @@ -67,13 +67,13 @@ | ||
12 | BYTE type; /* X_Reply */ | ||
13 | BYTE pad1; | ||
14 | CARD16 sequenceNumber B16; | ||
15 | + CARD32 length; | ||
16 | CARD32 status; | ||
17 | CARD32 pad2 B32; | ||
18 | CARD32 pad3 B32; | ||
19 | CARD32 pad4 B32; | ||
20 | CARD32 pad5 B32; | ||
21 | CARD32 pad6 B32; | ||
22 | - CARD32 pad7 B32; | ||
23 | } xXCalibrateRawModeReply; | ||
24 | |||
25 | #define sz_xXCalibrateRawModeReply 32 | ||
26 | @@ -92,13 +92,13 @@ | ||
27 | BYTE type; /* X_Reply */ | ||
28 | BYTE pad1; | ||
29 | CARD16 sequenceNumber B16; | ||
30 | + CARD32 length; | ||
31 | CARD32 x; | ||
32 | CARD32 y; | ||
33 | CARD32 pad2 B32; | ||
34 | CARD32 pad3 B32; | ||
35 | CARD32 pad4 B32; | ||
36 | CARD32 pad5 B32; | ||
37 | - CARD32 pad6 B32; | ||
38 | } xXCalibrateScreenToCoordReply; | ||
39 | |||
40 | #define sz_xXCalibrateScreenToCoordReply 32 | ||
diff --git a/meta/recipes-graphics/xorg-proto/calibrateproto_git.bb b/meta/recipes-graphics/xorg-proto/calibrateproto_git.bb new file mode 100644 index 0000000000..9fd5c3fe0b --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/calibrateproto_git.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | DESCRIPTION = "Touchscreen calibration protocol" | ||
4 | |||
5 | LICENSE = "MIT-style" | ||
6 | LIC_FILES_CHKSUM = "file://xcalibratewire.h;endline=23;md5=7f86ef7b03cce6c4c9ebd59d20ca485f \ | ||
7 | file://xcalibrateproto.h;endline=23;md5=e4490491edcc171ca24f98569ee580db" | ||
8 | |||
9 | PV = "0.0+git${SRCPV}" | ||
10 | PR = "r2" | ||
11 | |||
12 | SRC_URI = "git://anongit.freedesktop.org/git/xorg/proto/calibrateproto;protocol=git \ | ||
13 | file://fix.patch;apply=yes" | ||
14 | S = "${WORKDIR}/git" | ||
diff --git a/meta/recipes-graphics/xorg-proto/compositeproto_0.4.bb b/meta/recipes-graphics/xorg-proto/compositeproto_0.4.bb new file mode 100644 index 0000000000..191053b1c2 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/compositeproto_0.4.bb | |||
@@ -0,0 +1,8 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT-style" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=f8cdfa47489609f305b91521f3a8803f \ | ||
5 | file://composite.h;endline=43;md5=11420a347713de702a1fe60949085464" | ||
6 | |||
7 | CONFLICTS = "compositeext" | ||
8 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-proto/damageproto_1.2.0.bb b/meta/recipes-graphics/xorg-proto/damageproto_1.2.0.bb new file mode 100644 index 0000000000..af61d03afb --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/damageproto_1.2.0.bb | |||
@@ -0,0 +1,9 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT-style" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=d5f5a2de65c3a84cbde769f07a769608 \ | ||
5 | file://damagewire.h;endline=23;md5=4a4501a592dbc7de5ce89255e50d0296" | ||
6 | |||
7 | CONFLICTS = "damageext" | ||
8 | PR = "r1" | ||
9 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-proto/dmxproto_2.3.bb b/meta/recipes-graphics/xorg-proto/dmxproto_2.3.bb new file mode 100644 index 0000000000..635c63f997 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/dmxproto_2.3.bb | |||
@@ -0,0 +1,8 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=a3c3499231a8035efd0e004cfbd3b72a \ | ||
5 | file://dmxproto.h;endline=32;md5=ab8509955c3dd4c65fac728e1b367bc4" | ||
6 | |||
7 | PR = "r1" | ||
8 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-proto/dri2proto_2.3.bb b/meta/recipes-graphics/xorg-proto/dri2proto_2.3.bb new file mode 100644 index 0000000000..048c27f559 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/dri2proto_2.3.bb | |||
@@ -0,0 +1,9 @@ | |||
1 | DESCRIPTION = "DRI2 extension headers" | ||
2 | |||
3 | require xorg-proto-common.inc | ||
4 | |||
5 | LICENSE = "MIT" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=2e396fa91834f8786032cad2da5638f3 \ | ||
7 | file://dri2proto.h;endline=31;md5=22f28bf68d01b533f26195e94b3ed8ca" | ||
8 | |||
9 | PR = "r0" | ||
diff --git a/meta/recipes-graphics/xorg-proto/dri2proto_git.bb b/meta/recipes-graphics/xorg-proto/dri2proto_git.bb new file mode 100644 index 0000000000..a5ad7d0919 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/dri2proto_git.bb | |||
@@ -0,0 +1,11 @@ | |||
1 | DESCRIPTION = "DRI2 extension headers" | ||
2 | |||
3 | require xorg-proto-common.inc | ||
4 | |||
5 | PV = "1.99.3+git${SRCPV}" | ||
6 | PR = "r2" | ||
7 | |||
8 | SRC_URI = "git://anongit.freedesktop.org/git/xorg/proto/dri2proto;protocol=git" | ||
9 | |||
10 | S = "${WORKDIR}/git" | ||
11 | |||
diff --git a/meta/recipes-graphics/xorg-proto/evieext_1.1.0.bb b/meta/recipes-graphics/xorg-proto/evieext_1.1.0.bb new file mode 100644 index 0000000000..16f9039b9d --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/evieext_1.1.0.bb | |||
@@ -0,0 +1,8 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | DESCRIPTION = "X EVIE extension headers" | ||
4 | |||
5 | PR = "r1" | ||
6 | PE = "1" | ||
7 | |||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=6cf85dc8217152304ac976db1e240ebe" | ||
diff --git a/meta/recipes-graphics/xorg-proto/fixesproto_4.1.1.bb b/meta/recipes-graphics/xorg-proto/fixesproto_4.1.1.bb new file mode 100644 index 0000000000..cb709f7841 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/fixesproto_4.1.1.bb | |||
@@ -0,0 +1,11 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT-style" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=ae2c93d7226d1ed33287c3924ca61816 \ | ||
5 | file://xfixesproto.h;endline=41;md5=fa6bf4d92ae4dd0c1cac511105e541d2" | ||
6 | |||
7 | CONFLICTS = "fixesext" | ||
8 | PR = "r1" | ||
9 | PE = "1" | ||
10 | |||
11 | BBCLASSEXTEND = "nativesdk" | ||
diff --git a/meta/recipes-graphics/xorg-proto/fontcacheproto_0.1.3.bb b/meta/recipes-graphics/xorg-proto/fontcacheproto_0.1.3.bb new file mode 100644 index 0000000000..302e84a567 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/fontcacheproto_0.1.3.bb | |||
@@ -0,0 +1,10 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "BSD" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=ba9fcd8fe6d09af9f733daccc1a21857 \ | ||
5 | file://fontcacheP.h;endline=28;md5=85c80bfa96c802ee85a570862ee60214" | ||
6 | |||
7 | PR = "r1" | ||
8 | PE = "1" | ||
9 | |||
10 | BBCLASSEXTEND = "native" | ||
diff --git a/meta/recipes-graphics/xorg-proto/fontsproto_2.1.0.bb b/meta/recipes-graphics/xorg-proto/fontsproto_2.1.0.bb new file mode 100644 index 0000000000..74b2fed79d --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/fontsproto_2.1.0.bb | |||
@@ -0,0 +1,10 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT-style" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=c3e48aa9ce868c8e90f0401db41c11a2 \ | ||
5 | file://FSproto.h;endline=44;md5=d2e58e27095e5ea7d4ad456ccb91986c" | ||
6 | |||
7 | PR = "r1" | ||
8 | PE = "1" | ||
9 | |||
10 | BBCLASSEXTEND = "native" | ||
diff --git a/meta/recipes-graphics/xorg-proto/glproto_1.4.11.bb b/meta/recipes-graphics/xorg-proto/glproto_1.4.11.bb new file mode 100644 index 0000000000..c1ade41f2e --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/glproto_1.4.11.bb | |||
@@ -0,0 +1,10 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=4641deddaa80fe7ca88e944e1fd94a94 \ | ||
5 | file://glxproto.h;beginline=4;endline=32;md5=6b79c570f644363b356456e7d44471d9" | ||
6 | |||
7 | PR = "r1" | ||
8 | PE = "1" | ||
9 | |||
10 | BBCLASSEXTEND = "nativesdk" | ||
diff --git a/meta/recipes-graphics/xorg-proto/inputproto_2.0.bb b/meta/recipes-graphics/xorg-proto/inputproto_2.0.bb new file mode 100644 index 0000000000..f3332a8ca9 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/inputproto_2.0.bb | |||
@@ -0,0 +1,12 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT & MIT-style" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=b9f79c119df756aeffcb89ec96716a9e \ | ||
5 | file://XI2proto.h;endline=48;md5=1ac1581e61188da2885cc14ff49b20be" | ||
6 | |||
7 | PR = "r2" | ||
8 | PE = "1" | ||
9 | |||
10 | inherit gettext | ||
11 | |||
12 | BBCLASSEXTEND = "native nativesdk" | ||
diff --git a/meta/recipes-graphics/xorg-proto/inputproto_git.bb b/meta/recipes-graphics/xorg-proto/inputproto_git.bb new file mode 100644 index 0000000000..a97fb0bfab --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/inputproto_git.bb | |||
@@ -0,0 +1,12 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | PR = "r1" | ||
4 | PE = "1" | ||
5 | PV = "1.9.99.12+git${SRCPV}" | ||
6 | |||
7 | SRC_URI = "git://anongit.freedesktop.org/git/xorg/proto/inputproto;protocol=git" | ||
8 | S = "${WORKDIR}/git" | ||
9 | |||
10 | inherit gettext | ||
11 | |||
12 | BBCLASSEXTEND = "native nativesdk" | ||
diff --git a/meta/recipes-graphics/xorg-proto/kbproto_1.0.4.bb b/meta/recipes-graphics/xorg-proto/kbproto_1.0.4.bb new file mode 100644 index 0000000000..b49d5a6921 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/kbproto_1.0.4.bb | |||
@@ -0,0 +1,12 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT-style" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=7dd6ea99e2a83a552c02c80963623c38 \ | ||
5 | file://XKBproto.h;beginline=2;endline=26;md5=5744eeff407aeb6e7a1346eebab486a2" | ||
6 | |||
7 | PR = "r2" | ||
8 | PE = "1" | ||
9 | |||
10 | DEPENDS += "gettext" | ||
11 | |||
12 | BBCLASSEXTEND = "native nativesdk" | ||
diff --git a/meta/recipes-graphics/xorg-proto/printproto_1.0.4.bb b/meta/recipes-graphics/xorg-proto/printproto_1.0.4.bb new file mode 100644 index 0000000000..194abbafc2 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/printproto_1.0.4.bb | |||
@@ -0,0 +1,9 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | |||
4 | LICENSE = "MIT" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=a2363c155fd3749a8cf436ef56c3070f \ | ||
6 | file://Print.h;beginline=2;endline=59;md5=1a2ee3cbfe3e38e136ff1b8477b51f4a" | ||
7 | |||
8 | PR = "r1" | ||
9 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-proto/randrproto_1.3.1.bb b/meta/recipes-graphics/xorg-proto/randrproto_1.3.1.bb new file mode 100644 index 0000000000..725be1d702 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/randrproto_1.3.1.bb | |||
@@ -0,0 +1,11 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT-style" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=5fa3f85d9eefaa3a945071485be11343 \ | ||
5 | file://randrproto.h;endline=30;md5=3885957c6048fdf3310ac8ba54ca2c3f" | ||
6 | |||
7 | CONFLICTS = "randrext" | ||
8 | PR = "r1" | ||
9 | PE = "1" | ||
10 | |||
11 | BBCLASSEXTEND = "nativesdk" | ||
diff --git a/meta/recipes-graphics/xorg-proto/recordproto_1.14.bb b/meta/recipes-graphics/xorg-proto/recordproto_1.14.bb new file mode 100644 index 0000000000..abb91d769b --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/recordproto_1.14.bb | |||
@@ -0,0 +1,9 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT-style" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=575827a0f554bbed332542976d5f3d40 \ | ||
5 | file://recordproto.h;endline=19;md5=1cbb0dd45a0b060ff833901620a3e738" | ||
6 | |||
7 | CONFLICTS = "recordext" | ||
8 | PR = "r1" | ||
9 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-proto/renderproto_0.11.bb b/meta/recipes-graphics/xorg-proto/renderproto_0.11.bb new file mode 100644 index 0000000000..afdbb05090 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/renderproto_0.11.bb | |||
@@ -0,0 +1,11 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=f826d99765196352e6122a406cf0d024 \ | ||
5 | file://renderproto.h;beginline=4;endline=24;md5=3e5e2851dad240b0a3a27c4776b4fd1f" | ||
6 | |||
7 | CONFLICTS = "renderext" | ||
8 | PR = "r1" | ||
9 | PE = "1" | ||
10 | |||
11 | BBCLASSEXTEND = "nativesdk" | ||
diff --git a/meta/recipes-graphics/xorg-proto/resourceproto_1.1.0.bb b/meta/recipes-graphics/xorg-proto/resourceproto_1.1.0.bb new file mode 100644 index 0000000000..702e8f36f2 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/resourceproto_1.1.0.bb | |||
@@ -0,0 +1,8 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=e01e66e4b317088cf869bc98e6af4fb6" | ||
5 | |||
6 | CONFLICTS = "resourceext" | ||
7 | PR = "r1" | ||
8 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-proto/scrnsaverproto_1.2.0.bb b/meta/recipes-graphics/xorg-proto/scrnsaverproto_1.2.0.bb new file mode 100644 index 0000000000..cd992516e8 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/scrnsaverproto_1.2.0.bb | |||
@@ -0,0 +1,9 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | |||
4 | LICENSE = "MIT" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=eed49b78b15b436c933b6b8b054e3901 \ | ||
6 | file://saverproto.h;endline=26;md5=a84c0637305159f3c0ab173aaeede48d" | ||
7 | |||
8 | PR = "r1" | ||
9 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-proto/trapproto_3.4.3.bb b/meta/recipes-graphics/xorg-proto/trapproto_3.4.3.bb new file mode 100644 index 0000000000..c152be703c --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/trapproto_3.4.3.bb | |||
@@ -0,0 +1,7 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT-style" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=0a984c8e242256a12f3b8dac085893db" | ||
5 | |||
6 | PR = "r1" | ||
7 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-proto/videoproto_2.3.0.bb b/meta/recipes-graphics/xorg-proto/videoproto_2.3.0.bb new file mode 100644 index 0000000000..baedc281c9 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/videoproto_2.3.0.bb | |||
@@ -0,0 +1,7 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT & MIT-style" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=59d089e37bf57b5206602da38f58ca5d" | ||
5 | |||
6 | PR = "r1" | ||
7 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-proto/windowswmproto_1.0.4.bb b/meta/recipes-graphics/xorg-proto/windowswmproto_1.0.4.bb new file mode 100644 index 0000000000..9f09fff7b7 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/windowswmproto_1.0.4.bb | |||
@@ -0,0 +1,4 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | PR = "r1" | ||
4 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-proto/xcmiscproto_1.2.0.bb b/meta/recipes-graphics/xorg-proto/xcmiscproto_1.2.0.bb new file mode 100644 index 0000000000..1ed5a5f314 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/xcmiscproto_1.2.0.bb | |||
@@ -0,0 +1,11 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT-style" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=09d83047c15994e05db29b423ed6662e" | ||
5 | |||
6 | PR = "r2" | ||
7 | PE = "1" | ||
8 | |||
9 | DEPENDS += "gettext" | ||
10 | |||
11 | BBCLASSEXTEND = "native nativesdk" | ||
diff --git a/meta/recipes-graphics/xorg-proto/xextproto_7.1.1.bb b/meta/recipes-graphics/xorg-proto/xextproto_7.1.1.bb new file mode 100644 index 0000000000..157f070309 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/xextproto_7.1.1.bb | |||
@@ -0,0 +1,11 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT & MIT-style" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=86f273291759d0ba2a22585cd1c06c53" | ||
5 | |||
6 | PR = "r0" | ||
7 | PE = "1" | ||
8 | |||
9 | inherit gettext | ||
10 | |||
11 | BBCLASSEXTEND = "native nativesdk" | ||
diff --git a/meta/recipes-graphics/xorg-proto/xf86bigfontproto_1.2.0.bb b/meta/recipes-graphics/xorg-proto/xf86bigfontproto_1.2.0.bb new file mode 100644 index 0000000000..f038a1c290 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/xf86bigfontproto_1.2.0.bb | |||
@@ -0,0 +1,11 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=e01e66e4b317088cf869bc98e6af4fb6" | ||
5 | |||
6 | PR = "r1" | ||
7 | PE = "1" | ||
8 | |||
9 | DEPENDS += "gettext" | ||
10 | |||
11 | BBCLASSEXTEND = "native nativesdk" | ||
diff --git a/meta/recipes-graphics/xorg-proto/xf86dgaproto_2.1.bb b/meta/recipes-graphics/xorg-proto/xf86dgaproto_2.1.bb new file mode 100644 index 0000000000..c400193a06 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/xf86dgaproto_2.1.bb | |||
@@ -0,0 +1,8 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=e01e66e4b317088cf869bc98e6af4fb6" | ||
5 | |||
6 | CONFLICTS = "xxf86dgaext" | ||
7 | PR = "r1" | ||
8 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-proto/xf86driproto_2.1.0.bb b/meta/recipes-graphics/xorg-proto/xf86driproto_2.1.0.bb new file mode 100644 index 0000000000..6f31845b86 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/xf86driproto_2.1.0.bb | |||
@@ -0,0 +1,8 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=4641deddaa80fe7ca88e944e1fd94a94 \ | ||
5 | file://xf86driproto.h;endline=35;md5=42be3d8e6d429ab79172572bb0cff544" | ||
6 | |||
7 | PR = "r1" | ||
8 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-proto/xf86miscproto_0.9.3.bb b/meta/recipes-graphics/xorg-proto/xf86miscproto_0.9.3.bb new file mode 100644 index 0000000000..9ea07806f2 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/xf86miscproto_0.9.3.bb | |||
@@ -0,0 +1,7 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=e01e66e4b317088cf869bc98e6af4fb6" | ||
5 | |||
6 | PR = "r1" | ||
7 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-proto/xf86rushproto_1.1.2.bb b/meta/recipes-graphics/xorg-proto/xf86rushproto_1.1.2.bb new file mode 100644 index 0000000000..9ea07806f2 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/xf86rushproto_1.1.2.bb | |||
@@ -0,0 +1,7 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=e01e66e4b317088cf869bc98e6af4fb6" | ||
5 | |||
6 | PR = "r1" | ||
7 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-proto/xf86vidmodeproto_2.3.bb b/meta/recipes-graphics/xorg-proto/xf86vidmodeproto_2.3.bb new file mode 100644 index 0000000000..ccbbb36f15 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/xf86vidmodeproto_2.3.bb | |||
@@ -0,0 +1,9 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=499be2ff387a42f84628c35f311f1502" | ||
5 | |||
6 | CONFLICTS = "xxf86vmext" | ||
7 | |||
8 | PR = "r0" | ||
9 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-proto/xineramaproto_1.2.bb b/meta/recipes-graphics/xorg-proto/xineramaproto_1.2.bb new file mode 100644 index 0000000000..d053dbbcd3 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/xineramaproto_1.2.bb | |||
@@ -0,0 +1,8 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT & MIT-style" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=3e397a5326c83d5d0ebf5b3f87163ac6 \ | ||
5 | file://panoramiXproto.h;endline=24;md5=098e0bc089368a988092b3cbda617a57" | ||
6 | |||
7 | PR = "r1" | ||
8 | PE = "1" | ||
diff --git a/meta/recipes-graphics/xorg-proto/xorg-proto-common.inc b/meta/recipes-graphics/xorg-proto/xorg-proto-common.inc new file mode 100644 index 0000000000..92aa1fe6d3 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/xorg-proto-common.inc | |||
@@ -0,0 +1,20 @@ | |||
1 | DESCRIPTION = "X protocol headers: ${XORG_PN}" | ||
2 | HOMEPAGE = "http://www.x.org" | ||
3 | BUGTRACKER = "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | ||
4 | |||
5 | SECTION = "x11/libs" | ||
6 | LICENSE = "MIT-X" | ||
7 | |||
8 | XORG_PN = "${BPN}" | ||
9 | |||
10 | SRC_URI = "${XORG_MIRROR}/individual/proto/${XORG_PN}-${PV}.tar.bz2" | ||
11 | |||
12 | S = "${WORKDIR}/${XORG_PN}-${PV}" | ||
13 | |||
14 | DEPENDS = "util-macros" | ||
15 | |||
16 | inherit autotools pkgconfig | ||
17 | |||
18 | # ${PN} is empty so we need to tweak -dev and -dbg package dependencies | ||
19 | RDEPENDS_${PN}-dev = "" | ||
20 | RRECOMMENDS_${PN}-dbg = "${PN}-dev (= ${EXTENDPV})" | ||
diff --git a/meta/recipes-graphics/xorg-proto/xproto_7.0.17.bb b/meta/recipes-graphics/xorg-proto/xproto_7.0.17.bb new file mode 100644 index 0000000000..c145b60b23 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/xproto_7.0.17.bb | |||
@@ -0,0 +1,9 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | LICENSE = "MIT & MIT-style" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=70c104816b85de375ba1fc09199d0e69" | ||
5 | |||
6 | PR = "r0" | ||
7 | PE = "1" | ||
8 | |||
9 | BBCLASSEXTEND = "native nativesdk" | ||
diff --git a/meta/recipes-graphics/xorg-proto/xproxymanagementprotocol_1.0.3.bb b/meta/recipes-graphics/xorg-proto/xproxymanagementprotocol_1.0.3.bb new file mode 100644 index 0000000000..9c3d9efa71 --- /dev/null +++ b/meta/recipes-graphics/xorg-proto/xproxymanagementprotocol_1.0.3.bb | |||
@@ -0,0 +1,5 @@ | |||
1 | require xorg-proto-common.inc | ||
2 | |||
3 | PROVIDES="xproxymngproto" | ||
4 | PR = "r1" | ||
5 | PE = "1" | ||