diff options
author | marha <marha@users.sourceforge.net> | 2010-07-13 07:48:55 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-07-13 07:48:55 +0000 |
commit | d8f81c980a46279ac619312a914b563144894512 (patch) | |
tree | 3d2dce1c24fa37edf81c47af2311dbaf56a763f6 /xorg-server/xkeyboard-config/semantics | |
parent | 1812c17dc8e8f071d8731716849957e97bb2b974 (diff) | |
download | vcxsrv-d8f81c980a46279ac619312a914b563144894512.tar.gz vcxsrv-d8f81c980a46279ac619312a914b563144894512.tar.bz2 vcxsrv-d8f81c980a46279ac619312a914b563144894512.zip |
Renamed xkbdata.src also on trunk since the current merging of subversion will loose all the changes in xkbdata.src when the directory is renamed on the source branch.
Diffstat (limited to 'xorg-server/xkeyboard-config/semantics')
-rw-r--r-- | xorg-server/xkeyboard-config/semantics/Makefile.am | 9 | ||||
-rw-r--r-- | xorg-server/xkeyboard-config/semantics/basic | 7 | ||||
-rw-r--r-- | xorg-server/xkeyboard-config/semantics/complete | 7 | ||||
-rw-r--r-- | xorg-server/xkeyboard-config/semantics/default.in | 7 | ||||
-rw-r--r-- | xorg-server/xkeyboard-config/semantics/makefile | 17 | ||||
-rw-r--r-- | xorg-server/xkeyboard-config/semantics/xtest | 7 |
6 files changed, 54 insertions, 0 deletions
diff --git a/xorg-server/xkeyboard-config/semantics/Makefile.am b/xorg-server/xkeyboard-config/semantics/Makefile.am new file mode 100644 index 000000000..9e92daaca --- /dev/null +++ b/xorg-server/xkeyboard-config/semantics/Makefile.am @@ -0,0 +1,9 @@ +semanticsdir = $(xkb_base)/semantics + +dist_semantics_DATA = \ +basic complete default \ +xtest + +dir_data = $(dist_semantics_DATA) + +include $(top_srcdir)/xkbrules.am diff --git a/xorg-server/xkeyboard-config/semantics/basic b/xorg-server/xkeyboard-config/semantics/basic new file mode 100644 index 000000000..014e9ca68 --- /dev/null +++ b/xorg-server/xkeyboard-config/semantics/basic @@ -0,0 +1,7 @@ +// $Xorg: basic,v 1.3 2000/08/17 19:54:42 cpqbld Exp $ +default xkb_semantics "basic" { + +xkb_types { include "basic" }; +xkb_compatibility { include "basic" }; + +}; diff --git a/xorg-server/xkeyboard-config/semantics/complete b/xorg-server/xkeyboard-config/semantics/complete new file mode 100644 index 000000000..df1632e29 --- /dev/null +++ b/xorg-server/xkeyboard-config/semantics/complete @@ -0,0 +1,7 @@ +// $Xorg: complete,v 1.3 2000/08/17 19:54:42 cpqbld Exp $ +default xkb_semantics "complete" { + +xkb_types { include "complete" }; +xkb_compatibility { include "complete" }; + +}; diff --git a/xorg-server/xkeyboard-config/semantics/default.in b/xorg-server/xkeyboard-config/semantics/default.in new file mode 100644 index 000000000..42e755e3c --- /dev/null +++ b/xorg-server/xkeyboard-config/semantics/default.in @@ -0,0 +1,7 @@ +// $Xorg: default,v 1.3 2000/08/17 19:54:42 cpqbld Exp $ +default xkb_semantics "default" { + +xkb_types { include "default" }; +xkb_compatibility { include "default" }; + +}; diff --git a/xorg-server/xkeyboard-config/semantics/makefile b/xorg-server/xkeyboard-config/semantics/makefile new file mode 100644 index 000000000..0181c169f --- /dev/null +++ b/xorg-server/xkeyboard-config/semantics/makefile @@ -0,0 +1,17 @@ +ifeq ($(MAKESERVER),1) +$(error Please do not specify MAKESERVER=1) +endif + +THISDIR=semantics + +DESTDIR=$(MHMAKECONF)\xorg-server\xkbdata\$(THISDIR) + +dist_xkbdata_semantics_DATA = \ + basic \ + complete \ + default \ + xtest + +DATA_FILES=$(dist_xkbdata_semantics_DATA:%=$(DESTDIR)\%) + +include ..\xkbrules.mak diff --git a/xorg-server/xkeyboard-config/semantics/xtest b/xorg-server/xkeyboard-config/semantics/xtest new file mode 100644 index 000000000..d221fe5b4 --- /dev/null +++ b/xorg-server/xkeyboard-config/semantics/xtest @@ -0,0 +1,7 @@ +// $Xorg: xtest,v 1.3 2000/08/17 19:54:42 cpqbld Exp $ +default xkb_semantics "xtest" { + +xkb_types { include "basic" }; +xkb_compatibility { include "xtest" }; + +}; |