diff options
author | Keith Packard <keithp@keithp.com> | 2017-12-13 15:12:27 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-12-13 15:12:27 -0800 |
commit | bb524211a98dfdc7913154e9febe43faadb02e4b (patch) | |
tree | a56cf2f628323e839cb49e5621866a63b3024cbf /xf86rushproto | |
parent | 0f828a6afd6a7f577f7213532c66369605499710 (diff) |
Move common xf86rushproto files out of the way
Diffstat (limited to 'xf86rushproto')
-rw-r--r-- | xf86rushproto/.gitignore | 14 | ||||
-rw-r--r-- | xf86rushproto/COPYING | 20 | ||||
-rw-r--r-- | xf86rushproto/Makefile.am | 19 | ||||
-rwxr-xr-x | xf86rushproto/autogen.sh | 12 | ||||
-rw-r--r-- | xf86rushproto/configure.ac | 12 |
5 files changed, 77 insertions, 0 deletions
diff --git a/xf86rushproto/.gitignore b/xf86rushproto/.gitignore new file mode 100644 index 0000000..2747e9f --- /dev/null +++ b/xf86rushproto/.gitignore @@ -0,0 +1,14 @@ +Makefile +Makefile.in +aclocal.m4 +autom4te.cache +config.log +config.status +configure +install-sh +missing +xf86rushproto.pc +*~ +xf86rushproto-*.tar.* +ChangeLog +tags diff --git a/xf86rushproto/COPYING b/xf86rushproto/COPYING new file mode 100644 index 0000000..9f1e999 --- /dev/null +++ b/xf86rushproto/COPYING @@ -0,0 +1,20 @@ +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 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 +XFREE86 PROJECT 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. + +Except as contained in this notice, the name of the XFree86 Project shall not +be used in advertising or otherwise to promote the sale, use or other dealings +in this Software without prior written authorization from the XFree86 Project. diff --git a/xf86rushproto/Makefile.am b/xf86rushproto/Makefile.am new file mode 100644 index 0000000..a3c3ccf --- /dev/null +++ b/xf86rushproto/Makefile.am @@ -0,0 +1,19 @@ +xf86rushdir = $(includedir)/X11/extensions +xf86rush_HEADERS = \ + xf86rush.h \ + xf86rushstr.h + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = xf86rushproto.pc + +EXTRA_DIST = xf86rushproto.pc.in + +EXTRA_DIST += ChangeLog +MAINTAINERCLEANFILES = ChangeLog + +.PHONY: ChangeLog + +ChangeLog: + $(CHANGELOG_CMD) + +dist-hook: ChangeLog diff --git a/xf86rushproto/autogen.sh b/xf86rushproto/autogen.sh new file mode 100755 index 0000000..904cd67 --- /dev/null +++ b/xf86rushproto/autogen.sh @@ -0,0 +1,12 @@ +#! /bin/sh + +srcdir=`dirname $0` +test -z "$srcdir" && srcdir=. + +ORIGDIR=`pwd` +cd $srcdir + +autoreconf -v --install || exit 1 +cd $ORIGDIR || exit $? + +$srcdir/configure --enable-maintainer-mode "$@" diff --git a/xf86rushproto/configure.ac b/xf86rushproto/configure.ac new file mode 100644 index 0000000..5606f90 --- /dev/null +++ b/xf86rushproto/configure.ac @@ -0,0 +1,12 @@ +AC_PREREQ([2.57]) +AC_INIT([XF86RushProto], [1.1.2], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) +AM_INIT_AUTOMAKE([foreign dist-bzip2]) + +# Require xorg-macros: XORG_CHANGELOG +m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.2 or later before running autoconf/autogen])]) +XORG_MACROS_VERSION(1.2) +XORG_RELEASE_VERSION +XORG_CHANGELOG + +AC_OUTPUT([Makefile + xf86rushproto.pc]) |