diff options
author | Keith Packard <keithp@keithp.com> | 2017-12-13 15:12:25 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-12-13 15:12:25 -0800 |
commit | a9e6d97b07e66f79b5b464972c5a4f468762124f (patch) | |
tree | cd304eb38809696987ce810493cf83d888455e03 /evieproto | |
parent | 8780f0d2a08f5d0ad600e11195118226b356f4b6 (diff) |
Move common evieproto files out of the way
Diffstat (limited to 'evieproto')
-rw-r--r-- | evieproto/.gitignore | 78 | ||||
-rw-r--r-- | evieproto/COPYING | 20 | ||||
-rw-r--r-- | evieproto/Makefile.am | 21 | ||||
-rw-r--r-- | evieproto/README | 44 | ||||
-rwxr-xr-x | evieproto/autogen.sh | 14 | ||||
-rw-r--r-- | evieproto/configure.ac | 19 |
6 files changed, 196 insertions, 0 deletions
diff --git a/evieproto/.gitignore b/evieproto/.gitignore new file mode 100644 index 0000000..24f0fd9 --- /dev/null +++ b/evieproto/.gitignore @@ -0,0 +1,78 @@ +# +# X.Org module default exclusion patterns +# The next section if for module specific patterns +# +# Do not edit the following section +# GNU Build System (Autotools) +aclocal.m4 +autom4te.cache/ +autoscan.log +ChangeLog +compile +config.guess +config.h +config.h.in +config.log +config-ml.in +config.py +config.status +config.status.lineno +config.sub +configure +configure.scan +depcomp +.deps/ +INSTALL +install-sh +.libs/ +libtool +libtool.m4 +ltmain.sh +lt~obsolete.m4 +ltoptions.m4 +ltsugar.m4 +ltversion.m4 +Makefile +Makefile.in +mdate-sh +missing +mkinstalldirs +*.pc +py-compile +stamp-h? +symlink-tree +texinfo.tex +ylwrap + +# Do not edit the following section +# Edit Compile Debug Document Distribute +*~ +*.[0-9] +*.[0-9]x +*.bak +*.bin +core +*.dll +*.exe +*-ISO*.bdf +*-JIS*.bdf +*-KOI8*.bdf +*.kld +*.ko +*.ko.cmd +*.lai +*.l[oa] +*.[oa] +*.obj +*.patch +*.so +*.pcf.gz +*.pdb +*.tar.bz2 +*.tar.gz +# +# Add & Override patterns for evieproto +# +# Edit the following section as needed +# For example, !report.pc overrides *.pc. See 'man gitignore' +# diff --git a/evieproto/COPYING b/evieproto/COPYING new file mode 100644 index 0000000..316475f --- /dev/null +++ b/evieproto/COPYING @@ -0,0 +1,20 @@ +Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice (including the next +paragraph) shall be included in all copies or substantial portions of the +Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. diff --git a/evieproto/Makefile.am b/evieproto/Makefile.am new file mode 100644 index 0000000..6de80c3 --- /dev/null +++ b/evieproto/Makefile.am @@ -0,0 +1,21 @@ +eviedir = $(includedir)/X11/extensions +evie_HEADERS = \ + evieproto.h \ + Xeviestr.h + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = evieproto.pc + +EXTRA_DIST = evieproto.pc.in + +MAINTAINERCLEANFILES = ChangeLog INSTALL + +.PHONY: ChangeLog INSTALL + +INSTALL: + $(INSTALL_CMD) + +ChangeLog: + $(CHANGELOG_CMD) + +dist-hook: ChangeLog INSTALL diff --git a/evieproto/README b/evieproto/README new file mode 100644 index 0000000..72b5f54 --- /dev/null +++ b/evieproto/README @@ -0,0 +1,44 @@ +XEvIE - X Event Interception Extension + +Extension name: XEVIE + +XEvIE is a X extension providing functionalities to allow a client to +intercept keyboard/mouse events, and optionally modify them or consume +them before delivery through the normal event delivery mechanisms. + +It was included in X11R6.8 through Xorg server 1.5, but is no +longer supported in current X server releases (and didn't actually +work in the last releases that did include it, nor was it ever enabled +by default in the releases made by X.Org, though some distros may have +enabled it in their builds/packages). + +No formal specification of the protocol was ever written, but it can +be mostly determined from the evieproto.h header and the libXevie +documentation of the functions that directly map to the protocol requests. + +A version 1.1 was proposed to solve several issues around security and +multi-client access, but never implemented. + +All questions regarding this software should be directed at the +Xorg mailing list: + + http://lists.freedesktop.org/mailman/listinfo/xorg + +Please submit bug reports to the Xorg bugzilla: + + https://bugs.freedesktop.org/enter_bug.cgi?product=xorg + +The master development code repository can be found at: + + git://anongit.freedesktop.org/git/xorg/proto/evieproto + + http://cgit.freedesktop.org/xorg/proto/evieproto + +For patch submission instructions, see: + + http://www.x.org/wiki/Development/Documentation/SubmittingPatches + +For more information on the git code manager, see: + + http://wiki.x.org/wiki/GitPage + diff --git a/evieproto/autogen.sh b/evieproto/autogen.sh new file mode 100755 index 0000000..fc34bd5 --- /dev/null +++ b/evieproto/autogen.sh @@ -0,0 +1,14 @@ +#! /bin/sh + +srcdir=`dirname $0` +test -z "$srcdir" && srcdir=. + +ORIGDIR=`pwd` +cd $srcdir + +autoreconf -v --install || exit 1 +cd $ORIGDIR || exit $? + +if test -z "$NOCONFIGURE"; then + $srcdir/configure "$@" +fi diff --git a/evieproto/configure.ac b/evieproto/configure.ac new file mode 100644 index 0000000..a5f48b1 --- /dev/null +++ b/evieproto/configure.ac @@ -0,0 +1,19 @@ +dnl +dnl Process this file with autoconf to create configure. + +# Initialize Autoconf +AC_PREREQ([2.60]) +AC_INIT([EvIEExt], [1.1.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) +AC_CONFIG_SRCDIR([Makefile.am]) + +# Initialize Automake +AM_INIT_AUTOMAKE([foreign dist-bzip2]) + +# Require xorg-macros: XORG_DEFAULT_OPTIONS +m4_ifndef([XORG_MACROS_VERSION], + [m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])]) +XORG_MACROS_VERSION(1.3) +XORG_DEFAULT_OPTIONS + +AC_OUTPUT([Makefile + evieproto.pc]) |