diff options
Diffstat (limited to 'renderproto')
-rw-r--r-- | renderproto/.gitignore | 78 | ||||
-rw-r--r-- | renderproto/COPYING | 20 | ||||
-rw-r--r-- | renderproto/Makefile.am | 22 | ||||
-rw-r--r-- | renderproto/README | 30 | ||||
-rwxr-xr-x | renderproto/autogen.sh | 17 | ||||
-rw-r--r-- | renderproto/configure.ac | 13 |
6 files changed, 180 insertions, 0 deletions
diff --git a/renderproto/.gitignore b/renderproto/.gitignore new file mode 100644 index 0000000..466a66e --- /dev/null +++ b/renderproto/.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 renderproto +# +# Edit the following section as needed +# For example, !report.pc overrides *.pc. See 'man gitignore' +# diff --git a/renderproto/COPYING b/renderproto/COPYING new file mode 100644 index 0000000..f330a5d --- /dev/null +++ b/renderproto/COPYING @@ -0,0 +1,20 @@ +Copyright © 2000 SuSE, Inc. + +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation, and that the name of SuSE not be used in advertising or +publicity pertaining to distribution of the software without specific, +written prior permission. SuSE makes no representations about the +suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. + +SuSE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL SuSE +BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Author: Keith Packard, SuSE, Inc. diff --git a/renderproto/Makefile.am b/renderproto/Makefile.am new file mode 100644 index 0000000..a1a75ef --- /dev/null +++ b/renderproto/Makefile.am @@ -0,0 +1,22 @@ +renderdir = $(includedir)/X11/extensions +render_HEADERS = \ + render.h \ + renderproto.h + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = renderproto.pc + +dist_doc_DATA = renderproto.txt + + +MAINTAINERCLEANFILES = ChangeLog INSTALL + +.PHONY: ChangeLog INSTALL + +INSTALL: + $(INSTALL_CMD) + +ChangeLog: + $(CHANGELOG_CMD) + +dist-hook: ChangeLog INSTALL diff --git a/renderproto/README b/renderproto/README new file mode 100644 index 0000000..c5e9de8 --- /dev/null +++ b/renderproto/README @@ -0,0 +1,30 @@ + X Rendering Extension + +This extension defines the protcol for a digital image composition as +the foundation of a new rendering model within the X Window System. + +Extension name: RENDER + +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/renderproto + + http://cgit.freedesktop.org/xorg/proto/renderproto + +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/renderproto/autogen.sh b/renderproto/autogen.sh new file mode 100755 index 0000000..e7ba53f --- /dev/null +++ b/renderproto/autogen.sh @@ -0,0 +1,17 @@ +#! /bin/sh + +srcdir=`dirname "$0"` +test -z "$srcdir" && srcdir=. + +ORIGDIR=`pwd` +cd "$srcdir" + +autoreconf -v --install || exit 1 +cd "$ORIGDIR" || exit $? + +git config --local --get format.subjectPrefix >/dev/null 2>&1 || + git config --local format.subjectPrefix "PATCH renderproto" + +if test -z "$NOCONFIGURE"; then + exec "$srcdir"/configure "$@" +fi diff --git a/renderproto/configure.ac b/renderproto/configure.ac new file mode 100644 index 0000000..8154a3a --- /dev/null +++ b/renderproto/configure.ac @@ -0,0 +1,13 @@ +AC_PREREQ([2.60]) +AC_INIT([RenderProto], [0.11.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) +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_CONFIG_FILES([Makefile + renderproto.pc]) +AC_OUTPUT |