menu "Build options"
+source package/gnuconfig/Config.in
+
config BR2_WGET
string "Wget command"
default "wget --passive-ftp -nd"
config BR2_PACKAGE_XSERVER_none
bool "none"
+config BR2_PACKAGE_XSERVER_x11r7
+ bool "x11r7"
config BR2_PACKAGE_XSERVER_xorg
bool "xorg"
config BR2_PACKAGE_XSERVER_tinyx
bool "tinyx"
endchoice
+if BR2_PACKAGE_XSERVER_x11r7
+source "package/x11r7/Config.in"
+endif
if BR2_PACKAGE_XSERVER_xorg
source "package/xorg/Config.in"
endif
--- /dev/null
+################################################################################
+#
+# Makefile.autotools.in --
+#
+# Implicit and Generated Rules for easily creating autotools-compatible
+# buildroot packages
+#
+## Example minimal makefile for a package named 'foo'
+#
+# | FOO_VERSION = 1.0
+# | FOO_SOURCE = foo-$(FOO_VERSION).tar.gz
+# | FOO_SITE = http://www.libfoo.org/dist
+# | $(eval $(call AUTOTARGETS,foo))
+#
+## The following targets can be called from the shell:
+#
+# foo, foo-source, foo-patch, foo-configure, foo-build, foo-install,
+# foo-install-target, foo-install-staging, foo-uninstall, foo-clean,
+# foo-dirclean
+#
+## The following variables which can be (re)defined in the package makefile:
+#
+# FOO_VERSION [mandatory]
+# version string of the package
+# FOO_SOURCE [default foo-$(FOO_VERSION).tar.gz]
+# file name of the package source
+# FOO_SITE [default sourceforge project "foo"]
+# URL under wich $(FOO_SOURCE) can be found
+# FOO_DEPENDANCIES [default empty]
+# list of (package) targets that must be built before foo
+# FOO_AUTORECONF [YES/NO, default NO]
+# run <autoreconf> before <configure>
+# FOO_CONF_ENV [default empty]
+# environment passed to the <configure> script
+# FOO_CONF_OPT [default empty]
+# arguments passed to the <configure> script
+# FOO_MAKE_ENV [default empty]
+# environment passed to all calls to <make> in the package source
+# directory
+# FOO_MAKE_OPT [default empty]
+# arguments passed to <make> while building
+# FOO_INSTALL_STAGING [YES/NO, default NO]
+# install the package to the staging directory
+# FOO_INSTALL_TARGET [YES/NO, default YES]
+# install the package to the target directory
+# FOO_INSTALL_STAGING_OPT [default DESTDIR=$(STAGING_DIR)/usr install]
+# arguments passed to <make> while installing to the staging directory
+# FOO_INSTALL_TARGET_OPT [default DESTDIR=$(STAGING_DIR)/usr install-exec]
+# arguments passed to <make> while installing to the target directory
+# FOO_CLEAN_OPT [default clean]
+# arguments passed to <make> while installing to the staging directory
+# FOO_UNINSTALL_STAGING_OPT [default DESTDIR=$(STAGING_DIR)/usr uninstall]
+# arguments passed to <make> while uninstalling from the staging
+# directory
+# FOO_UNINSTALL_TARGET_OPT [default DESTDIR=$(STAGING_DIR)/usr uninstall]
+# arguments passed to <make> while uninstalling from the target
+# directory
+# FOO_SUBDIR [default empty]
+# relative path in the package source from which to run configure and
+# make
+#
+## The following variables contain hook target names;
+## by default they do nothing, they can be overriden in package makefiles
+#
+# FOO_HOOK_POST_BUILD, FOO_HOOK_POST_INSTALL
+#
+## The following variables contain targets that can be overriden
+#
+# FOO_TARGET_INSTALL_TARGET FOO_TARGET_INSTALL_STAGING FOO_TARGET_BUILD
+# FOO_TARGET_CONFIGURE FOO_TARGET_PATCH FOO_TARGET_EXTRACT FOO_TARGET_SOURCE
+# FOO_TARGET_UNINSTALL FOO_TARGET_CLEAN FOO_TARGET_DIRCLEAN
+#
+# E.g. if your package has a no <configure> script you can place the following
+# in your package makefile:
+#
+# | $(FOO_TARGET_INSTALL):
+# | touch $@
+#
+## The following variables are defined automatically and can be used in
+## overriden targets:
+#
+# PKG
+# is always the current package name ("foo" in the example)
+# FOO_DIR
+# the directory in which the package source is extracted.
+# the base name will always be foo-$(FOO_VERSION), no matter what the
+# archive name or the directory-in-archive name are.
+# MESSAGE
+# macro that outputs a pretty message to stdout, e.g. use
+# $(call MESSAGE,"Hello World")
+# in a target.
+#
+# Caveats:
+# - the 'eval' line (final line in the example) must be placed
+# after all variable settings, but before all target re-definition
+# (including hooks)
+################################################################################
+
+# UPPERCASE Macro -- transform its argument to uppercase and replace dots and
+# hyphens to underscores
+UPPERCASE = $(shell echo $(1) | tr "a-z.-" "A-Z__")
+
+# Define extrators for different archive suffixes
+INFLATE.bz2 = $(BZCAT)
+INFLATE.gz = $(ZCAT)
+INFLATE.tbz = $(BZCAT)
+INFLATE.tgz = $(ZCAT)
+INFLATE.tar = cat
+
+# MESSAGE Macro -- display a message in bold type
+MESSAGE = @echo $(TERM_BOLD) ; \
+ echo ">>> $($(PKG)_NAME) $($(PKG)_VERSION) $(1)$(shell tput rmso)" ; \
+ echo $(TERM_RESET)
+TERM_BOLD = $(shell tput bold)
+TERM_RESET = $(shell tput rmso)
+
+# Utility programs used to build packages
+TAR ?= tar
+#ACLOCAL_STAGING_DIR ?= $(STAGING_DIR)/usr/share/aclocal
+#ACLOCAL ?= aclocal -I $(ACLOCAL_STAGING_DIR)
+#AUTORECONF ?= autoreconf -v -i -f -I $(ACLOCAL_STAGING_DIR)
+# ACLOCAL="$(ACLOCAL)"
+
+
+################################################################################
+# Implicit targets -- produce a stamp file for each step of a package build
+################################################################################
+
+# Retrieve and unpack the archive
+$(BUILD_DIR)/%/.stamp_downloaded:
+ $(call MESSAGE,"Downloading")
+ test -e $(DL_DIR)/$($(PKG)_SOURCE) || $(WGET) -P $(DL_DIR) $($(PKG)_SITE)/$($(PKG)_SOURCE)
+ mkdir -p $(@D)
+ touch $@
+
+# Retrieve and unpack the archive
+$(BUILD_DIR)/%/.stamp_extracted:
+ $(call MESSAGE,"Extracting")
+ mkdir -p $(@D)
+ $(INFLATE$(suffix $($(PKG)_SOURCE))) $(DL_DIR)/$($(PKG)_SOURCE) | \
+ $(TAR) --strip-components=1 -C $(@D) $(TAR_OPTIONS) -
+ touch $@
+
+# Patch
+$(BUILD_DIR)/%/.stamp_patched: NAMEVER = $($(PKG)_NAME)-$($(PKG)_VERSION)
+$(BUILD_DIR)/%/.stamp_patched:
+ $(call MESSAGE,"Patching")
+ (if test -d package/$($(PKG)_NAME) ; then \
+ if test "$(wildcard package/$($(PKG)_NAME)/$(NAMEVER)*.patch)" ; then \
+ toolchain/patch-kernel.sh $(@D) package/$($(PKG)_NAME) $(NAMEVER)\*.patch || exit 1 ; \
+ else \
+ toolchain/patch-kernel.sh $(@D) package/$($(PKG)_NAME) $($(PKG)_NAME)\*.patch || exit 1 ; \
+ if test -d package/$($(PKG)_NAME)/$(NAMEVER) ; then \
+ toolchain/patch-kernel.sh $(@D) package/$($(PKG)_NAME)/$(NAMEVER) \*.patch || exit 1 ; \
+ fi; \
+ fi; \
+ fi)
+ifeq ($(strip $(BR2_UPDATE_CONFIG)),y)
+ @(for file in config.guess config.sub; do \
+ for i in $$(find $(@D) -name $$file); do \
+ cp package/gnuconfig/$$file $$i; \
+ done;\
+ done)
+endif
+ touch $@
+
+# Running autoreconf
+$(BUILD_DIR)/%/.stamp_autoconfigured:
+ $(call MESSAGE,"Running autoreconf")
+ cd $(@D)/$($(PKG)_SUBDIR) && $(AUTORECONF)
+ touch $@
+
+# Configuring
+$(BUILD_DIR)/%/.stamp_configured:
+ $(call MESSAGE,"Configuring")
+ if test "$($(PKG)_AUTORECONF)" = "YES" ; then \
+ cd $(@D)/$($(PKG)_SUBDIR) && \
+ $(AUTORECONF) ; \
+ fi
+ cd $(@D)/$($(PKG)_SUBDIR) && \
+ rm -f config.cache && \
+ $(TARGET_CONFIGURE_OPTS) \
+ CFLAGS="$(TARGET_CFLAGS)" \
+ CXXFLAGS="$(TARGET_CXXFLAGS)" \
+ LDFLAGS="$(TARGET_LDFLAGS)" \
+ $($(PKG)_CONF_ENV) \
+ ./configure \
+ --target=$(GNU_TARGET_NAME) \
+ --host=$(GNU_TARGET_NAME) \
+ --build=$(GNU_HOST_NAME) \
+ --prefix=/usr \
+ --exec-prefix=/usr \
+ --sysconfdir=/etc \
+ $($(PKG)_CONF_OPT)
+ touch $@;
+
+# Build
+$(BUILD_DIR)/%/.stamp_built:
+ $(call MESSAGE,"Building")
+ $($(PKG)_MAKE_ENV) $(MAKE) $($(PKG)_MAKE_OPT) -C $(@D)/$($(PKG)_SUBDIR)
+ touch $@
+
+# Install to staging dir
+$(BUILD_DIR)/%/.stamp_staging_installed:
+ $(call MESSAGE,'Installing to host (staging directory)')
+ $($(PKG)_MAKE_ENV) $(MAKE) $($(PKG)_INSTALL_STAGING_OPT) -C $(@D)/$($(PKG)_SUBDIR)
+# toolchain/replace.sh $(STAGING_DIR)/usr/lib ".*\.la" "\(['= ]\)/usr" "\\1$(STAGING_DIR)/usr"
+ for i in $$(find $(STAGING_DIR)/usr/lib/ -name "*.la") ; do \
+ cp $$i $$i~ ; \
+ $(SED) "s:\(['= ]\)/usr:\\1$(STAGING_DIR)/usr:" $$i ; \
+ done
+ touch $@
+
+# Install to target dir
+$(BUILD_DIR)/%/.stamp_target_installed:
+ $(call MESSAGE,"Installing to target")
+ $($(PKG)_MAKE_ENV) $(MAKE) $($(PKG)_INSTALL_TARGET_OPT) -C $(@D)/$($(PKG)_SUBDIR)
+ for d in man include info share/info ; do \
+ rm -rf $(TARGET_DIR)/$$d $(TARGET_DIR)/usr/$$d ; \
+ done
+ find $(TARGET_DIR) -name '*.a' -o -name '*.la' -delete
+ touch $@
+
+$(BUILD_DIR)/%/.stamp_cleaned:
+ $(call MESSAGE,"Cleaning up")
+ -$($(PKG)_MAKE_ENV) $(MAKE) $($(PKG)_CLEAN_OPT) -C $(@D)/$($(PKG)_SUBDIR)
+
+$(BUILD_DIR)/%/.stamp_uninstalled:
+ $(call MESSAGE,"Uninstalling")
+ $($(PKG)_MAKE_ENV) $(MAKE) $($(PKG)_UNINSTALL_STAGING_OPT) -C $(@D)/$($(PKG)_SUBDIR)
+ $($(PKG)_MAKE_ENV) $(MAKE) $($(PKG)_UNINSTALL_TARGET_OPT) -C $(@D)/$($(PKG)_SUBDIR)
+
+$(BUILD_DIR)/%/.stamp_dircleaned:
+ rm -Rf $(@D)
+
+
+################################################################################
+# AUTOTARGETS -- the target generator macro; define a set of human-readable
+# make targets, stamps, and default per-package variables.
+# Argument 1 is the (lowercase) package name.
+################################################################################
+
+define AUTOTARGETS
+$(call AUTOTARGETS_INNER,$(1),$(call UPPERCASE,$(1)))
+endef
+
+# AUTOTARGETS_INNER -- does the job for AUTOTARGETS; argument 1 is the
+# lowercase package name, argument 2 the uppercase package name
+define AUTOTARGETS_INNER
+
+# define package-specific variables to default values
+$(2)_NAME = $(1)
+$(2)_VERSION ?= undefined
+$(2)_DIR = $$(BUILD_DIR)/$(1)-$$($(2)_VERSION)
+$(2)_SOURCE ?= $(1)-$$($(2)_VERSION).tar.gz
+$(2)_SITE ?= \
+ http://$$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/$(1)
+$(2)_DEPENDANCIES ?=
+$(2)_AUTORECONF ?= NO
+$(2)_CONF_ENV ?=
+$(2)_CONF_OPT ?=
+$(2)_MAKE_ENV ?=
+$(2)_MAKE_OPT ?=
+$(2)_INSTALL_STAGING ?= NO
+$(2)_INSTALL_TARGET ?= YES
+$(2)_INSTALL_STAGING_OPT ?= DESTDIR=$$(STAGING_DIR) install
+$(2)_INSTALL_TARGET_OPT ?= DESTDIR=$$(TARGET_DIR) install-exec
+$(2)_CLEAN_OPT ?= clean
+$(2)_UNINSTALL_STAGING_OPT ?= DESTDIR=$$(STAGING_DIR) uninstall
+$(2)_UNINSTALL_TARGET_OPT ?= DESTDIR=$$(TARGET_DIR) uninstall
+$(2)_SUBDIR ?=
+
+
+# define sub-target stamps
+$(2)_TARGET_INSTALL_TARGET = $$($(2)_DIR)/.stamp_target_installed
+$(2)_TARGET_INSTALL_STAGING = $$($(2)_DIR)/.stamp_staging_installed
+$(2)_TARGET_BUILD = $$($(2)_DIR)/.stamp_built
+$(2)_TARGET_CONFIGURE = $$($(2)_DIR)/.stamp_configured
+$(2)_TARGET_AUTORECONF = $$($(2)_DIR)/.stamp_autoconfigured
+$(2)_TARGET_PATCH = $$($(2)_DIR)/.stamp_patched
+$(2)_TARGET_EXTRACT = $$($(2)_DIR)/.stamp_extracted
+$(2)_TARGET_SOURCE = $$($(2)_DIR)/.stamp_downloaded
+$(2)_TARGET_UNINSTALL = $$($(2)_DIR)/.stamp_uninstalled
+$(2)_TARGET_CLEAN = $$($(2)_DIR)/.stamp_cleaned
+$(2)_TARGET_DIRCLEAN = $$($(2)_DIR)/.stamp_dircleaned
+
+$(2)_HOOK_POST_BUILD = $$($(2)_DIR)/.stamp_hook_post_build
+$(2)_HOOK_POST_INSTALL = $$($(2)_DIR)/.stamp_hook_post_install
+
+# human-friendly targets and target sequencing
+$(1): $(1)-install
+$(1)-install: $(1)-install-staging $(1)-install-target \
+ $$($(2)_HOOK_POST_INSTALL)
+
+ifeq ($$($(2)_INSTALL_TARGET),YES)
+$(1)-install-target: $(1)-build $$($(2)_TARGET_INSTALL_TARGET)
+else
+$(1)-install-target:
+endif
+
+ifeq ($$($(2)_INSTALL_STAGING),YES)
+$(1)-install-staging: $(1)-build $$($(2)_TARGET_INSTALL_STAGING)
+else
+$(1)-install-staging:
+endif
+
+$(1)-build: $(1)-configure $$($(2)_TARGET_BUILD) \
+ $$($(2)_HOOK_POST_BUILD)
+
+$(1)-configure: $(1)-autoreconf $$($(2)_TARGET_CONFIGURE)
+
+ifeq ($$($(2)_AUTORECONF),YES)
+$(1)-autoreconf: $(1)-patch $$($(2)_TARGET_AUTORECONF)
+$(2)_DEPENDANCIES += host-automake host-autoconf host-libtool
+else
+$(1)-autoreconf: $(1)-patch
+endif
+
+$(1)-patch: $(1)-extract $$($(2)_TARGET_PATCH)
+
+$(1)-extract: $(1)-depends $$($(2)_TARGET_EXTRACT)
+
+$(1)-depends: $(1)-source $$($(2)_DEPENDANCIES)
+
+$(1)-source: $$($(2)_TARGET_SOURCE)
+
+# non-build targets
+$(1)-uninstall: $(1)-configure $$($(2)_TARGET_UNINSTALL)
+
+$(1)-clean: $$($(2)_TARGET_CLEAN)
+
+$(1)-dirclean: $$($(2)_TARGET_DIRCLEAN)
+
+# define the PKG variable for all targets, containing the
+# uppercase package variable prefix
+$$($(2)_TARGET_INSTALL_TARGET): PKG=$(2)
+$$($(2)_TARGET_INSTALL_STAGING): PKG=$(2)
+$$($(2)_TARGET_BUILD): PKG=$(2)
+$$($(2)_TARGET_CONFIGURE): PKG=$(2)
+$$($(2)_TARGET_AUTORECONF): PKG=$(2)
+$$($(2)_TARGET_PATCH): PKG=$(2)
+$$($(2)_TARGET_EXTRACT): PKG=$(2)
+$$($(2)_TARGET_SOURCE): PKG=$(2)
+$$($(2)_TARGET_UNINSTALL): PKG=$(2)
+$$($(2)_TARGET_CLEAN): PKG=$(2)
+$$($(2)_TARGET_DIRCLEAN): PKG=$(2)
+$$($(2)_HOOK_POST_BUILD): PKG=$(2)
+$$($(2)_HOOK_POST_INSTALL): PKG=$(2)
+
+# define hook targets
+# default hook behaviour: do nothing
+$$($(2)_HOOK_POST_BUILD):
+$$($(2)_HOOK_POST_INSTALL):
+
+# add package to the general list if targets if requested by the buildroot
+# configuration
+ifeq ($$(BR2_PACKAGE_$(2)),y)
+TARGETS += $(1)
+endif
+endef
+
+# :mode=makefile:
+
TARGET_CFLAGS+=-msoft-float
endif
+TARGET_CXXFLAGS=$(TARGET_CFLAGS)
# else it's an external toolchain
#########################################################################
else
TARGET_CFLAGS=$(TARGET_OPTIMIZATION) $(TARGET_DEBUGGING) -I$(STAGING_DIR)/include -I$(STAGING_DIR)/usr/include -I$(TOOLCHAIN_EXTERNAL_PATH)/$(TOOLCHAIN_EXTERNAL_PREFIX)/include
+TARGET_CXXFLAGS=$(TARGET_CFLAGS)
TARGET_LDFLAGS=-L$(STAGING_DIR)/lib -L$(STAGING_DIR)/usr/lib
endif
#########################################################################
endif
TARGET_CC=$(TARGET_CROSS)gcc
TARGET_CXX=$(TARGET_CROSS)g++
+TARGET_AR=$(TARGET_CROSS)ar
TARGET_RANLIB=$(TARGET_CROSS)ranlib
TARGET_LDCONFIG=$(TARGET_CROSS)ldconfig
INSTALL=/usr/bin/install
CXX_FOR_BUILD="$(HOSTCXX)" \
LD_FOR_BUILD="$(HOSTLD)" \
CFLAGS_FOR_BUILD="$(HOST_CFLAGS)" \
+ CXXFLAGS_FOR_BUILD="$(HOST_CXXFLAGS)" \
LDFLAGS_FOR_BUILD="$(HOST_LDFLAGS)" \
PKG_CONFIG_SYSROOT="$(STAGING_DIR)" \
- PKG_CONFIG="$(STAGING_DIR)/usr/bin/pkg-config"
+ PKG_CONFIG="$(STAGING_DIR)/usr/bin/pkg-config" \
+ PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig:$(PKG_CONFIG_PATH)" \
+ PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1 \
+ PKG_CONFIG_ALLOW_SYSTEM_LIBS=1 \
+ STAGING_DIR="$(STAGING_DIR)"
HOST_CONFIGURE_OPTS=PATH=$(TARGET_PATH) \
AR_FOR_BUILD="$(HOSTAR)" \
XSERVER+=xggi
endif
+include package/Makefile.autotools.in
+
default n
select BR2_PACKAGE_PKGCONFIG
select BR2_PACKAGE_LIBPNG
- select BR2_PACKAGE_XORG
+ depends on BR2_PACKAGE_XORG||BR2_PACKAGE_XORG7
help
Cairo is a 2D graphics library with support for multiple
output devices. Currently supported output targets include
select BR2_PACKAGE_JPEG
select BR2_PACKAGE_LIBGLIB12
select BR2_PACKAGE_LIBGTK12
- select BR2_PACKAGE_XORG
select BR2_PACKAGE_ZLIB
select BR2_PACKAGE_LIBPNG
+ depends on BR2_PACKAGE_XORG||BR2_PACKAGE_XORG7
help
Dillo is a small GTK+ based web browser written in C.
$(TARGET_DIR)/usr/lib/libintl.a: $(STAGING_DIR)/$(GETTEXT_TARGET_BINARY)
cp -dpf $(STAGING_DIR)/usr/lib/libgettext*.a $(TARGET_DIR)/usr/lib/
- cp -dpf $(STAGING_DIR)/usr/lib/libintl*.a $(TARGET_DIR)/usr/lib/
+ cp -dpf $(STAGING_DIR)/usr/lib/libintl*.a $(TARGET_DIR)/usr/lib/
touch -c $@
libintl: $(TARGET_DIR)/$(LIBINTL_TARGET_BINARY)
--- /dev/null
+config BR2_UPDATE_CONFIG
+ bool "update config.sub and config.guess"
+ default n
+ help
+ This just exists to easily update the config.sub / config.guess
+ files in packages to the latest version (since many bundled ones
+ don't support the latest possible targets)
+
--- /dev/null
+config BR2_PACKAGE_LIBDRM
+ bool "libdrm"
+ default n
+ help
+
+ http://dri.freedesktop.org/libdrm/
--- /dev/null
+#############################################################
+#
+# libdrm
+#
+#############################################################
+LIBDRM_VERSION:=2.3.0
+LIBDRM_SOURCE:=libdrm-$(LIBDRM_VERSION).tar.bz2
+LIBDRM_SITE:=http://dri.freedesktop.org/libdrm/
+LIBDRM_CAT:=$(BZCAT)
+LIBDRM_DIR:=$(BUILD_DIR)/libdrm-$(LIBDRM_VERSION)
+
+$(DL_DIR)/$(LIBDRM_SOURCE):
+ $(WGET) -P $(DL_DIR) $(LIBDRM_SITE)/$(LIBDRM_SOURCE)
+
+libdrm-source: $(DL_DIR)/$(LIBDRM_SOURCE)
+
+$(LIBDRM_DIR)/.unpacked: $(DL_DIR)/$(LIBDRM_SOURCE)
+ $(LIBDRM_CAT) $(DL_DIR)/$(LIBDRM_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
+ touch $(LIBDRM_DIR)/.unpacked
+
+$(LIBDRM_DIR)/.configured: $(LIBDRM_DIR)/.unpacked
+ (cd $(LIBDRM_DIR); \
+ $(TARGET_CONFIGURE_OPTS) \
+ CFLAGS="$(TARGET_CFLAGS) " \
+ LDFLAGS="$(TARGET_LDFLAGS)" \
+ ./configure \
+ --target=$(GNU_TARGET_NAME) \
+ --host=$(GNU_TARGET_NAME) \
+ --build=$(GNU_HOST_NAME) \
+ --prefix=/usr \
+ --exec-prefix=/usr \
+ --bindir=/usr/bin \
+ --sbindir=/usr/sbin \
+ --libdir=/lib \
+ --libexecdir=/usr/lib \
+ --sysconfdir=/etc \
+ --datadir=/usr/share \
+ --localstatedir=/var \
+ --includedir=/include \
+ --mandir=/usr/man \
+ --infodir=/usr/info \
+ );
+ touch $(LIBDRM_DIR)/.configured
+
+$(LIBDRM_DIR)/.compiled: $(LIBDRM_DIR)/.configured
+ $(MAKE) CCexe="$(HOSTCC)" -C $(LIBDRM_DIR)
+ touch $(LIBDRM_DIR)/.compiled
+
+$(STAGING_DIR)/lib/libdrm.so: $(LIBDRM_DIR)/.compiled
+ $(MAKE) DESTDIR=$(STAGING_DIR) -C $(LIBDRM_DIR) install
+ $(SED) "s,^libdir=.*,libdir=\'$(STAGING_DIR)/lib\',g" $(STAGING_DIR)/lib/libdrm.la
+ #$(SED) "s,^prefix=.*,prefix=\'$(STAGING_DIR)\',g" \
+ # -e "s,^exec_prefix=.*,exec_prefix=\'$(STAGING_DIR)/usr\',g" \
+ # -e "s,^includedir=.*,includedir=\'$(STAGING_DIR)/include\',g" \
+ # -e "s,^libdir=.*,libdir=\'$(STAGING_DIR)/lib\',g" \
+ # $(STAGING_DIR)/usr/bin/libdrm-config
+ touch -c $(STAGING_DIR)/lib/libdrm.so
+
+$(TARGET_DIR)/lib/libdrm.so: $(STAGING_DIR)/lib/libdrm.so
+ cp -dpf $(STAGING_DIR)/lib/libdrm.so* $(TARGET_DIR)/lib/
+ -$(STRIP) --strip-unneeded $(TARGET_DIR)/lib/libdrm.so
+
+libdrm: uclibc pkgconfig $(TARGET_DIR)/lib/libdrm.so
+
+libdrm-clean:
+ $(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(LIBDRM_DIR) uninstall
+ -$(MAKE) -C $(LIBDRM_DIR) clean
+
+libdrm-dirclean:
+ rm -rf $(LIBDRM_DIR)
+
+#############################################################
+#
+# Toplevel Makefile options
+#
+#############################################################
+ifeq ($(strip $(BR2_PACKAGE_LIBDRM)),y)
+TARGETS+=libdrm
+endif
bool "libgtk12"
default n
select BR2_PACKAGE_LIBGLIB12
- select BR2_PACKAGE_XORG
+ depends on BR2_PACKAGE_XORG||BR2_PACKAGE_XORG7
help
The GTK+ graphical user interface library
select BR2_PACKAGE_JPEG
select BR2_PACKAGE_TIFF
select BR2_PACKAGE_LIBPNG
- select BR2_PACKAGE_XORG
+ depends on BR2_PACKAGE_XORG||BR2_PACKAGE_XORG7
help
The GTK+ version 2 graphical user interface library
config BR2_PACKAGE_METACITY
bool "metacity"
- select BR2_PACKAGE_XORG
select BR2_PACKAGE_LIBGTK2
+ depends on BR2_PACKAGE_XORG||BR2_PACKAGE_XORG7
default n
help
Metacity is a window manager for the X Window System.
config BR2_PACKAGE_RDESKTOP
bool "rdesktop"
- select BR2_PACKAGE_XORG
select BR2_PACKAGE_OPENSSL
+ depends on BR2_PACKAGE_XORG||BR2_PACKAGE_XORG7
default n
help
rdesktop is an open source client for Windows NT Terminal
default y if BR2_PACKAGE_XSERVER_tinyx
help
A tiny X server. Also known as 'Xfbdev' and 'kdrive'.
+
+comment "tinyx X Window System disabled"
+ depends on BR2_PACKAGE_XORG||BR2_PACKAGE_XORG7
+
--- /dev/null
+menuconfig BR2_PACKAGE_XORG7
+bool "X.org X Window System, X11R7, release 7.2"
+default n
+default y if BR2_PACKAGE_XSERVER_x11r7
+select BR2_PACKAGE_ZLIB
+select BR2_PACKAGE_LIBPNG
+select BR2_PACKAGE_EXPAT
+select BR2_PACKAGE_FONTCONFIG
+select BR2_PACKAGE_PKGCONFIG
+help
+ Support for X11R7 libraries, servers, drivers, and/or applications in the target
+if BR2_PACKAGE_XORG7
+ menu "X11R7 Servers"
+ source package/x11r7/xserver_xorg-server/Config.in
+ endmenu
+ menu "X11R7 Libraries"
+ source package/x11r7/libdrm/Config.in
+ source package/x11r7/libxcb/Config.in
+ source package/x11r7/mesa3d/Config.in
+ source package/x11r7/pthread-stubs/Config.in
+ source package/x11r7/xlib_libFS/Config.in
+ source package/x11r7/xlib_libICE/Config.in
+ source package/x11r7/xlib_libSM/Config.in
+ source package/x11r7/xlib_libX11/Config.in
+ source package/x11r7/xlib_libXScrnSaver/Config.in
+ source package/x11r7/xlib_libXTrap/Config.in
+ source package/x11r7/xlib_libXau/Config.in
+ source package/x11r7/xlib_libXaw/Config.in
+ source package/x11r7/xlib_libXcomposite/Config.in
+ source package/x11r7/xlib_libXcursor/Config.in
+ source package/x11r7/xlib_libXdamage/Config.in
+ source package/x11r7/xlib_libXdmcp/Config.in
+ source package/x11r7/xlib_libXevie/Config.in
+ source package/x11r7/xlib_libXext/Config.in
+ source package/x11r7/xlib_libXfixes/Config.in
+ source package/x11r7/xlib_libXfont/Config.in
+ source package/x11r7/xlib_libXfontcache/Config.in
+ source package/x11r7/xlib_libXft/Config.in
+ source package/x11r7/xlib_libXi/Config.in
+ source package/x11r7/xlib_libXinerama/Config.in
+ source package/x11r7/xlib_libXmu/Config.in
+ source package/x11r7/xlib_libXp/Config.in
+ source package/x11r7/xlib_libXpm/Config.in
+ source package/x11r7/xlib_libXprintAppUtil/Config.in
+ source package/x11r7/xlib_libXprintUtil/Config.in
+ source package/x11r7/xlib_libXrandr/Config.in
+ source package/x11r7/xlib_libXrender/Config.in
+ source package/x11r7/xlib_libXres/Config.in
+ source package/x11r7/xlib_libXt/Config.in
+ source package/x11r7/xlib_libXtst/Config.in
+ source package/x11r7/xlib_libXv/Config.in
+ source package/x11r7/xlib_libXvMC/Config.in
+ source package/x11r7/xlib_libXxf86dga/Config.in
+ source package/x11r7/xlib_libXxf86misc/Config.in
+ source package/x11r7/xlib_libXxf86vm/Config.in
+ source package/x11r7/xlib_libdmx/Config.in
+ source package/x11r7/xlib_libfontenc/Config.in
+ source package/x11r7/xlib_liblbxutil/Config.in
+ source package/x11r7/xlib_liboldX/Config.in
+ source package/x11r7/xlib_libxkbfile/Config.in
+ source package/x11r7/xlib_libxkbui/Config.in
+ source package/x11r7/xlib_xtrans/Config.in
+ endmenu
+ menu "X11R7 Applications"
+ source package/x11r7/xapp_appres/Config.in
+ source package/x11r7/xapp_bdftopcf/Config.in
+ source package/x11r7/xapp_beforelight/Config.in
+ source package/x11r7/xapp_bitmap/Config.in
+ source package/x11r7/xapp_editres/Config.in
+ source package/x11r7/xapp_fonttosfnt/Config.in
+ source package/x11r7/xapp_fslsfonts/Config.in
+ source package/x11r7/xapp_fstobdf/Config.in
+ source package/x11r7/xapp_iceauth/Config.in
+ source package/x11r7/xapp_ico/Config.in
+ source package/x11r7/xapp_lbxproxy/Config.in
+ source package/x11r7/xapp_listres/Config.in
+ source package/x11r7/xapp_luit/Config.in
+ source package/x11r7/xapp_mkfontdir/Config.in
+ source package/x11r7/xapp_mkfontscale/Config.in
+ source package/x11r7/xapp_oclock/Config.in
+ source package/x11r7/xapp_proxymngr/Config.in
+ source package/x11r7/xapp_rgb/Config.in
+ source package/x11r7/xapp_rstart/Config.in
+ source package/x11r7/xapp_scripts/Config.in
+ source package/x11r7/xapp_sessreg/Config.in
+ source package/x11r7/xapp_setxkbmap/Config.in
+ source package/x11r7/xapp_showfont/Config.in
+ source package/x11r7/xapp_smproxy/Config.in
+ source package/x11r7/xapp_twm/Config.in
+ source package/x11r7/xapp_viewres/Config.in
+ source package/x11r7/xapp_x11perf/Config.in
+ source package/x11r7/xapp_xauth/Config.in
+ source package/x11r7/xapp_xbiff/Config.in
+ source package/x11r7/xapp_xcalc/Config.in
+ source package/x11r7/xapp_xclipboard/Config.in
+ source package/x11r7/xapp_xclock/Config.in
+ source package/x11r7/xapp_xcmsdb/Config.in
+ source package/x11r7/xapp_xcursorgen/Config.in
+ source package/x11r7/xapp_xdbedizzy/Config.in
+ source package/x11r7/xapp_xditview/Config.in
+ source package/x11r7/xapp_xdm/Config.in
+ source package/x11r7/xapp_xdpyinfo/Config.in
+ source package/x11r7/xapp_xdriinfo/Config.in
+ source package/x11r7/xapp_xedit/Config.in
+ source package/x11r7/xapp_xev/Config.in
+ source package/x11r7/xapp_xeyes/Config.in
+ source package/x11r7/xapp_xf86dga/Config.in
+ source package/x11r7/xapp_xfd/Config.in
+ source package/x11r7/xapp_xfindproxy/Config.in
+ source package/x11r7/xapp_xfontsel/Config.in
+ source package/x11r7/xapp_xfs/Config.in
+ source package/x11r7/xapp_xfsinfo/Config.in
+ source package/x11r7/xapp_xfwp/Config.in
+ source package/x11r7/xapp_xgamma/Config.in
+ source package/x11r7/xapp_xgc/Config.in
+ source package/x11r7/xapp_xhost/Config.in
+ source package/x11r7/xapp_xinit/Config.in
+ source package/x11r7/xapp_xkbcomp/Config.in
+ source package/x11r7/xapp_xkbevd/Config.in
+ source package/x11r7/xapp_xkbprint/Config.in
+ source package/x11r7/xapp_xkbutils/Config.in
+ source package/x11r7/xapp_xkill/Config.in
+ source package/x11r7/xapp_xload/Config.in
+ source package/x11r7/xapp_xlogo/Config.in
+ source package/x11r7/xapp_xlsatoms/Config.in
+ source package/x11r7/xapp_xlsclients/Config.in
+ source package/x11r7/xapp_xlsfonts/Config.in
+ source package/x11r7/xapp_xmag/Config.in
+ source package/x11r7/xapp_xmessage/Config.in
+ source package/x11r7/xapp_xmh/Config.in
+ source package/x11r7/xapp_xmodmap/Config.in
+ source package/x11r7/xapp_xmore/Config.in
+ source package/x11r7/xapp_xphelloworld/Config.in
+ source package/x11r7/xapp_xplsprinters/Config.in
+ source package/x11r7/xapp_xpr/Config.in
+ source package/x11r7/xapp_xprehashprinterlist/Config.in
+ source package/x11r7/xapp_xprop/Config.in
+ source package/x11r7/xapp_xrandr/Config.in
+ source package/x11r7/xapp_xrdb/Config.in
+ source package/x11r7/xapp_xrefresh/Config.in
+ source package/x11r7/xapp_xrx/Config.in
+ source package/x11r7/xapp_xset/Config.in
+ source package/x11r7/xapp_xsetmode/Config.in
+ source package/x11r7/xapp_xsetpointer/Config.in
+ source package/x11r7/xapp_xsetroot/Config.in
+ source package/x11r7/xapp_xsm/Config.in
+ source package/x11r7/xapp_xstdcmap/Config.in
+ source package/x11r7/xapp_xtrap/Config.in
+ source package/x11r7/xapp_xvidtune/Config.in
+ source package/x11r7/xapp_xvinfo/Config.in
+ source package/x11r7/xapp_xwd/Config.in
+ source package/x11r7/xapp_xwininfo/Config.in
+ source package/x11r7/xapp_xwud/Config.in
+ endmenu
+ menu "X11R7 Drivers"
+ source package/x11r7/openchrome/Config.in
+ source package/x11r7/xdriver_xf86-input-acecad/Config.in
+ source package/x11r7/xdriver_xf86-input-aiptek/Config.in
+ source package/x11r7/xdriver_xf86-input-calcomp/Config.in
+ source package/x11r7/xdriver_xf86-input-citron/Config.in
+ source package/x11r7/xdriver_xf86-input-digitaledge/Config.in
+ source package/x11r7/xdriver_xf86-input-dmc/Config.in
+ source package/x11r7/xdriver_xf86-input-dynapro/Config.in
+ source package/x11r7/xdriver_xf86-input-elo2300/Config.in
+ source package/x11r7/xdriver_xf86-input-elographics/Config.in
+ source package/x11r7/xdriver_xf86-input-evdev/Config.in
+ source package/x11r7/xdriver_xf86-input-fpit/Config.in
+ source package/x11r7/xdriver_xf86-input-hyperpen/Config.in
+ source package/x11r7/xdriver_xf86-input-jamstudio/Config.in
+ source package/x11r7/xdriver_xf86-input-joystick/Config.in
+ source package/x11r7/xdriver_xf86-input-keyboard/Config.in
+ source package/x11r7/xdriver_xf86-input-magellan/Config.in
+ source package/x11r7/xdriver_xf86-input-magictouch/Config.in
+ source package/x11r7/xdriver_xf86-input-microtouch/Config.in
+ source package/x11r7/xdriver_xf86-input-mouse/Config.in
+ source package/x11r7/xdriver_xf86-input-mutouch/Config.in
+ source package/x11r7/xdriver_xf86-input-palmax/Config.in
+ source package/x11r7/xdriver_xf86-input-penmount/Config.in
+ source package/x11r7/xdriver_xf86-input-spaceorb/Config.in
+ source package/x11r7/xdriver_xf86-input-summa/Config.in
+ source package/x11r7/xdriver_xf86-input-tek4957/Config.in
+ source package/x11r7/xdriver_xf86-input-ur98/Config.in
+ source package/x11r7/xdriver_xf86-input-vmmouse/Config.in
+ source package/x11r7/xdriver_xf86-input-void/Config.in
+ source package/x11r7/xdriver_xf86-video-apm/Config.in
+ source package/x11r7/xdriver_xf86-video-ark/Config.in
+ source package/x11r7/xdriver_xf86-video-ast/Config.in
+ source package/x11r7/xdriver_xf86-video-ati/Config.in
+ source package/x11r7/xdriver_xf86-video-chips/Config.in
+ source package/x11r7/xdriver_xf86-video-cirrus/Config.in
+ source package/x11r7/xdriver_xf86-video-cyrix/Config.in
+ source package/x11r7/xdriver_xf86-video-dummy/Config.in
+ source package/x11r7/xdriver_xf86-video-fbdev/Config.in
+ source package/x11r7/xdriver_xf86-video-glint/Config.in
+ source package/x11r7/xdriver_xf86-video-i128/Config.in
+ source package/x11r7/xdriver_xf86-video-i740/Config.in
+ source package/x11r7/xdriver_xf86-video-i810/Config.in
+ source package/x11r7/xdriver_xf86-video-imstt/Config.in
+ source package/x11r7/xdriver_xf86-video-mga/Config.in
+ source package/x11r7/xdriver_xf86-video-neomagic/Config.in
+ source package/x11r7/xdriver_xf86-video-newport/Config.in
+ source package/x11r7/xdriver_xf86-video-nsc/Config.in
+ source package/x11r7/xdriver_xf86-video-nv/Config.in
+ source package/x11r7/xdriver_xf86-video-rendition/Config.in
+ source package/x11r7/xdriver_xf86-video-s3/Config.in
+ source package/x11r7/xdriver_xf86-video-s3virge/Config.in
+ source package/x11r7/xdriver_xf86-video-savage/Config.in
+ source package/x11r7/xdriver_xf86-video-siliconmotion/Config.in
+ source package/x11r7/xdriver_xf86-video-sis/Config.in
+ source package/x11r7/xdriver_xf86-video-sisusb/Config.in
+ source package/x11r7/xdriver_xf86-video-sunbw2/Config.in
+ source package/x11r7/xdriver_xf86-video-suncg14/Config.in
+ source package/x11r7/xdriver_xf86-video-suncg3/Config.in
+ source package/x11r7/xdriver_xf86-video-suncg6/Config.in
+ source package/x11r7/xdriver_xf86-video-sunffb/Config.in
+ source package/x11r7/xdriver_xf86-video-sunleo/Config.in
+ source package/x11r7/xdriver_xf86-video-suntcx/Config.in
+ source package/x11r7/xdriver_xf86-video-tdfx/Config.in
+ source package/x11r7/xdriver_xf86-video-tga/Config.in
+ source package/x11r7/xdriver_xf86-video-trident/Config.in
+ source package/x11r7/xdriver_xf86-video-tseng/Config.in
+ source package/x11r7/xdriver_xf86-video-v4l/Config.in
+ source package/x11r7/xdriver_xf86-video-vesa/Config.in
+ source package/x11r7/xdriver_xf86-video-vga/Config.in
+ source package/x11r7/xdriver_xf86-video-via/Config.in
+ source package/x11r7/xdriver_xf86-video-vmware/Config.in
+ source package/x11r7/xdriver_xf86-video-voodoo/Config.in
+ endmenu
+ menu "X11R7 Fonts"
+ source package/x11r7/xfont_encodings/Config.in
+ source package/x11r7/xfont_font-adobe-utopia-type1/Config.in
+ source package/x11r7/xfont_font-bitstream-type1/Config.in
+ source package/x11r7/xfont_font-ibm-type1/Config.in
+ source package/x11r7/xfont_font-xfree86-type1/Config.in
+ endmenu
+ menu "X11R7 X protocols"
+ source package/x11r7/xcb-proto/Config.in
+ source package/x11r7/xproto_applewmproto/Config.in
+ source package/x11r7/xproto_bigreqsproto/Config.in
+ source package/x11r7/xproto_compositeproto/Config.in
+ source package/x11r7/xproto_damageproto/Config.in
+ source package/x11r7/xproto_dmxproto/Config.in
+ source package/x11r7/xproto_evieext/Config.in
+ source package/x11r7/xproto_fixesproto/Config.in
+ source package/x11r7/xproto_fontcacheproto/Config.in
+ source package/x11r7/xproto_fontsproto/Config.in
+ source package/x11r7/xproto_glproto/Config.in
+ source package/x11r7/xproto_inputproto/Config.in
+ source package/x11r7/xproto_kbproto/Config.in
+ source package/x11r7/xproto_printproto/Config.in
+ source package/x11r7/xproto_randrproto/Config.in
+ source package/x11r7/xproto_recordproto/Config.in
+ source package/x11r7/xproto_renderproto/Config.in
+ source package/x11r7/xproto_resourceproto/Config.in
+ source package/x11r7/xproto_scrnsaverproto/Config.in
+ source package/x11r7/xproto_trapproto/Config.in
+ source package/x11r7/xproto_videoproto/Config.in
+ source package/x11r7/xproto_windowswmproto/Config.in
+ source package/x11r7/xproto_xcmiscproto/Config.in
+ source package/x11r7/xproto_xextproto/Config.in
+ source package/x11r7/xproto_xf86bigfontproto/Config.in
+ source package/x11r7/xproto_xf86dgaproto/Config.in
+ source package/x11r7/xproto_xf86driproto/Config.in
+ source package/x11r7/xproto_xf86miscproto/Config.in
+ source package/x11r7/xproto_xf86rushproto/Config.in
+ source package/x11r7/xproto_xf86vidmodeproto/Config.in
+ source package/x11r7/xproto_xineramaproto/Config.in
+ source package/x11r7/xproto_xproto/Config.in
+ source package/x11r7/xproto_xproxymanagementprotocol/Config.in
+ endmenu
+ menu "X11R7 Utilities"
+ source package/x11r7/xutil_makedepend/Config.in
+ source package/x11r7/xutil_util-macros/Config.in
+ endmenu
+ menu "X11R7 Other data"
+ source package/x11r7/xdata_xbitmaps/Config.in
+ endmenu
+endif
+
+comment "X11R7 X Window System disabled"
+ depends on BR2_PACKAGE_TINYX||BR2_PACKAGE_XORG
+
--- /dev/null
+config BR2_PACKAGE_LIBDRM
+ bool "libdrm"
+ default n
+ help
+ Direct Rendering Manager
+
+ http://dri.freedesktop.org/
+
--- /dev/null
+#############################################################
+#
+# libdrm
+#
+#############################################################
+LIBDRM_VERSION = 2.3.0
+LIBDRM_SOURCE = libdrm-$(LIBDRM_VERSION).tar.bz2
+LIBDRM_SITE = http://dri.freedesktop.org/libdrm/
+
+LIBDRM_INSTALL_STAGING = YES
+
+LIBDRM_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
+
+$(eval $(call AUTOTARGETS,libdrm))
+
--- /dev/null
+config BR2_PACKAGE_LIBXCB
+ bool "libxcb"
+ default n
+ select BR2_PACKAGE_PTHREAD_STUBS
+ select BR2_PACKAGE_XCB_PROTO
+ select BR2_PACKAGE_XLIB_LIBXDMCP
+ select BR2_PACKAGE_XLIB_LIBXAU
+ help
+ The X protocol C-language Binding (XCB) is a replacement for
+ Xlib featuring a small footprint, latency hiding, direct access
+ to the protocol, improved threading support, and extensibility.
+
+ http://xcb.freedesktop.org/
+
+
--- /dev/null
+--- a/configure.ac.orig 2007-06-04 12:56:16.000000000 +0200
++++ a/configure.ac 2007-06-04 12:55:58.000000000 +0200
+@@ -50,7 +50,7 @@
+
+ # Find the xcb-proto protocol descriptions
+ AC_MSG_CHECKING(XCBPROTO_XCBINCLUDEDIR)
+-XCBPROTO_XCBINCLUDEDIR=`$PKG_CONFIG --variable=xcbincludedir xcb-proto`
++XCBPROTO_XCBINCLUDEDIR=$STAGING_DIR`$PKG_CONFIG --variable=xcbincludedir xcb-proto`
+ AC_MSG_RESULT($XCBPROTO_XCBINCLUDEDIR)
+ AC_SUBST(XCBPROTO_XCBINCLUDEDIR)
+
--- /dev/null
+#############################################################
+#
+# libxcb
+#
+#############################################################
+LIBXCB_VERSION = 1.0
+LIBXCB_SOURCE = libxcb-$(LIBXCB_VERSION).tar.bz2
+LIBXCB_SITE = http://xcb.freedesktop.org/dist/
+
+LIBXCB_INSTALL_STAGING = YES
+
+LIBXCB_AUTORECONF = YES
+LIBXCB_DEPENDANCIES = pthread-stubs xcb-proto xlib_libXdmcp xlib_libXau
+LIBXCB_CONF_ENV = STAGING_DIR="$(STAGING_DIR)"
+
+$(eval $(call AUTOTARGETS,libxcb))
+
--- /dev/null
+config BR2_PACKAGE_MESA3D
+ bool "Mesa 3D Graphics Library"
+ default n
+ select BR2_PACKAGE_XPROTO_GLPROTO
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ help
+ Mesa 3D, an open-source implementation of the OpenGL specification.
+
--- /dev/null
+--- Mesa-6.5.3/src/mesa/x86/Makefile.orig 2007-06-09 06:23:46.000000000 +0200
++++ Mesa-6.5.3/src/mesa/x86/Makefile 2007-06-09 06:24:53.000000000 +0200
+@@ -21,7 +21,7 @@
+
+
+ gen_matypes: gen_matypes.c
+- $(CC) $(INCLUDE_DIRS) $(CFLAGS) gen_matypes.c -o gen_matypes
++ $(CC_FOR_BUILD) $(INCLUDE_DIRS) $(CFLAGS_FOR_BUILD) gen_matypes.c -o gen_matypes
+
+ # need some special rules here, unfortunately
+ matypes.h: ../main/mtypes.h ../tnl/t_context.h gen_matypes
--- /dev/null
+#############################################################
+#
+# mesa3d
+#
+#############################################################
+MESA3D_VERSION:=6.5.3
+#MESA3D_VERSION:=6.4.2
+MESA3D_SOURCE:=MesaLib-$(MESA3D_VERSION).tar.gz
+MESA3D_SITE:=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/mesa3d
+MESA3D_DIR:=$(BUILD_DIR)/Mesa-$(MESA3D_VERSION)
+MESA_TARGET=linux-dri-x86
+MESA_BUILD_ENV=$(TARGET_CONFIGURE_OPTS)
+MESA_CONFIG_FILE=$(MESA3D_DIR)/configs/$(MESA_TARGET)
+#MESA_DRIVERS= i810 i915 i965 mga mach64 r128 r200 r300 s3v savage sis ffb tdfx trident unichrome
+MESA_DRIVERS=
+
+$(DL_DIR)/$(MESA3D_SOURCE):
+ $(WGET) -P $(DL_DIR) $(MESA3D_SITE)/$(MESA3D_SOURCE)
+
+$(MESA3D_DIR)/.extracted: $(DL_DIR)/$(MESA3D_SOURCE)
+ $(ZCAT) $(DL_DIR)/$(MESA3D_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
+ toolchain/patch-kernel.sh $(MESA3D_DIR) package/mesa3d/ mesa3d\*.patch
+ touch $@
+
+$(MESA3D_DIR)/.configured: $(MESA3D_DIR)/.extracted
+ ( export $(TARGET_CONFIGURE_OPTS) ; \
+ echo "DRI_DIRS = $(MESA_DRIVERS)" && \
+ echo "OPT_FLAGS = $(TARGET_CFLAGS)" && \
+ echo "CC = $(TARGET_CC)" && \
+ echo "CXX = $(TARGET_CXX)" && \
+ echo "PIC_FLAGS = -fPIC" && \
+ echo "SRC_DIRS = glx/x11 mesa glu glut/glx" && \
+ echo "USING_EGL = 0" && \
+ echo "X11_INCLUDES = " && \
+ echo "EXTRA_LIB_PATH = " && \
+ echo "PROGRAM_DIRS =" \
+ ) >> $(MESA_CONFIG_FILE)
+ touch $@
+
+$(MESA3D_DIR)/.built: BR2_JLEVEL=1
+$(MESA3D_DIR)/.built: $(MESA3D_DIR)/.configured
+ gccinc=$$($(TARGET_CC) -print-search-dirs | grep '^install:' | sed 's@^install: @@')include ; \
+ rm -f $(MESA3D_DIR)/config/current
+ env $(MESA_BUILD_ENV) $(MAKE) \
+ MKDEP="makedepend -I$$gccinc" \
+ CC=$(TARGET_CC) CXX=$(TARGET_CXX) CC_FOR_BUILD=/usr/bin/gcc \
+ -C $(MESA3D_DIR) $(MESA_TARGET)
+ touch $@
+
+$(MESA3D_DIR)/.installed: $(MESA3D_DIR)/.built
+ env $(MESA_BUILD_ENV) $(MAKE) \
+ INSTALL_DIR=$(STAGING_DIR)/usr \
+ DRI_DRIVER_INSTALL_DIR=$(STAGING_DIR)/usr/lib/dri \
+ -C $(MESA3D_DIR) install
+ env $(MESA_BUILD_ENV) $(MAKE) \
+ INSTALL_DIR=$(TARGET_DIR)/usr \
+ DRI_DRIVER_INSTALL_DIR=$(TARGET_DIR)/usr/lib/dri \
+ -C $(MESA3D_DIR) install
+ rm -Rf $(TARGET_DIR)/usr/include/GL
+ touch $@
+
+mesa3d-depends: xproto_glproto xproto_xf86vidmodeproto xlib_libXxf86vm xlib_libXmu xlib_libXdamage libdrm
+mesa3d-source: $(MESA3D_DIR)/.extracted
+mesa3d-configure: $(MESA3D_DIR)/.configured
+mesa3d-build: $(MESA3D_DIR)/.built
+mesa3d: mesa3d-depends $(MESA3D_DIR)/.installed
+
+mesa3d-clean:
+ $(MAKE) prefix=$(STAGING_DIR)/usr -C $(MESA3D_DIR) uninstall
+ $(MAKE) prefix=$(TARGET_DIR)/usr -C $(MESA3D_DIR) uninstall
+ -$(MAKE) -C $(MESA3D_DIR) clean
+
+mesa3d-dirclean:
+ rm -rf $(MESA3D_DIR)
+
+#############################################################
+#
+# Toplevel Makefile options
+#
+#############################################################
+ifeq ($(strip $(BR2_PACKAGE_MESA3D)),y)
+TARGETS+=mesa3d
+endif
+# :mode=makefile:
+
--- /dev/null
+config BR2_PACKAGE_OPENCHROME
+ bool "openchrome"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_LIBDRM
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXVMC
+ select BR2_PACKAGE_XPROTO_GLPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XF86DRIPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ Openchrome, A free and Open Source video driver for the VIA/S3G
+ UniChrome and UniChrome Pro graphics chipsets.
--- /dev/null
+--- openchrome-r355/configure.ac.orig 2007-06-10 15:07:43.000000000 +0200
++++ openchrome-r355/configure.ac 2007-06-10 15:11:16.000000000 +0200
+@@ -69,12 +69,18 @@
+ AC_HEADER_STDC
+
+ if test "$DRI" != no; then
++ if test "$cross_compiling" = "no" ; then
+ AC_CHECK_FILE([${sdkdir}/dri.h],
+ [have_dri_h="yes"], [have_dri_h="no"])
+ AC_CHECK_FILE([${sdkdir}/sarea.h],
+ [have_sarea_h="yes"], [have_sarea_h="no"])
+ AC_CHECK_FILE([${sdkdir}/dristruct.h],
+ [have_dristruct_h="yes"], [have_dristruct_h="no"])
++ else
++ have_dri_h="yes"
++ have_sarea_h="yes"
++ have_dristruct_h="yes"
++ fi
+ fi
+
+ AC_MSG_CHECKING([whether to include DRI support])
+@@ -113,8 +119,12 @@
+
+ AM_CONDITIONAL(XVMC, test x$XVMC = xyes)
+
+-AC_CHECK_FILE([${sdkdir}/xf86Module.h],
++if test "$cross_compiling" = "no" ; then
++ AC_CHECK_FILE([${sdkdir}/xf86Module.h],
+ [have_xf86Module_h="yes"], [have_xf86Module_h="no"])
++else
++ have_xf86Module_h="yes"
++fi
+
+ # Check the ABI_VIDEODRV_VERSION
+ SAVE_CPPFLAGS="$CPPFLAGS"
--- /dev/null
+#############################################################
+#
+# openchrome
+#
+#############################################################
+OPENCHROME_VERSION = r355
+OPENCHROME_SOURCE = openchrome-$(OPENCHROME_VERSION).tar.bz2
+OPENCHROME_SITE = http://bazaar.mezis.net/
+
+OPENCHROME_DEPENDANCIES = xserver_xorg-server libdrm xlib_libX11 xlib_libXvMC xproto_fontsproto xproto_glproto xproto_randrproto xproto_renderproto xproto_xextproto xproto_xf86driproto xproto_xproto
+
+OPENCHROME_AUTORECONF = YES
+OPENCHROME_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,openchrome))
--- /dev/null
+config BR2_PACKAGE_PTHREAD_STUBS
+ bool "pthread-stubs"
+ default n
+ help
+ This library provides weak aliases for pthread functions not
+ provided in libc or otherwise available by default.
+
+ http://xcb.freedesktop.org/
+
--- /dev/null
+#############################################################
+#
+# pthread-stubs
+#
+#############################################################
+PTHREAD_STUBS_VERSION = 0.1
+PTHREAD_STUBS_SOURCE = libpthread-stubs-$(PTHREAD_STUBS_VERSION).tar.bz2
+PTHREAD_STUBS_SITE = http://xcb.freedesktop.org/dist/
+
+PTHREAD_STUBS_DEPENDANCIES = uclibc
+PTHREAD_STUBS_INSTALL_STAGING = YES
+
+$(eval $(call AUTOTARGETS,pthread-stubs))
+
--- /dev/null
+config BR2_PACKAGE_XAPP_APPRES
+ bool "appres"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXT
+ help
+ appres 1.0.1
+ list X application resource database
--- /dev/null
+################################################################################
+#
+# xapp_appres -- list X application resource database
+#
+################################################################################
+
+XAPP_APPRES_VERSION = 1.0.1
+XAPP_APPRES_SOURCE = appres-$(XAPP_APPRES_VERSION).tar.bz2
+XAPP_APPRES_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_APPRES_AUTORECONF = YES
+XAPP_APPRES_DEPENDANCIES = xlib_libX11 xlib_libXt
+
+$(eval $(call AUTOTARGETS,xapp_appres))
--- /dev/null
+config BR2_PACKAGE_XAPP_BDFTOPCF
+ bool "bdftopcf"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXFONT
+ help
+ bdftopcf 1.0.0
+ X.Org bdftopcf application
--- /dev/null
+################################################################################
+#
+# xapp_bdftopcf -- X.Org bdftopcf application
+#
+################################################################################
+
+XAPP_BDFTOPCF_VERSION = 1.0.0
+XAPP_BDFTOPCF_SOURCE = bdftopcf-$(XAPP_BDFTOPCF_VERSION).tar.bz2
+XAPP_BDFTOPCF_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_BDFTOPCF_AUTORECONF = YES
+XAPP_BDFTOPCF_DEPENDANCIES = xlib_libXfont
+
+$(eval $(call AUTOTARGETS,xapp_bdftopcf))
--- /dev/null
+config BR2_PACKAGE_XAPP_BEFORELIGHT
+ bool "beforelight"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXSCRNSAVER
+ select BR2_PACKAGE_XLIB_LIBXAW
+ select BR2_PACKAGE_XLIB_LIBXT
+ help
+ beforelight 1.0.2
+ screen saver
--- /dev/null
+################################################################################
+#
+# xapp_beforelight -- screen saver
+#
+################################################################################
+
+XAPP_BEFORELIGHT_VERSION = 1.0.2
+XAPP_BEFORELIGHT_SOURCE = beforelight-$(XAPP_BEFORELIGHT_VERSION).tar.bz2
+XAPP_BEFORELIGHT_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_BEFORELIGHT_AUTORECONF = YES
+XAPP_BEFORELIGHT_DEPENDANCIES = xlib_libX11 xlib_libXScrnSaver xlib_libXaw xlib_libXt
+
+$(eval $(call AUTOTARGETS,xapp_beforelight))
--- /dev/null
+config BR2_PACKAGE_XAPP_BITMAP
+ bool "bitmap"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXAW
+ select BR2_PACKAGE_XLIB_LIBXMU
+ select BR2_PACKAGE_XDATA_XBITMAPS
+ help
+ bitmap 1.0.2
+ X.Org bitmap application
--- /dev/null
+################################################################################
+#
+# xapp_bitmap -- X.Org bitmap application
+#
+################################################################################
+
+XAPP_BITMAP_VERSION = 1.0.2
+XAPP_BITMAP_SOURCE = bitmap-$(XAPP_BITMAP_VERSION).tar.bz2
+XAPP_BITMAP_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_BITMAP_AUTORECONF = YES
+XAPP_BITMAP_DEPENDANCIES = xlib_libX11 xlib_libXaw xlib_libXmu xdata_xbitmaps
+
+$(eval $(call AUTOTARGETS,xapp_bitmap))
--- /dev/null
+config BR2_PACKAGE_XAPP_EDITRES
+ bool "editres"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXAW
+ select BR2_PACKAGE_XLIB_LIBXMU
+ select BR2_PACKAGE_XLIB_LIBXT
+ help
+ editres 1.0.2
+ a dynamic resource editor for X Toolkit applications
--- /dev/null
+################################################################################
+#
+# xapp_editres -- a dynamic resource editor for X Toolkit applications
+#
+################################################################################
+
+XAPP_EDITRES_VERSION = 1.0.2
+XAPP_EDITRES_SOURCE = editres-$(XAPP_EDITRES_VERSION).tar.bz2
+XAPP_EDITRES_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_EDITRES_AUTORECONF = YES
+XAPP_EDITRES_DEPENDANCIES = xlib_libX11 xlib_libXaw xlib_libXmu xlib_libXt
+
+$(eval $(call AUTOTARGETS,xapp_editres))
--- /dev/null
+config BR2_PACKAGE_XAPP_FONTTOSFNT
+ bool "fonttosfnt"
+ default n
+ select BR2_PACKAGE_FREETYPE
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBFONTENC
+ help
+ fonttosfnt 1.0.3
+ X.Org fonttosfnt application
--- /dev/null
+################################################################################
+#
+# xapp_fonttosfnt -- X.Org fonttosfnt application
+#
+################################################################################
+
+XAPP_FONTTOSFNT_VERSION = 1.0.3
+XAPP_FONTTOSFNT_SOURCE = fonttosfnt-$(XAPP_FONTTOSFNT_VERSION).tar.bz2
+XAPP_FONTTOSFNT_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_FONTTOSFNT_AUTORECONF = YES
+XAPP_FONTTOSFNT_DEPENDANCIES = freetype xlib_libX11 xlib_libfontenc
+
+$(eval $(call AUTOTARGETS,xapp_fonttosfnt))
--- /dev/null
+config BR2_PACKAGE_XAPP_FSLSFONTS
+ bool "fslsfonts"
+ default n
+ select BR2_PACKAGE_XLIB_LIBFS
+ select BR2_PACKAGE_XLIB_LIBX11
+ help
+ fslsfonts 1.0.1
+ list fonts served by X font server
--- /dev/null
+################################################################################
+#
+# xapp_fslsfonts -- list fonts served by X font server
+#
+################################################################################
+
+XAPP_FSLSFONTS_VERSION = 1.0.1
+XAPP_FSLSFONTS_SOURCE = fslsfonts-$(XAPP_FSLSFONTS_VERSION).tar.bz2
+XAPP_FSLSFONTS_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_FSLSFONTS_AUTORECONF = YES
+XAPP_FSLSFONTS_DEPENDANCIES = xlib_libFS xlib_libX11
+
+$(eval $(call AUTOTARGETS,xapp_fslsfonts))
--- /dev/null
+config BR2_PACKAGE_XAPP_FSTOBDF
+ bool "fstobdf"
+ default n
+ select BR2_PACKAGE_XLIB_LIBFS
+ select BR2_PACKAGE_XLIB_LIBX11
+ help
+ fstobdf 1.0.2
+ generate BDF font from X font server
--- /dev/null
+################################################################################
+#
+# xapp_fstobdf -- generate BDF font from X font server
+#
+################################################################################
+
+XAPP_FSTOBDF_VERSION = 1.0.2
+XAPP_FSTOBDF_SOURCE = fstobdf-$(XAPP_FSTOBDF_VERSION).tar.bz2
+XAPP_FSTOBDF_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_FSTOBDF_AUTORECONF = YES
+XAPP_FSTOBDF_DEPENDANCIES = xlib_libFS xlib_libX11
+
+$(eval $(call AUTOTARGETS,xapp_fstobdf))
--- /dev/null
+config BR2_PACKAGE_XAPP_ICEAUTH
+ bool "iceauth"
+ default n
+ select BR2_PACKAGE_XLIB_LIBICE
+ select BR2_PACKAGE_XLIB_LIBX11
+ help
+ iceauth 1.0.1
+ ICE authority file utility
--- /dev/null
+################################################################################
+#
+# xapp_iceauth -- ICE authority file utility
+#
+################################################################################
+
+XAPP_ICEAUTH_VERSION = 1.0.1
+XAPP_ICEAUTH_SOURCE = iceauth-$(XAPP_ICEAUTH_VERSION).tar.bz2
+XAPP_ICEAUTH_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_ICEAUTH_AUTORECONF = YES
+XAPP_ICEAUTH_DEPENDANCIES = xlib_libICE xlib_libX11
+
+$(eval $(call AUTOTARGETS,xapp_iceauth))
--- /dev/null
+config BR2_PACKAGE_XAPP_ICO
+ bool "ico"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ help
+ ico 1.0.1
+ animate an icosahedron or other polyhedron
--- /dev/null
+################################################################################
+#
+# xapp_ico -- animate an icosahedron or other polyhedron
+#
+################################################################################
+
+XAPP_ICO_VERSION = 1.0.1
+XAPP_ICO_SOURCE = ico-$(XAPP_ICO_VERSION).tar.bz2
+XAPP_ICO_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_ICO_AUTORECONF = YES
+XAPP_ICO_DEPENDANCIES = xlib_libX11
+
+$(eval $(call AUTOTARGETS,xapp_ico))
--- /dev/null
+config BR2_PACKAGE_XAPP_LBXPROXY
+ bool "lbxproxy"
+ default n
+ select BR2_PACKAGE_XLIB_LIBICE
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XLIB_LIBLBXUTIL
+ select BR2_PACKAGE_XLIB_XTRANS
+ select BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL
+ help
+ lbxproxy 1.0.1
+ Low BandWidth X proxy
--- /dev/null
+################################################################################
+#
+# xapp_lbxproxy -- Low BandWidth X proxy
+#
+################################################################################
+
+XAPP_LBXPROXY_VERSION = 1.0.1
+XAPP_LBXPROXY_SOURCE = lbxproxy-$(XAPP_LBXPROXY_VERSION).tar.bz2
+XAPP_LBXPROXY_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_LBXPROXY_AUTORECONF = YES
+XAPP_LBXPROXY_DEPENDANCIES = xlib_libICE xlib_libX11 xlib_libXext xlib_liblbxutil xlib_xtrans xproto_xproxymanagementprotocol
+
+$(eval $(call AUTOTARGETS,xapp_lbxproxy))
--- /dev/null
+config BR2_PACKAGE_XAPP_LISTRES
+ bool "listres"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXAW
+ select BR2_PACKAGE_XLIB_LIBXMU
+ select BR2_PACKAGE_XLIB_LIBXT
+ help
+ listres 1.0.1
+ list resources in widgets
--- /dev/null
+################################################################################
+#
+# xapp_listres -- list resources in widgets
+#
+################################################################################
+
+XAPP_LISTRES_VERSION = 1.0.1
+XAPP_LISTRES_SOURCE = listres-$(XAPP_LISTRES_VERSION).tar.bz2
+XAPP_LISTRES_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_LISTRES_AUTORECONF = YES
+XAPP_LISTRES_DEPENDANCIES = xlib_libX11 xlib_libXaw xlib_libXmu xlib_libXt
+
+$(eval $(call AUTOTARGETS,xapp_listres))
--- /dev/null
+config BR2_PACKAGE_XAPP_LUIT
+ bool "luit"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBFONTENC
+ help
+ luit 1.0.2
+ Locale and ISO 2022 support for Unicode terminals
--- /dev/null
+################################################################################
+#
+# xapp_luit -- Locale and ISO 2022 support for Unicode terminals
+#
+################################################################################
+
+XAPP_LUIT_VERSION = 1.0.2
+XAPP_LUIT_SOURCE = luit-$(XAPP_LUIT_VERSION).tar.bz2
+XAPP_LUIT_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_LUIT_AUTORECONF = YES
+XAPP_LUIT_DEPENDANCIES = xlib_libX11 xlib_libfontenc
+
+$(eval $(call AUTOTARGETS,xapp_luit))
--- /dev/null
+config BR2_PACKAGE_XAPP_MKFONTDIR
+ bool "mkfontdir"
+ default n
+ select BR2_PACKAGE_XAPP_MKFONTSCALE
+ help
+ mkfontdir 1.0.2
+ create an index of X font files in a directory
--- /dev/null
+################################################################################
+#
+# xapp_mkfontdir -- create an index of X font files in a directory
+#
+################################################################################
+
+XAPP_MKFONTDIR_VERSION = 1.0.2
+XAPP_MKFONTDIR_SOURCE = mkfontdir-$(XAPP_MKFONTDIR_VERSION).tar.bz2
+XAPP_MKFONTDIR_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_MKFONTDIR_AUTORECONF = YES
+XAPP_MKFONTDIR_DEPENDANCIES = xapp_mkfontscale
+
+$(eval $(call AUTOTARGETS,xapp_mkfontdir))
--- /dev/null
+config BR2_PACKAGE_XAPP_MKFONTSCALE
+ bool "mkfontscale"
+ default n
+ select BR2_PACKAGE_FREETYPE
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBFONTENC
+ help
+ mkfontscale 1.0.3
+ create an index of scalable font files for X
--- /dev/null
+################################################################################
+#
+# xapp_mkfontscale -- create an index of scalable font files for X
+#
+################################################################################
+
+XAPP_MKFONTSCALE_VERSION = 1.0.3
+XAPP_MKFONTSCALE_SOURCE = mkfontscale-$(XAPP_MKFONTSCALE_VERSION).tar.bz2
+XAPP_MKFONTSCALE_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_MKFONTSCALE_AUTORECONF = YES
+XAPP_MKFONTSCALE_DEPENDANCIES = freetype xlib_libX11 xlib_libfontenc
+
+$(eval $(call AUTOTARGETS,xapp_mkfontscale))
--- /dev/null
+config BR2_PACKAGE_XAPP_OCLOCK
+ bool "oclock"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XLIB_LIBXMU
+ help
+ oclock 1.0.1
+ round X clock
--- /dev/null
+################################################################################
+#
+# xapp_oclock -- round X clock
+#
+################################################################################
+
+XAPP_OCLOCK_VERSION = 1.0.1
+XAPP_OCLOCK_SOURCE = oclock-$(XAPP_OCLOCK_VERSION).tar.bz2
+XAPP_OCLOCK_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_OCLOCK_AUTORECONF = YES
+XAPP_OCLOCK_DEPENDANCIES = xlib_libX11 xlib_libXext xlib_libXmu
+
+$(eval $(call AUTOTARGETS,xapp_oclock))
--- /dev/null
+config BR2_PACKAGE_XAPP_PROXYMNGR
+ bool "proxymngr"
+ default n
+ select BR2_PACKAGE_XLIB_LIBICE
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXT
+ select BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL
+ help
+ proxymngr 1.0.1
+ proxy manager service
--- /dev/null
+################################################################################
+#
+# xapp_proxymngr -- proxy manager service
+#
+################################################################################
+
+XAPP_PROXYMNGR_VERSION = 1.0.1
+XAPP_PROXYMNGR_SOURCE = proxymngr-$(XAPP_PROXYMNGR_VERSION).tar.bz2
+XAPP_PROXYMNGR_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_PROXYMNGR_AUTORECONF = YES
+XAPP_PROXYMNGR_DEPENDANCIES = xlib_libICE xlib_libX11 xlib_libXt xproto_xproxymanagementprotocol
+
+$(eval $(call AUTOTARGETS,xapp_proxymngr))
--- /dev/null
+config BR2_PACKAGE_XAPP_RGB
+ bool "rgb"
+ default n
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ rgb 1.0.1
+ uncompile an rgb color-name database
--- /dev/null
+################################################################################
+#
+# xapp_rgb -- uncompile an rgb color-name database
+#
+################################################################################
+
+XAPP_RGB_VERSION = 1.0.1
+XAPP_RGB_SOURCE = rgb-$(XAPP_RGB_VERSION).tar.bz2
+XAPP_RGB_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_RGB_AUTORECONF = YES
+XAPP_RGB_DEPENDANCIES = xproto_xproto
+
+$(eval $(call AUTOTARGETS,xapp_rgb))
--- /dev/null
+config BR2_PACKAGE_XAPP_RSTART
+ bool "rstart"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ help
+ rstart 1.0.2
+ X.Org rstart application
--- /dev/null
+################################################################################
+#
+# xapp_rstart -- X.Org rstart application
+#
+################################################################################
+
+XAPP_RSTART_VERSION = 1.0.2
+XAPP_RSTART_SOURCE = rstart-$(XAPP_RSTART_VERSION).tar.bz2
+XAPP_RSTART_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_RSTART_AUTORECONF = YES
+XAPP_RSTART_DEPENDANCIES = xlib_libX11
+
+$(eval $(call AUTOTARGETS,xapp_rstart))
--- /dev/null
+config BR2_PACKAGE_XAPP_SCRIPTS
+ bool "scripts"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ help
+ scripts 1.0.1
+ start an X program on a remote machine
--- /dev/null
+################################################################################
+#
+# xapp_scripts -- start an X program on a remote machine
+#
+################################################################################
+
+XAPP_SCRIPTS_VERSION = 1.0.1
+XAPP_SCRIPTS_SOURCE = scripts-$(XAPP_SCRIPTS_VERSION).tar.bz2
+XAPP_SCRIPTS_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_SCRIPTS_AUTORECONF = YES
+XAPP_SCRIPTS_DEPENDANCIES = xlib_libX11
+
+$(eval $(call AUTOTARGETS,xapp_scripts))
--- /dev/null
+config BR2_PACKAGE_XAPP_SESSREG
+ bool "sessreg"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ sessreg 1.0.2
+ manage utmp/wtmp entries for non-init clients
--- /dev/null
+################################################################################
+#
+# xapp_sessreg -- manage utmp/wtmp entries for non-init clients
+#
+################################################################################
+
+XAPP_SESSREG_VERSION = 1.0.2
+XAPP_SESSREG_SOURCE = sessreg-$(XAPP_SESSREG_VERSION).tar.bz2
+XAPP_SESSREG_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_SESSREG_AUTORECONF = YES
+XAPP_SESSREG_DEPENDANCIES = xlib_libX11 xproto_xproto
+
+$(eval $(call AUTOTARGETS,xapp_sessreg))
--- /dev/null
+config BR2_PACKAGE_XAPP_SETXKBMAP
+ bool "setxkbmap"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXKBFILE
+ help
+ setxkbmap 1.0.3
+ Controls the keyboard layout of a running X server.
--- /dev/null
+################################################################################
+#
+# xapp_setxkbmap -- Controls the keyboard layout of a running X server.
+#
+################################################################################
+
+XAPP_SETXKBMAP_VERSION = 1.0.3
+XAPP_SETXKBMAP_SOURCE = setxkbmap-$(XAPP_SETXKBMAP_VERSION).tar.bz2
+XAPP_SETXKBMAP_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_SETXKBMAP_AUTORECONF = YES
+XAPP_SETXKBMAP_DEPENDANCIES = xlib_libX11 xlib_libxkbfile
+
+$(eval $(call AUTOTARGETS,xapp_setxkbmap))
--- /dev/null
+config BR2_PACKAGE_XAPP_SHOWFONT
+ bool "showfont"
+ default n
+ select BR2_PACKAGE_XLIB_LIBFS
+ help
+ showfont 1.0.1
+ font dumper for X font server
--- /dev/null
+################################################################################
+#
+# xapp_showfont -- font dumper for X font server
+#
+################################################################################
+
+XAPP_SHOWFONT_VERSION = 1.0.1
+XAPP_SHOWFONT_SOURCE = showfont-$(XAPP_SHOWFONT_VERSION).tar.bz2
+XAPP_SHOWFONT_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_SHOWFONT_AUTORECONF = YES
+XAPP_SHOWFONT_DEPENDANCIES = xlib_libFS
+
+$(eval $(call AUTOTARGETS,xapp_showfont))
--- /dev/null
+config BR2_PACKAGE_XAPP_SMPROXY
+ bool "smproxy"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXMU
+ select BR2_PACKAGE_XLIB_LIBXT
+ help
+ smproxy 1.0.2
+ Session Manager Proxy
--- /dev/null
+################################################################################
+#
+# xapp_smproxy -- Session Manager Proxy
+#
+################################################################################
+
+XAPP_SMPROXY_VERSION = 1.0.2
+XAPP_SMPROXY_SOURCE = smproxy-$(XAPP_SMPROXY_VERSION).tar.bz2
+XAPP_SMPROXY_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_SMPROXY_AUTORECONF = YES
+XAPP_SMPROXY_DEPENDANCIES = xlib_libXmu xlib_libXt
+
+$(eval $(call AUTOTARGETS,xapp_smproxy))
--- /dev/null
+config BR2_PACKAGE_XAPP_TWM
+ bool "twm"
+ default n
+ help
+ twm 1.0.3
+ No description available
--- /dev/null
+################################################################################
+#
+# xapp_twm -- No description available
+#
+################################################################################
+
+XAPP_TWM_VERSION = 1.0.3
+XAPP_TWM_SOURCE = twm-$(XAPP_TWM_VERSION).tar.bz2
+XAPP_TWM_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_TWM_AUTORECONF = YES
+
+$(eval $(call AUTOTARGETS,xapp_twm))
--- /dev/null
+config BR2_PACKAGE_XAPP_VIEWRES
+ bool "viewres"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXAW
+ help
+ viewres 1.0.1
+ graphical class browser for Xt
--- /dev/null
+################################################################################
+#
+# xapp_viewres -- graphical class browser for Xt
+#
+################################################################################
+
+XAPP_VIEWRES_VERSION = 1.0.1
+XAPP_VIEWRES_SOURCE = viewres-$(XAPP_VIEWRES_VERSION).tar.bz2
+XAPP_VIEWRES_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_VIEWRES_AUTORECONF = YES
+XAPP_VIEWRES_DEPENDANCIES = xlib_libXaw
+
+$(eval $(call AUTOTARGETS,xapp_viewres))
--- /dev/null
+config BR2_PACKAGE_XAPP_X11PERF
+ bool "x11perf"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXMU
+ select BR2_PACKAGE_XLIB_LIBXFT
+ help
+ x11perf 1.4.1
+ summarize x11perf results
--- /dev/null
+################################################################################
+#
+# xapp_x11perf -- summarize x11perf results
+#
+################################################################################
+
+XAPP_X11PERF_VERSION = 1.4.1
+XAPP_X11PERF_SOURCE = x11perf-$(XAPP_X11PERF_VERSION).tar.bz2
+XAPP_X11PERF_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_X11PERF_AUTORECONF = YES
+XAPP_X11PERF_DEPENDANCIES = xlib_libX11 xlib_libXmu xlib_libXft
+
+$(eval $(call AUTOTARGETS,xapp_x11perf))
--- /dev/null
+config BR2_PACKAGE_XAPP_XAUTH
+ bool "xauth"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXAU
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XLIB_LIBXMU
+ help
+ xauth 1.0.2
+ X authority file utility
--- /dev/null
+--- xauth-1.0.2/configure.ac.orig 2007-06-06 22:33:44.000000000 +0200
++++ xauth-1.0.2/configure.ac 2007-06-06 22:33:57.000000000 +0200
+@@ -40,7 +40,7 @@
+ AC_CHECK_HEADERS([net/errno.h])
+
+ # Checks for pkg-config packages
+-PKG_CHECK_MODULES(XAUTH, x11 xau xext xmuu)
++PKG_CHECK_MODULES(XAUTH, x11 xau xext xmuu xcb)
+ AC_SUBST(XAUTH_CFLAGS)
+ AC_SUBST(XAUTH_LIBS)
+
--- /dev/null
+################################################################################
+#
+# xapp_xauth -- X authority file utility
+#
+################################################################################
+
+XAPP_XAUTH_VERSION = 1.0.2
+XAPP_XAUTH_SOURCE = xauth-$(XAPP_XAUTH_VERSION).tar.bz2
+XAPP_XAUTH_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XAUTH_AUTORECONF = YES
+XAPP_XAUTH_DEPENDANCIES = xlib_libX11 xlib_libXau xlib_libXext xlib_libXmu
+
+$(eval $(call AUTOTARGETS,xapp_xauth))
--- /dev/null
+config BR2_PACKAGE_XAPP_XBIFF
+ bool "xbiff"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXAW
+ select BR2_PACKAGE_XDATA_XBITMAPS
+ help
+ xbiff 1.0.1
+ mailbox flag for X
--- /dev/null
+################################################################################
+#
+# xapp_xbiff -- mailbox flag for X
+#
+################################################################################
+
+XAPP_XBIFF_VERSION = 1.0.1
+XAPP_XBIFF_SOURCE = xbiff-$(XAPP_XBIFF_VERSION).tar.bz2
+XAPP_XBIFF_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XBIFF_AUTORECONF = YES
+XAPP_XBIFF_DEPENDANCIES = xlib_libXaw xdata_xbitmaps
+
+$(eval $(call AUTOTARGETS,xapp_xbiff))
--- /dev/null
+config BR2_PACKAGE_XAPP_XCALC
+ bool "xcalc"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXAW
+ help
+ xcalc 1.0.1
+ scientific calculator for X
--- /dev/null
+################################################################################
+#
+# xapp_xcalc -- scientific calculator for X
+#
+################################################################################
+
+XAPP_XCALC_VERSION = 1.0.1
+XAPP_XCALC_SOURCE = xcalc-$(XAPP_XCALC_VERSION).tar.bz2
+XAPP_XCALC_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XCALC_AUTORECONF = YES
+XAPP_XCALC_DEPENDANCIES = xlib_libXaw
+
+$(eval $(call AUTOTARGETS,xapp_xcalc))
--- /dev/null
+config BR2_PACKAGE_XAPP_XCLIPBOARD
+ bool "xclipboard"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXAW
+ help
+ xclipboard 1.0.1
+ interchange between cut buffer and selection
--- /dev/null
+################################################################################
+#
+# xapp_xclipboard -- interchange between cut buffer and selection
+#
+################################################################################
+
+XAPP_XCLIPBOARD_VERSION = 1.0.1
+XAPP_XCLIPBOARD_SOURCE = xclipboard-$(XAPP_XCLIPBOARD_VERSION).tar.bz2
+XAPP_XCLIPBOARD_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XCLIPBOARD_AUTORECONF = YES
+XAPP_XCLIPBOARD_DEPENDANCIES = xlib_libXaw
+
+$(eval $(call AUTOTARGETS,xapp_xclipboard))
--- /dev/null
+config BR2_PACKAGE_XAPP_XCLOCK
+ bool "xclock"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXAW
+ select BR2_PACKAGE_XLIB_LIBXFT
+ select BR2_PACKAGE_XLIB_LIBXRENDER
+ select BR2_PACKAGE_XLIB_LIBXKBFILE
+ help
+ xclock 1.0.2
+ analog / digital clock for X
--- /dev/null
+################################################################################
+#
+# xapp_xclock -- analog / digital clock for X
+#
+################################################################################
+
+XAPP_XCLOCK_VERSION = 1.0.2
+XAPP_XCLOCK_SOURCE = xclock-$(XAPP_XCLOCK_VERSION).tar.bz2
+XAPP_XCLOCK_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XCLOCK_AUTORECONF = YES
+XAPP_XCLOCK_DEPENDANCIES = xlib_libX11 xlib_libXaw xlib_libXft xlib_libXrender xlib_libxkbfile
+
+$(eval $(call AUTOTARGETS,xapp_xclock))
--- /dev/null
+config BR2_PACKAGE_XAPP_XCMSDB
+ bool "xcmsdb"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ help
+ xcmsdb 1.0.1
+ Device Color Characterization utility for X Color Management System
--- /dev/null
+################################################################################
+#
+# xapp_xcmsdb -- Device Color Characterization utility for X Color Management System
+#
+################################################################################
+
+XAPP_XCMSDB_VERSION = 1.0.1
+XAPP_XCMSDB_SOURCE = xcmsdb-$(XAPP_XCMSDB_VERSION).tar.bz2
+XAPP_XCMSDB_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XCMSDB_AUTORECONF = YES
+XAPP_XCMSDB_DEPENDANCIES = xlib_libX11
+
+$(eval $(call AUTOTARGETS,xapp_xcmsdb))
--- /dev/null
+config BR2_PACKAGE_XAPP_XCURSORGEN
+ bool "xcursorgen"
+ default n
+ select BR2_PACKAGE_LIBPNG
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXCURSOR
+ help
+ xcursorgen 1.0.1
+ create an X cursor file from a collection of PNG images
--- /dev/null
+################################################################################
+#
+# xapp_xcursorgen -- create an X cursor file from a collection of PNG images
+#
+################################################################################
+
+XAPP_XCURSORGEN_VERSION = 1.0.1
+XAPP_XCURSORGEN_SOURCE = xcursorgen-$(XAPP_XCURSORGEN_VERSION).tar.bz2
+XAPP_XCURSORGEN_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XCURSORGEN_AUTORECONF = YES
+XAPP_XCURSORGEN_DEPENDANCIES = libpng xlib_libX11 xlib_libXcursor
+
+$(eval $(call AUTOTARGETS,xapp_xcursorgen))
--- /dev/null
+config BR2_PACKAGE_XAPP_XDBEDIZZY
+ bool "xdbedizzy"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XLIB_LIBXP
+ select BR2_PACKAGE_XLIB_LIBXPRINTUTIL
+ help
+ xdbedizzy 1.0.2
+ X.Org xdbedizzy application
--- /dev/null
+################################################################################
+#
+# xapp_xdbedizzy -- X.Org xdbedizzy application
+#
+################################################################################
+
+XAPP_XDBEDIZZY_VERSION = 1.0.2
+XAPP_XDBEDIZZY_SOURCE = xdbedizzy-$(XAPP_XDBEDIZZY_VERSION).tar.bz2
+XAPP_XDBEDIZZY_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XDBEDIZZY_AUTORECONF = YES
+XAPP_XDBEDIZZY_DEPENDANCIES = xlib_libXext xlib_libXp xlib_libXprintUtil
+
+$(eval $(call AUTOTARGETS,xapp_xdbedizzy))
--- /dev/null
+config BR2_PACKAGE_XAPP_XDITVIEW
+ bool "xditview"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXAW
+ help
+ xditview 1.0.1
+ display ditroff output
--- /dev/null
+################################################################################
+#
+# xapp_xditview -- display ditroff output
+#
+################################################################################
+
+XAPP_XDITVIEW_VERSION = 1.0.1
+XAPP_XDITVIEW_SOURCE = xditview-$(XAPP_XDITVIEW_VERSION).tar.bz2
+XAPP_XDITVIEW_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XDITVIEW_AUTORECONF = YES
+XAPP_XDITVIEW_DEPENDANCIES = xlib_libXaw
+
+$(eval $(call AUTOTARGETS,xapp_xditview))
--- /dev/null
+config BR2_PACKAGE_XAPP_XDM
+ bool "xdm"
+ default n
+ select BR2_PACKAGE_XAPP_XINIT
+ select BR2_PACKAGE_XAPP_SESSREG
+ select BR2_PACKAGE_XAPP_XRDB
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXAW
+ select BR2_PACKAGE_XLIB_LIBXDMCP
+ select BR2_PACKAGE_XLIB_LIBXINERAMA
+ select BR2_PACKAGE_XLIB_LIBXT
+ select BR2_PACKAGE_XPROTO_XINERAMAPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xdm 1.1.3
+ X.Org xdm application
--- /dev/null
+--- xdm-1.1.3/configure.ac.orig 2007-06-10 15:34:10.000000000 +0200
++++ xdm-1.1.3/configure.ac 2007-06-10 15:38:33.000000000 +0200
+@@ -152,8 +152,12 @@
+ RANDOM_DEVICE="$withval", RANDOM_DEVICE="try")
+
+ if test x$RANDOM_DEVICE = xyes -o x$RANDOM_DEVICE = xtry ; then
++ if test "$cross_compiling" = "no" ; then
+ AC_CHECK_FILE([/dev/urandom], [RANDOM_DEVICE=/dev/urandom],
+ AC_CHECK_FILE([/dev/random], [RANDOM_DEVICE=/dev/random]))
++ else
++ RANDOM_DEVICE=/dev/urandom
++ fi
+ if test x$RANDOM_DEVICE = xyes ; then
+ AC_MSG_ERROR(["random device support requested, but no random device was found."])
+ else
--- /dev/null
+################################################################################
+#
+# xapp_xdm -- X.Org xdm application
+#
+################################################################################
+
+XAPP_XDM_VERSION = 1.1.3
+XAPP_XDM_SOURCE = xdm-$(XAPP_XDM_VERSION).tar.bz2
+XAPP_XDM_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XDM_AUTORECONF = YES
+XAPP_XDM_DEPENDANCIES = xapp_xinit xapp_sessreg xapp_xrdb xlib_libX11 xlib_libXaw xlib_libXdmcp xlib_libXinerama xlib_libXt xproto_xineramaproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xapp_xdm))
--- /dev/null
+config BR2_PACKAGE_XAPP_XDPYINFO
+ bool "xdpyinfo"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XLIB_LIBXI
+ select BR2_PACKAGE_XLIB_LIBXP
+ select BR2_PACKAGE_XLIB_LIBXRENDER
+ select BR2_PACKAGE_XLIB_LIBXTST
+ select BR2_PACKAGE_XLIB_LIBXXF86DGA
+ select BR2_PACKAGE_XLIB_LIBXXF86MISC
+ select BR2_PACKAGE_XLIB_LIBXXF86VM
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_KBPROTO
+ select BR2_PACKAGE_XPROTO_PRINTPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_XF86DGAPROTO
+ select BR2_PACKAGE_XPROTO_XF86MISCPROTO
+ select BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO
+ help
+ xdpyinfo 1.0.1
+ display information utility for X
--- /dev/null
+################################################################################
+#
+# xapp_xdpyinfo -- display information utility for X
+#
+################################################################################
+
+XAPP_XDPYINFO_VERSION = 1.0.1
+XAPP_XDPYINFO_SOURCE = xdpyinfo-$(XAPP_XDPYINFO_VERSION).tar.bz2
+XAPP_XDPYINFO_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XDPYINFO_AUTORECONF = YES
+XAPP_XDPYINFO_DEPENDANCIES = xlib_libX11 xlib_libXext xlib_libXi xlib_libXp xlib_libXrender xlib_libXtst xlib_libXxf86dga xlib_libXxf86misc xlib_libXxf86vm xproto_inputproto xproto_kbproto xproto_printproto xproto_renderproto xproto_xf86dgaproto xproto_xf86miscproto xproto_xf86vidmodeproto
+
+$(eval $(call AUTOTARGETS,xapp_xdpyinfo))
--- /dev/null
+config BR2_PACKAGE_XAPP_XDRIINFO
+ bool "xdriinfo"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XPROTO_GLPROTO
+ select BR2_PACKAGE_MESA3D
+ help
+ xdriinfo 1.0.1
+ query configuration information of DRI drivers
--- /dev/null
+################################################################################
+#
+# xapp_xdriinfo -- query configuration information of DRI drivers
+#
+################################################################################
+
+XAPP_XDRIINFO_VERSION = 1.0.1
+XAPP_XDRIINFO_SOURCE = xdriinfo-$(XAPP_XDRIINFO_VERSION).tar.bz2
+XAPP_XDRIINFO_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XDRIINFO_AUTORECONF = YES
+XAPP_XDRIINFO_DEPENDANCIES = xlib_libX11 xproto_glproto mesa3d
+
+$(eval $(call AUTOTARGETS,xapp_xdriinfo))
--- /dev/null
+config BR2_PACKAGE_XAPP_XEDIT
+ bool "xedit"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXAW
+ select BR2_PACKAGE_XLIB_LIBXPRINTUTIL
+ help
+ xedit 1.0.2
+ simple text editor for X
--- /dev/null
+################################################################################
+#
+# xapp_xedit -- simple text editor for X
+#
+################################################################################
+
+XAPP_XEDIT_VERSION = 1.0.2
+XAPP_XEDIT_SOURCE = xedit-$(XAPP_XEDIT_VERSION).tar.bz2
+XAPP_XEDIT_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XEDIT_AUTORECONF = YES
+XAPP_XEDIT_DEPENDANCIES = xlib_libXaw xlib_libXprintUtil
+
+$(eval $(call AUTOTARGETS,xapp_xedit))
--- /dev/null
+config BR2_PACKAGE_XAPP_XEV
+ bool "xev"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ help
+ xev 1.0.1
+ print contents of X events
--- /dev/null
+################################################################################
+#
+# xapp_xev -- print contents of X events
+#
+################################################################################
+
+XAPP_XEV_VERSION = 1.0.1
+XAPP_XEV_SOURCE = xev-$(XAPP_XEV_VERSION).tar.bz2
+XAPP_XEV_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XEV_AUTORECONF = YES
+XAPP_XEV_DEPENDANCIES = xlib_libX11
+
+$(eval $(call AUTOTARGETS,xapp_xev))
--- /dev/null
+config BR2_PACKAGE_XAPP_XEYES
+ bool "xeyes"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XLIB_LIBXMU
+ select BR2_PACKAGE_XLIB_LIBXT
+ help
+ xeyes 1.0.1
+ X.Org xeyes application
--- /dev/null
+################################################################################
+#
+# xapp_xeyes -- X.Org xeyes application
+#
+################################################################################
+
+XAPP_XEYES_VERSION = 1.0.1
+XAPP_XEYES_SOURCE = xeyes-$(XAPP_XEYES_VERSION).tar.bz2
+XAPP_XEYES_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XEYES_AUTORECONF = YES
+XAPP_XEYES_DEPENDANCIES = xlib_libX11 xlib_libXext xlib_libXmu xlib_libXt
+
+$(eval $(call AUTOTARGETS,xapp_xeyes))
--- /dev/null
+config BR2_PACKAGE_XAPP_XF86DGA
+ bool "xf86dga"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXXF86DGA
+ help
+ xf86dga 1.0.2
+ test program for the XFree86-DGA extension
--- /dev/null
+################################################################################
+#
+# xapp_xf86dga -- test program for the XFree86-DGA extension
+#
+################################################################################
+
+XAPP_XF86DGA_VERSION = 1.0.2
+XAPP_XF86DGA_SOURCE = xf86dga-$(XAPP_XF86DGA_VERSION).tar.bz2
+XAPP_XF86DGA_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XF86DGA_AUTORECONF = YES
+XAPP_XF86DGA_DEPENDANCIES = xlib_libX11 xlib_libXxf86dga
+
+$(eval $(call AUTOTARGETS,xapp_xf86dga))
--- /dev/null
+config BR2_PACKAGE_XAPP_XFD
+ bool "xfd"
+ default n
+ select BR2_PACKAGE_FREETYPE
+ select BR2_PACKAGE_FONTCONFIG
+ select BR2_PACKAGE_XLIB_LIBXAW
+ select BR2_PACKAGE_XLIB_LIBXFT
+ help
+ xfd 1.0.1
+ X.Org xfd application
--- /dev/null
+################################################################################
+#
+# xapp_xfd -- X.Org xfd application
+#
+################################################################################
+
+XAPP_XFD_VERSION = 1.0.1
+XAPP_XFD_SOURCE = xfd-$(XAPP_XFD_VERSION).tar.bz2
+XAPP_XFD_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XFD_AUTORECONF = YES
+XAPP_XFD_DEPENDANCIES = freetype fontconfig xlib_libXaw xlib_libXft
+
+$(eval $(call AUTOTARGETS,xapp_xfd))
--- /dev/null
+config BR2_PACKAGE_XAPP_XFINDPROXY
+ bool "xfindproxy"
+ default n
+ select BR2_PACKAGE_XLIB_LIBICE
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXT
+ help
+ xfindproxy 1.0.1
+ X.Org xfindproxy application
--- /dev/null
+################################################################################
+#
+# xapp_xfindproxy -- X.Org xfindproxy application
+#
+################################################################################
+
+XAPP_XFINDPROXY_VERSION = 1.0.1
+XAPP_XFINDPROXY_SOURCE = xfindproxy-$(XAPP_XFINDPROXY_VERSION).tar.bz2
+XAPP_XFINDPROXY_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XFINDPROXY_AUTORECONF = YES
+XAPP_XFINDPROXY_DEPENDANCIES = xlib_libICE xlib_libX11 xlib_libXt
+
+$(eval $(call AUTOTARGETS,xapp_xfindproxy))
--- /dev/null
+config BR2_PACKAGE_XAPP_XFONTSEL
+ bool "xfontsel"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXAW
+ help
+ xfontsel 1.0.1
+ point and click selection of X11 font names
--- /dev/null
+################################################################################
+#
+# xapp_xfontsel -- point and click selection of X11 font names
+#
+################################################################################
+
+XAPP_XFONTSEL_VERSION = 1.0.1
+XAPP_XFONTSEL_SOURCE = xfontsel-$(XAPP_XFONTSEL_VERSION).tar.bz2
+XAPP_XFONTSEL_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XFONTSEL_AUTORECONF = YES
+XAPP_XFONTSEL_DEPENDANCIES = xlib_libXaw
+
+$(eval $(call AUTOTARGETS,xapp_xfontsel))
--- /dev/null
+config BR2_PACKAGE_XAPP_XFS
+ bool "xfs"
+ default n
+ select BR2_PACKAGE_XLIB_LIBFS
+ select BR2_PACKAGE_XLIB_LIBXFONT
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ help
+ xfs 1.0.4
+ X font server
--- /dev/null
+################################################################################
+#
+# xapp_xfs -- X font server
+#
+################################################################################
+
+XAPP_XFS_VERSION = 1.0.4
+XAPP_XFS_SOURCE = xfs-$(XAPP_XFS_VERSION).tar.bz2
+XAPP_XFS_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XFS_AUTORECONF = YES
+XAPP_XFS_DEPENDANCIES = xlib_libFS xlib_libXfont xproto_fontsproto
+
+$(eval $(call AUTOTARGETS,xapp_xfs))
--- /dev/null
+config BR2_PACKAGE_XAPP_XFSINFO
+ bool "xfsinfo"
+ default n
+ select BR2_PACKAGE_XLIB_LIBFS
+ select BR2_PACKAGE_XLIB_LIBX11
+ help
+ xfsinfo 1.0.1
+ X font server information utility
--- /dev/null
+################################################################################
+#
+# xapp_xfsinfo -- X font server information utility
+#
+################################################################################
+
+XAPP_XFSINFO_VERSION = 1.0.1
+XAPP_XFSINFO_SOURCE = xfsinfo-$(XAPP_XFSINFO_VERSION).tar.bz2
+XAPP_XFSINFO_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XFSINFO_AUTORECONF = YES
+XAPP_XFSINFO_DEPENDANCIES = xlib_libFS xlib_libX11
+
+$(eval $(call AUTOTARGETS,xapp_xfsinfo))
--- /dev/null
+config BR2_PACKAGE_XAPP_XFWP
+ bool "xfwp"
+ default n
+ select BR2_PACKAGE_XLIB_LIBICE
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL
+ help
+ xfwp 1.0.1
+ X.Org xfwp application
--- /dev/null
+################################################################################
+#
+# xapp_xfwp -- X.Org xfwp application
+#
+################################################################################
+
+XAPP_XFWP_VERSION = 1.0.1
+XAPP_XFWP_SOURCE = xfwp-$(XAPP_XFWP_VERSION).tar.bz2
+XAPP_XFWP_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XFWP_AUTORECONF = YES
+XAPP_XFWP_DEPENDANCIES = xlib_libICE xlib_libX11 xproto_xproxymanagementprotocol
+
+$(eval $(call AUTOTARGETS,xapp_xfwp))
--- /dev/null
+config BR2_PACKAGE_XAPP_XGAMMA
+ bool "xgamma"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXXF86VM
+ help
+ xgamma 1.0.1
+ Alter a monitor's gamma correction through the X server
--- /dev/null
+################################################################################
+#
+# xapp_xgamma -- Alter a monitor's gamma correction through the X server
+#
+################################################################################
+
+XAPP_XGAMMA_VERSION = 1.0.1
+XAPP_XGAMMA_SOURCE = xgamma-$(XAPP_XGAMMA_VERSION).tar.bz2
+XAPP_XGAMMA_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XGAMMA_AUTORECONF = YES
+XAPP_XGAMMA_DEPENDANCIES = xlib_libXxf86vm
+
+$(eval $(call AUTOTARGETS,xapp_xgamma))
--- /dev/null
+config BR2_PACKAGE_XAPP_XGC
+ bool "xgc"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXAW
+ help
+ xgc 1.0.1
+ X graphics demo
--- /dev/null
+################################################################################
+#
+# xapp_xgc -- X graphics demo
+#
+################################################################################
+
+XAPP_XGC_VERSION = 1.0.1
+XAPP_XGC_SOURCE = xgc-$(XAPP_XGC_VERSION).tar.bz2
+XAPP_XGC_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XGC_AUTORECONF = YES
+XAPP_XGC_DEPENDANCIES = xlib_libXaw
+
+$(eval $(call AUTOTARGETS,xapp_xgc))
--- /dev/null
+config BR2_PACKAGE_XAPP_XHOST
+ bool "xhost"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXMU
+ help
+ xhost 1.0.1
+ Controls host and/or user access to a running X server.
--- /dev/null
+################################################################################
+#
+# xapp_xhost -- Controls host and/or user access to a running X server.
+#
+################################################################################
+
+XAPP_XHOST_VERSION = 1.0.1
+XAPP_XHOST_SOURCE = xhost-$(XAPP_XHOST_VERSION).tar.bz2
+XAPP_XHOST_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XHOST_AUTORECONF = YES
+XAPP_XHOST_DEPENDANCIES = xlib_libX11 xlib_libXmu
+
+$(eval $(call AUTOTARGETS,xapp_xhost))
--- /dev/null
+config BR2_PACKAGE_XAPP_XINIT
+ bool "xinit"
+ default n
+ select BR2_PACKAGE_XAPP_XAUTH
+ select BR2_PACKAGE_XLIB_LIBX11
+ help
+ xinit 1.0.3
+ X Window System initializer
--- /dev/null
+################################################################################
+#
+# xapp_xinit -- X Window System initializer
+#
+################################################################################
+
+XAPP_XINIT_VERSION = 1.0.3
+XAPP_XINIT_SOURCE = xinit-$(XAPP_XINIT_VERSION).tar.bz2
+XAPP_XINIT_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XINIT_AUTORECONF = YES
+XAPP_XINIT_DEPENDANCIES = xapp_xauth xlib_libX11
+
+$(eval $(call AUTOTARGETS,xapp_xinit))
--- /dev/null
+config BR2_PACKAGE_XAPP_XKBCOMP
+ bool "xkbcomp"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXKBFILE
+ help
+ xkbcomp 1.0.3
+ compile XKB keyboard description
--- /dev/null
+################################################################################
+#
+# xapp_xkbcomp -- compile XKB keyboard description
+#
+################################################################################
+
+XAPP_XKBCOMP_VERSION = 1.0.3
+XAPP_XKBCOMP_SOURCE = xkbcomp-$(XAPP_XKBCOMP_VERSION).tar.bz2
+XAPP_XKBCOMP_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XKBCOMP_AUTORECONF = YES
+XAPP_XKBCOMP_DEPENDANCIES = xlib_libX11 xlib_libxkbfile
+
+$(eval $(call AUTOTARGETS,xapp_xkbcomp))
--- /dev/null
+config BR2_PACKAGE_XAPP_XKBEVD
+ bool "xkbevd"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXKBFILE
+ help
+ xkbevd 1.0.2
+ XKB event daemon
--- /dev/null
+################################################################################
+#
+# xapp_xkbevd -- XKB event daemon
+#
+################################################################################
+
+XAPP_XKBEVD_VERSION = 1.0.2
+XAPP_XKBEVD_SOURCE = xkbevd-$(XAPP_XKBEVD_VERSION).tar.bz2
+XAPP_XKBEVD_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XKBEVD_AUTORECONF = YES
+XAPP_XKBEVD_DEPENDANCIES = xlib_libxkbfile
+
+$(eval $(call AUTOTARGETS,xapp_xkbevd))
--- /dev/null
+config BR2_PACKAGE_XAPP_XKBPRINT
+ bool "xkbprint"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXKBFILE
+ help
+ xkbprint 1.0.1
+ print an XKB keyboard description
--- /dev/null
+################################################################################
+#
+# xapp_xkbprint -- print an XKB keyboard description
+#
+################################################################################
+
+XAPP_XKBPRINT_VERSION = 1.0.1
+XAPP_XKBPRINT_SOURCE = xkbprint-$(XAPP_XKBPRINT_VERSION).tar.bz2
+XAPP_XKBPRINT_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XKBPRINT_AUTORECONF = YES
+XAPP_XKBPRINT_DEPENDANCIES = xlib_libxkbfile
+
+$(eval $(call AUTOTARGETS,xapp_xkbprint))
--- /dev/null
+config BR2_PACKAGE_XAPP_XKBUTILS
+ bool "xkbutils"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXAW
+ select BR2_PACKAGE_XLIB_LIBXKBFILE
+ help
+ xkbutils 1.0.1
+ X.Org xkbutils application
--- /dev/null
+################################################################################
+#
+# xapp_xkbutils -- X.Org xkbutils application
+#
+################################################################################
+
+XAPP_XKBUTILS_VERSION = 1.0.1
+XAPP_XKBUTILS_SOURCE = xkbutils-$(XAPP_XKBUTILS_VERSION).tar.bz2
+XAPP_XKBUTILS_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XKBUTILS_AUTORECONF = YES
+XAPP_XKBUTILS_DEPENDANCIES = xlib_libXaw xlib_libxkbfile
+
+$(eval $(call AUTOTARGETS,xapp_xkbutils))
--- /dev/null
+config BR2_PACKAGE_XAPP_XKILL
+ bool "xkill"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXMU
+ help
+ xkill 1.0.1
+ kill a client by its X resource
--- /dev/null
+################################################################################
+#
+# xapp_xkill -- kill a client by its X resource
+#
+################################################################################
+
+XAPP_XKILL_VERSION = 1.0.1
+XAPP_XKILL_SOURCE = xkill-$(XAPP_XKILL_VERSION).tar.bz2
+XAPP_XKILL_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XKILL_AUTORECONF = YES
+XAPP_XKILL_DEPENDANCIES = xlib_libX11 xlib_libXmu
+
+$(eval $(call AUTOTARGETS,xapp_xkill))
--- /dev/null
+config BR2_PACKAGE_XAPP_XLOAD
+ bool "xload"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXAW
+ help
+ xload 1.0.1
+ system load average display for X
--- /dev/null
+################################################################################
+#
+# xapp_xload -- system load average display for X
+#
+################################################################################
+
+XAPP_XLOAD_VERSION = 1.0.1
+XAPP_XLOAD_SOURCE = xload-$(XAPP_XLOAD_VERSION).tar.bz2
+XAPP_XLOAD_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XLOAD_AUTORECONF = YES
+XAPP_XLOAD_DEPENDANCIES = xlib_libXaw
+
+$(eval $(call AUTOTARGETS,xapp_xload))
--- /dev/null
+config BR2_PACKAGE_XAPP_XLOGO
+ bool "xlogo"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXAW
+ select BR2_PACKAGE_XLIB_LIBXPRINTUTIL
+ select BR2_PACKAGE_XLIB_LIBXRENDER
+ help
+ xlogo 1.0.1
+ X Window System logo
--- /dev/null
+################################################################################
+#
+# xapp_xlogo -- X Window System logo
+#
+################################################################################
+
+XAPP_XLOGO_VERSION = 1.0.1
+XAPP_XLOGO_SOURCE = xlogo-$(XAPP_XLOGO_VERSION).tar.bz2
+XAPP_XLOGO_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XLOGO_AUTORECONF = YES
+XAPP_XLOGO_DEPENDANCIES = xlib_libXaw xlib_libXprintUtil xlib_libXrender
+
+$(eval $(call AUTOTARGETS,xapp_xlogo))
--- /dev/null
+config BR2_PACKAGE_XAPP_XLSATOMS
+ bool "xlsatoms"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXMU
+ help
+ xlsatoms 1.0.1
+ list interned atoms defined on server
--- /dev/null
+################################################################################
+#
+# xapp_xlsatoms -- list interned atoms defined on server
+#
+################################################################################
+
+XAPP_XLSATOMS_VERSION = 1.0.1
+XAPP_XLSATOMS_SOURCE = xlsatoms-$(XAPP_XLSATOMS_VERSION).tar.bz2
+XAPP_XLSATOMS_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XLSATOMS_AUTORECONF = YES
+XAPP_XLSATOMS_DEPENDANCIES = xlib_libX11 xlib_libXmu
+
+$(eval $(call AUTOTARGETS,xapp_xlsatoms))
--- /dev/null
+config BR2_PACKAGE_XAPP_XLSCLIENTS
+ bool "xlsclients"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXMU
+ help
+ xlsclients 1.0.1
+ X.Org xlsclients application
--- /dev/null
+################################################################################
+#
+# xapp_xlsclients -- X.Org xlsclients application
+#
+################################################################################
+
+XAPP_XLSCLIENTS_VERSION = 1.0.1
+XAPP_XLSCLIENTS_SOURCE = xlsclients-$(XAPP_XLSCLIENTS_VERSION).tar.bz2
+XAPP_XLSCLIENTS_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XLSCLIENTS_AUTORECONF = YES
+XAPP_XLSCLIENTS_DEPENDANCIES = xlib_libX11 xlib_libXmu
+
+$(eval $(call AUTOTARGETS,xapp_xlsclients))
--- /dev/null
+config BR2_PACKAGE_XAPP_XLSFONTS
+ bool "xlsfonts"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ help
+ xlsfonts 1.0.1
+ X.Org xlsfonts application
--- /dev/null
+################################################################################
+#
+# xapp_xlsfonts -- X.Org xlsfonts application
+#
+################################################################################
+
+XAPP_XLSFONTS_VERSION = 1.0.1
+XAPP_XLSFONTS_SOURCE = xlsfonts-$(XAPP_XLSFONTS_VERSION).tar.bz2
+XAPP_XLSFONTS_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XLSFONTS_AUTORECONF = YES
+XAPP_XLSFONTS_DEPENDANCIES = xlib_libX11
+
+$(eval $(call AUTOTARGETS,xapp_xlsfonts))
--- /dev/null
+config BR2_PACKAGE_XAPP_XMAG
+ bool "xmag"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXAW
+ help
+ xmag 1.0.1
+ X.Org xmag application
--- /dev/null
+################################################################################
+#
+# xapp_xmag -- X.Org xmag application
+#
+################################################################################
+
+XAPP_XMAG_VERSION = 1.0.1
+XAPP_XMAG_SOURCE = xmag-$(XAPP_XMAG_VERSION).tar.bz2
+XAPP_XMAG_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XMAG_AUTORECONF = YES
+XAPP_XMAG_DEPENDANCIES = xlib_libXaw
+
+$(eval $(call AUTOTARGETS,xapp_xmag))
--- /dev/null
+config BR2_PACKAGE_XAPP_XMAN
+ bool "xapp_xman"
+ default n
+ help
+ Manual page display program for the X Window System
+
--- /dev/null
+#############################################################
+#
+# xapp_xman - Manual page display program for the X Window System
+#
+#############################################################
+XAPP_XMAN_VERSION:=1.0.2
+XAPP_XMAN_SOURCE:=xman-$(XAPP_XMAN_VERSION).tar.bz2
+XAPP_XMAN_SITE:=http://xorg.freedesktop.org/releases/individual/app
+XAPP_XMAN_DIR:=$(BUILD_DIR)/xman-$(XAPP_XMAN_VERSION)
+
+$(DL_DIR)/$(XAPP_XMAN_SOURCE):
+ $(WGET) -P $(DL_DIR) $(XAPP_XMAN_SITE)/$(XAPP_XMAN_SOURCE)
+
+$(XAPP_XMAN_DIR)/.extracted: $(DL_DIR)/$(XAPP_XMAN_SOURCE)
+ $(BZCAT) $(DL_DIR)/$(XAPP_XMAN_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
+ touch $@
+
+$(XAPP_XMAN_DIR)/.patched: $(XAPP_XMAN_DIR)/.extracted
+ toolchain/patch-kernel.sh $(XAPP_XMAN_DIR) package/xapp_xman/ xapp_xman\*.patch
+ touch $@
+
+$(XAPP_XMAN_DIR)/.configured: $(XAPP_XMAN_DIR)/.patched
+ (cd $(XAPP_XMAN_DIR) && \
+ aclocal -I. -I$(STAGING_DIR)/usr/share/aclocal --install && \
+ autoconf -I$(STAGING_DIR)/usr/share/aclocal && \
+ automake -ac && \
+ rm -rf config.cache && \
+ $(TARGET_CONFIGURE_OPTS) \
+ CFLAGS="$(TARGET_CFLAGS)" \
+ LDFLAGS="$(TARGET_LDFLAGS)" \
+ STAGING_DIR=$(STAGING_DIR) \
+ \
+ ./configure \
+ --target=$(GNU_TARGET_NAME) \
+ --host=$(GNU_TARGET_NAME) \
+ --build=$(GNU_HOST_NAME) \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --enable-shared \
+ --disable-static \
+ --disable-IPv6 \
+ $(DISABLE_NLS) \
+ \
+ );
+ touch $@
+
+$(XAPP_XMAN_DIR)/.built: $(XAPP_XMAN_DIR)/.configured
+ $(MAKE) CC=$(TARGET_CC) CXX=$(TARGET_CC) -C $(XAPP_XMAN_DIR)
+ touch $@
+
+$(XAPP_XMAN_DIR)/.installed: $(XAPP_XMAN_DIR)/.built
+ $(MAKE) prefix=$(TARGET_DIR)/usr -C $(XAPP_XMAN_DIR) install-exec
+ $(MAKE) prefix=$(STAGING_DIR)/usr -C $(XAPP_XMAN_DIR) install
+ toolchain/replace.sh $(STAGING_DIR)/usr/lib ".*\.la" "\(['= ]\)/usr" "\\1$(STAGING_DIR)/usr"
+ find $(TARGET_DIR)/usr -name '*.la' -print -delete
+ touch $@
+
+xapp_xman-clean:
+ $(MAKE) prefix=$(STAGING_DIR)/usr -C $(XAPP_XMAN_DIR) uninstall
+ $(MAKE) prefix=$(TARGET_DIR)/usr -C $(XAPP_XMAN_DIR) uninstall
+ -$(MAKE) -C $(XAPP_XMAN_DIR) clean
+ -rm $(XAPP_XMAN_DIR)/.installed
+ -rm $(XAPP_XMAN_DIR)/.built
+
+xapp_xman-dirclean:
+ rm -rf $(XAPP_XMAN_DIR)
+
+xapp_xman-depends: xlib_libXprintUtil xlib_libXprintUtil
+xapp_xman-source: $(XAPP_XMAN_DIR)/.extracted
+xapp_xman-patch: $(XAPP_XMAN_DIR)/.patched
+xapp_xman-configure: $(XAPP_XMAN_DIR)/.configured
+xapp_xman-build: $(XAPP_XMAN_DIR)/.built
+
+xapp_xman: xapp_xman-depends $(XAPP_XMAN_DIR)/.installed
+
+#############################################################
+#
+# Toplevel Makefile options
+#
+#############################################################
+ifeq ($(strip $(BR2_PACKAGE_XAPP_XMAN)),y)
+TARGETS+=xapp_xman
+endif
+
+# :mode=makefile:
--- /dev/null
+config BR2_PACKAGE_XAPP_XMESSAGE
+ bool "xmessage"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXAW
+ help
+ xmessage 1.0.1
+ display a message or query in a window (X-based /bin/echo)
--- /dev/null
+################################################################################
+#
+# xapp_xmessage -- display a message or query in a window (X-based /bin/echo)
+#
+################################################################################
+
+XAPP_XMESSAGE_VERSION = 1.0.1
+XAPP_XMESSAGE_SOURCE = xmessage-$(XAPP_XMESSAGE_VERSION).tar.bz2
+XAPP_XMESSAGE_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XMESSAGE_AUTORECONF = YES
+XAPP_XMESSAGE_DEPENDANCIES = xlib_libXaw
+
+$(eval $(call AUTOTARGETS,xapp_xmessage))
--- /dev/null
+config BR2_PACKAGE_XAPP_XMH
+ bool "xmh"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXAW
+ help
+ xmh 1.0.1
+ send and read mail with an X interface to MH
--- /dev/null
+################################################################################
+#
+# xapp_xmh -- send and read mail with an X interface to MH
+#
+################################################################################
+
+XAPP_XMH_VERSION = 1.0.1
+XAPP_XMH_SOURCE = xmh-$(XAPP_XMH_VERSION).tar.bz2
+XAPP_XMH_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XMH_AUTORECONF = YES
+XAPP_XMH_DEPENDANCIES = xlib_libXaw
+
+$(eval $(call AUTOTARGETS,xapp_xmh))
--- /dev/null
+config BR2_PACKAGE_XAPP_XMODMAP
+ bool "xmodmap"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ help
+ xmodmap 1.0.2
+ utility for modifying keymaps and pointer button mappings in X
--- /dev/null
+################################################################################
+#
+# xapp_xmodmap -- utility for modifying keymaps and pointer button mappings in X
+#
+################################################################################
+
+XAPP_XMODMAP_VERSION = 1.0.2
+XAPP_XMODMAP_SOURCE = xmodmap-$(XAPP_XMODMAP_VERSION).tar.bz2
+XAPP_XMODMAP_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XMODMAP_AUTORECONF = YES
+XAPP_XMODMAP_DEPENDANCIES = xlib_libX11
+
+$(eval $(call AUTOTARGETS,xapp_xmodmap))
--- /dev/null
+config BR2_PACKAGE_XAPP_XMORE
+ bool "xmore"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXPRINTUTIL
+ select BR2_PACKAGE_XLIB_LIBXPRINTUTIL
+ help
+ xmore 1.0.1
+ plain text display program for the X Window System
--- /dev/null
+################################################################################
+#
+# xapp_xmore -- plain text display program for the X Window System
+#
+################################################################################
+
+XAPP_XMORE_VERSION = 1.0.1
+XAPP_XMORE_SOURCE = xmore-$(XAPP_XMORE_VERSION).tar.bz2
+XAPP_XMORE_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XMORE_AUTORECONF = YES
+XAPP_XMORE_DEPENDANCIES = xlib_libXprintUtil xlib_libXprintUtil
+
+$(eval $(call AUTOTARGETS,xapp_xmore))
--- /dev/null
+config BR2_PACKAGE_XAPP_XPHELLOWORLD
+ bool "xphelloworld"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXAW
+ select BR2_PACKAGE_XLIB_LIBXPRINTAPPUTIL
+ select BR2_PACKAGE_XLIB_LIBXPRINTUTIL
+ select BR2_PACKAGE_XLIB_LIBXT
+ help
+ xphelloworld 1.0.1
+ X.Org xphelloworld application
--- /dev/null
+################################################################################
+#
+# xapp_xphelloworld -- X.Org xphelloworld application
+#
+################################################################################
+
+XAPP_XPHELLOWORLD_VERSION = 1.0.1
+XAPP_XPHELLOWORLD_SOURCE = xphelloworld-$(XAPP_XPHELLOWORLD_VERSION).tar.bz2
+XAPP_XPHELLOWORLD_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XPHELLOWORLD_AUTORECONF = YES
+XAPP_XPHELLOWORLD_DEPENDANCIES = xlib_libXaw xlib_libXprintAppUtil xlib_libXprintUtil xlib_libXt
+
+$(eval $(call AUTOTARGETS,xapp_xphelloworld))
--- /dev/null
+config BR2_PACKAGE_XAPP_XPLSPRINTERS
+ bool "xplsprinters"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXP
+ select BR2_PACKAGE_XLIB_LIBXPRINTUTIL
+ help
+ xplsprinters 1.0.1
+ shows a list of Xprint printers and it's attributes
--- /dev/null
+################################################################################
+#
+# xapp_xplsprinters -- shows a list of Xprint printers and it's attributes
+#
+################################################################################
+
+XAPP_XPLSPRINTERS_VERSION = 1.0.1
+XAPP_XPLSPRINTERS_SOURCE = xplsprinters-$(XAPP_XPLSPRINTERS_VERSION).tar.bz2
+XAPP_XPLSPRINTERS_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XPLSPRINTERS_AUTORECONF = YES
+XAPP_XPLSPRINTERS_DEPENDANCIES = xlib_libX11 xlib_libXp xlib_libXprintUtil
+
+$(eval $(call AUTOTARGETS,xapp_xplsprinters))
--- /dev/null
+config BR2_PACKAGE_XAPP_XPR
+ bool "xpr"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXMU
+ help
+ xpr 1.0.1
+ X.Org xpr application
--- /dev/null
+################################################################################
+#
+# xapp_xpr -- X.Org xpr application
+#
+################################################################################
+
+XAPP_XPR_VERSION = 1.0.1
+XAPP_XPR_SOURCE = xpr-$(XAPP_XPR_VERSION).tar.bz2
+XAPP_XPR_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XPR_AUTORECONF = YES
+XAPP_XPR_DEPENDANCIES = xlib_libX11 xlib_libXmu
+
+$(eval $(call AUTOTARGETS,xapp_xpr))
--- /dev/null
+config BR2_PACKAGE_XAPP_XPREHASHPRINTERLIST
+ bool "xprehashprinterlist"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXP
+ help
+ xprehashprinterlist 1.0.1
+ Recomputes the list of available printers.
--- /dev/null
+################################################################################
+#
+# xapp_xprehashprinterlist -- Recomputes the list of available printers.
+#
+################################################################################
+
+XAPP_XPREHASHPRINTERLIST_VERSION = 1.0.1
+XAPP_XPREHASHPRINTERLIST_SOURCE = xprehashprinterlist-$(XAPP_XPREHASHPRINTERLIST_VERSION).tar.bz2
+XAPP_XPREHASHPRINTERLIST_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XPREHASHPRINTERLIST_AUTORECONF = YES
+XAPP_XPREHASHPRINTERLIST_DEPENDANCIES = xlib_libX11 xlib_libXp
+
+$(eval $(call AUTOTARGETS,xapp_xprehashprinterlist))
--- /dev/null
+config BR2_PACKAGE_XAPP_XPROP
+ bool "xprop"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXMU
+ help
+ xprop 1.0.2
+ property displayer for X
--- /dev/null
+################################################################################
+#
+# xapp_xprop -- property displayer for X
+#
+################################################################################
+
+XAPP_XPROP_VERSION = 1.0.2
+XAPP_XPROP_SOURCE = xprop-$(XAPP_XPROP_VERSION).tar.bz2
+XAPP_XPROP_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XPROP_AUTORECONF = YES
+XAPP_XPROP_DEPENDANCIES = xlib_libX11 xlib_libXmu
+
+$(eval $(call AUTOTARGETS,xapp_xprop))
--- /dev/null
+config BR2_PACKAGE_XAPP_XRANDR
+ bool "xrandr"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXRANDR
+ select BR2_PACKAGE_XLIB_LIBX11
+ help
+ xrandr 1.0.2
+ primitive command line interface to RandR extension
--- /dev/null
+################################################################################
+#
+# xapp_xrandr -- primitive command line interface to RandR extension
+#
+################################################################################
+
+XAPP_XRANDR_VERSION = 1.0.2
+XAPP_XRANDR_SOURCE = xrandr-$(XAPP_XRANDR_VERSION).tar.bz2
+XAPP_XRANDR_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XRANDR_AUTORECONF = YES
+XAPP_XRANDR_DEPENDANCIES = xlib_libXrandr xlib_libX11
+XAPP_XRANDR_CONF_OPT = --disable-malloc0returnsnull
+
+$(eval $(call AUTOTARGETS,xapp_xrandr))
--- /dev/null
+config BR2_PACKAGE_XAPP_XRDB
+ bool "xrdb"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXMU
+ help
+ xrdb 1.0.2
+ X server resource database utility
--- /dev/null
+################################################################################
+#
+# xapp_xrdb -- X server resource database utility
+#
+################################################################################
+
+XAPP_XRDB_VERSION = 1.0.2
+XAPP_XRDB_SOURCE = xrdb-$(XAPP_XRDB_VERSION).tar.bz2
+XAPP_XRDB_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XRDB_AUTORECONF = YES
+XAPP_XRDB_DEPENDANCIES = xlib_libX11 xlib_libXmu
+
+$(eval $(call AUTOTARGETS,xapp_xrdb))
--- /dev/null
+config BR2_PACKAGE_XAPP_XREFRESH
+ bool "xrefresh"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ help
+ xrefresh 1.0.2
+ refresh all or part of an X screen
--- /dev/null
+################################################################################
+#
+# xapp_xrefresh -- refresh all or part of an X screen
+#
+################################################################################
+
+XAPP_XREFRESH_VERSION = 1.0.2
+XAPP_XREFRESH_SOURCE = xrefresh-$(XAPP_XREFRESH_VERSION).tar.bz2
+XAPP_XREFRESH_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XREFRESH_AUTORECONF = YES
+XAPP_XREFRESH_DEPENDANCIES = xlib_libX11
+
+$(eval $(call AUTOTARGETS,xapp_xrefresh))
--- /dev/null
+config BR2_PACKAGE_XAPP_XRX
+ bool "xrx"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XLIB_LIBXT
+ help
+ xrx 1.0.1
+ X.Org xrx application
--- /dev/null
+################################################################################
+#
+# xapp_xrx -- X.Org xrx application
+#
+################################################################################
+
+XAPP_XRX_VERSION = 1.0.1
+XAPP_XRX_SOURCE = xrx-$(XAPP_XRX_VERSION).tar.bz2
+XAPP_XRX_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XRX_AUTORECONF = YES
+XAPP_XRX_DEPENDANCIES = xlib_libX11 xlib_libXext xlib_libXt
+
+$(eval $(call AUTOTARGETS,xapp_xrx))
--- /dev/null
+config BR2_PACKAGE_XAPP_XSET
+ bool "xset"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXFONTCACHE
+ select BR2_PACKAGE_XLIB_LIBXMU
+ help
+ xset 1.0.2
+ X.Org xset application
--- /dev/null
+################################################################################
+#
+# xapp_xset -- X.Org xset application
+#
+################################################################################
+
+XAPP_XSET_VERSION = 1.0.2
+XAPP_XSET_SOURCE = xset-$(XAPP_XSET_VERSION).tar.bz2
+XAPP_XSET_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XSET_AUTORECONF = YES
+XAPP_XSET_DEPENDANCIES = xlib_libXfontcache xlib_libXmu
+
+$(eval $(call AUTOTARGETS,xapp_xset))
--- /dev/null
+config BR2_PACKAGE_XAPP_XSETMODE
+ bool "xsetmode"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXI
+ help
+ xsetmode 1.0.0
+ set the mode for an X Input device
--- /dev/null
+################################################################################
+#
+# xapp_xsetmode -- set the mode for an X Input device
+#
+################################################################################
+
+XAPP_XSETMODE_VERSION = 1.0.0
+XAPP_XSETMODE_SOURCE = xsetmode-$(XAPP_XSETMODE_VERSION).tar.bz2
+XAPP_XSETMODE_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XSETMODE_AUTORECONF = YES
+XAPP_XSETMODE_DEPENDANCIES = xlib_libX11 xlib_libXi
+
+$(eval $(call AUTOTARGETS,xapp_xsetmode))
--- /dev/null
+config BR2_PACKAGE_XAPP_XSETPOINTER
+ bool "xsetpointer"
+ default n
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXI
+ help
+ xsetpointer 1.0.0
+ set an X Input device as the main pointer
--- /dev/null
+################################################################################
+#
+# xapp_xsetpointer -- set an X Input device as the main pointer
+#
+################################################################################
+
+XAPP_XSETPOINTER_VERSION = 1.0.0
+XAPP_XSETPOINTER_SOURCE = xsetpointer-$(XAPP_XSETPOINTER_VERSION).tar.bz2
+XAPP_XSETPOINTER_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XSETPOINTER_AUTORECONF = YES
+XAPP_XSETPOINTER_DEPENDANCIES = xproto_inputproto xlib_libX11 xlib_libXi
+
+$(eval $(call AUTOTARGETS,xapp_xsetpointer))
--- /dev/null
+config BR2_PACKAGE_XAPP_XSETROOT
+ bool "xsetroot"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXMU
+ select BR2_PACKAGE_XDATA_XBITMAPS
+ help
+ xsetroot 1.0.1
+ X.Org xsetroot application
--- /dev/null
+################################################################################
+#
+# xapp_xsetroot -- X.Org xsetroot application
+#
+################################################################################
+
+XAPP_XSETROOT_VERSION = 1.0.1
+XAPP_XSETROOT_SOURCE = xsetroot-$(XAPP_XSETROOT_VERSION).tar.bz2
+XAPP_XSETROOT_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XSETROOT_AUTORECONF = YES
+XAPP_XSETROOT_DEPENDANCIES = xlib_libX11 xlib_libXmu xdata_xbitmaps
+
+$(eval $(call AUTOTARGETS,xapp_xsetroot))
--- /dev/null
+config BR2_PACKAGE_XAPP_XSM
+ bool "xsm"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXAW
+ help
+ xsm 1.0.1
+ X Session Manager
--- /dev/null
+################################################################################
+#
+# xapp_xsm -- X Session Manager
+#
+################################################################################
+
+XAPP_XSM_VERSION = 1.0.1
+XAPP_XSM_SOURCE = xsm-$(XAPP_XSM_VERSION).tar.bz2
+XAPP_XSM_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XSM_AUTORECONF = YES
+XAPP_XSM_DEPENDANCIES = xlib_libXaw
+
+$(eval $(call AUTOTARGETS,xapp_xsm))
--- /dev/null
+config BR2_PACKAGE_XAPP_XSTDCMAP
+ bool "xstdcmap"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXMU
+ help
+ xstdcmap 1.0.1
+ X standard colormap utility
--- /dev/null
+################################################################################
+#
+# xapp_xstdcmap -- X standard colormap utility
+#
+################################################################################
+
+XAPP_XSTDCMAP_VERSION = 1.0.1
+XAPP_XSTDCMAP_SOURCE = xstdcmap-$(XAPP_XSTDCMAP_VERSION).tar.bz2
+XAPP_XSTDCMAP_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XSTDCMAP_AUTORECONF = YES
+XAPP_XSTDCMAP_DEPENDANCIES = xlib_libX11 xlib_libXmu
+
+$(eval $(call AUTOTARGETS,xapp_xstdcmap))
--- /dev/null
+config BR2_PACKAGE_XAPP_XTRAP
+ bool "xtrap"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXTRAP
+ help
+ xtrap 1.0.2
+ X.Org xtrap application
--- /dev/null
+################################################################################
+#
+# xapp_xtrap -- X.Org xtrap application
+#
+################################################################################
+
+XAPP_XTRAP_VERSION = 1.0.2
+XAPP_XTRAP_SOURCE = xtrap-$(XAPP_XTRAP_VERSION).tar.bz2
+XAPP_XTRAP_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XTRAP_AUTORECONF = YES
+XAPP_XTRAP_DEPENDANCIES = xlib_libX11 xlib_libXTrap
+
+$(eval $(call AUTOTARGETS,xapp_xtrap))
--- /dev/null
+config BR2_PACKAGE_XAPP_XVIDTUNE
+ bool "xvidtune"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXAW
+ select BR2_PACKAGE_XLIB_LIBXXF86VM
+ help
+ xvidtune 1.0.1
+ video mode tuner for Xorg
--- /dev/null
+################################################################################
+#
+# xapp_xvidtune -- video mode tuner for Xorg
+#
+################################################################################
+
+XAPP_XVIDTUNE_VERSION = 1.0.1
+XAPP_XVIDTUNE_SOURCE = xvidtune-$(XAPP_XVIDTUNE_VERSION).tar.bz2
+XAPP_XVIDTUNE_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XVIDTUNE_AUTORECONF = YES
+XAPP_XVIDTUNE_DEPENDANCIES = xlib_libXaw xlib_libXxf86vm
+
+$(eval $(call AUTOTARGETS,xapp_xvidtune))
--- /dev/null
+config BR2_PACKAGE_XAPP_XVINFO
+ bool "xvinfo"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXV
+ help
+ xvinfo 1.0.1
+ Print out X-Video extension adaptor information
--- /dev/null
+################################################################################
+#
+# xapp_xvinfo -- Print out X-Video extension adaptor information
+#
+################################################################################
+
+XAPP_XVINFO_VERSION = 1.0.1
+XAPP_XVINFO_SOURCE = xvinfo-$(XAPP_XVINFO_VERSION).tar.bz2
+XAPP_XVINFO_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XVINFO_AUTORECONF = YES
+XAPP_XVINFO_DEPENDANCIES = xlib_libX11 xlib_libXv
+
+$(eval $(call AUTOTARGETS,xapp_xvinfo))
--- /dev/null
+config BR2_PACKAGE_XAPP_XWD
+ bool "xwd"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXMU
+ help
+ xwd 1.0.1
+ dump an image of an X window
--- /dev/null
+################################################################################
+#
+# xapp_xwd -- dump an image of an X window
+#
+################################################################################
+
+XAPP_XWD_VERSION = 1.0.1
+XAPP_XWD_SOURCE = xwd-$(XAPP_XWD_VERSION).tar.bz2
+XAPP_XWD_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XWD_AUTORECONF = YES
+XAPP_XWD_DEPENDANCIES = xlib_libX11 xlib_libXmu
+
+$(eval $(call AUTOTARGETS,xapp_xwd))
--- /dev/null
+config BR2_PACKAGE_XAPP_XWININFO
+ bool "xwininfo"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXMU
+ help
+ xwininfo 1.0.2
+ window information utility for X
--- /dev/null
+################################################################################
+#
+# xapp_xwininfo -- window information utility for X
+#
+################################################################################
+
+XAPP_XWININFO_VERSION = 1.0.2
+XAPP_XWININFO_SOURCE = xwininfo-$(XAPP_XWININFO_VERSION).tar.bz2
+XAPP_XWININFO_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XWININFO_AUTORECONF = YES
+XAPP_XWININFO_DEPENDANCIES = xlib_libX11 xlib_libXmu
+
+$(eval $(call AUTOTARGETS,xapp_xwininfo))
--- /dev/null
+config BR2_PACKAGE_XAPP_XWUD
+ bool "xwud"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ help
+ xwud 1.0.1
+ image displayer for X
--- /dev/null
+################################################################################
+#
+# xapp_xwud -- image displayer for X
+#
+################################################################################
+
+XAPP_XWUD_VERSION = 1.0.1
+XAPP_XWUD_SOURCE = xwud-$(XAPP_XWUD_VERSION).tar.bz2
+XAPP_XWUD_SITE = http://xorg.freedesktop.org/releases/individual/app
+XAPP_XWUD_AUTORECONF = YES
+XAPP_XWUD_DEPENDANCIES = xlib_libX11
+
+$(eval $(call AUTOTARGETS,xapp_xwud))
--- /dev/null
+config BR2_PACKAGE_XCB_PROTO
+ bool "xcb-proto"
+ default n
+ help
+ The protocol headers that define XCB.
+
+ http://xcb.freedesktop.org/
+
--- /dev/null
+#############################################################
+#
+# xcb-proto
+#
+#############################################################
+XCB_PROTO_VERSION = 1.0
+XCB_PROTO_SOURCE = xcb-proto-$(XCB_PROTO_VERSION).tar.bz2
+XCB_PROTO_SITE = http://xcb.freedesktop.org/dist/
+
+XCB_PROTO_INSTALL_STAGING = YES
+
+$(eval $(call AUTOTARGETS,xcb-proto))
+
--- /dev/null
+#############################################################
+#
+# xcb-util
+#
+#############################################################
+XCB_UTIL_VERSION = 0.2
+XCB_UTIL_SOURCE = xcb-util-$(XCB_UTIL_VERSION).tar.bz2
+XCB_UTIL_SITE = http://xcb.freedesktop.org/dist/
+
+$(eval $(call AUTOTARGETS,xcb-util))
+
--- /dev/null
+config BR2_PACKAGE_XDATA_XBITMAPS
+ bool "xbitmaps"
+ default n
+ help
+ xbitmaps 1.0.1
+ No description available
--- /dev/null
+################################################################################
+#
+# xdata_xbitmaps -- No description available
+#
+################################################################################
+
+XDATA_XBITMAPS_VERSION = 1.0.1
+XDATA_XBITMAPS_SOURCE = xbitmaps-$(XDATA_XBITMAPS_VERSION).tar.bz2
+XDATA_XBITMAPS_SITE = http://xorg.freedesktop.org/releases/individual/data
+XDATA_XBITMAPS_AUTORECONF = YES
+
+$(eval $(call AUTOTARGETS,xdata_xbitmaps))
--- /dev/null
+config BR2_PACKAGE_XDATA_XCURSOR_THEMES
+ bool "xdata_xcursor-themes"
+ default n
+ help
+ No description available
+
--- /dev/null
+#############################################################
+#
+# xdata_xcursor-themes - No description available
+#
+#############################################################
+XDATA_XCURSOR_THEMES_VERSION:=1.0.1
+XDATA_XCURSOR_THEMES_SOURCE:=xcursor-themes-$(XDATA_XCURSOR_THEMES_VERSION).tar.bz2
+XDATA_XCURSOR_THEMES_SITE:=http://xorg.freedesktop.org/releases/individual/data
+XDATA_XCURSOR_THEMES_DIR:=$(BUILD_DIR)/xcursor-themes-$(XDATA_XCURSOR_THEMES_VERSION)
+
+$(DL_DIR)/$(XDATA_XCURSOR_THEMES_SOURCE):
+ $(WGET) -P $(DL_DIR) $(XDATA_XCURSOR_THEMES_SITE)/$(XDATA_XCURSOR_THEMES_SOURCE)
+
+$(XDATA_XCURSOR_THEMES_DIR)/.extracted: $(DL_DIR)/$(XDATA_XCURSOR_THEMES_SOURCE)
+ $(BZCAT) $(DL_DIR)/$(XDATA_XCURSOR_THEMES_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
+ touch $@
+
+$(XDATA_XCURSOR_THEMES_DIR)/.patched: $(XDATA_XCURSOR_THEMES_DIR)/.extracted
+ toolchain/patch-kernel.sh $(XDATA_XCURSOR_THEMES_DIR) package/xdata_xcursor-themes/ xdata_xcursor-themes\*.patch
+ touch $@
+
+$(XDATA_XCURSOR_THEMES_DIR)/.configured: $(XDATA_XCURSOR_THEMES_DIR)/.patched
+ (cd $(XDATA_XCURSOR_THEMES_DIR) && \
+ aclocal -I. -I$(STAGING_DIR)/usr/share/aclocal --install && \
+ autoconf -I$(STAGING_DIR)/usr/share/aclocal && \
+ automake -ac && \
+ rm -rf config.cache && \
+ $(TARGET_CONFIGURE_OPTS) \
+ CFLAGS="$(TARGET_CFLAGS)" \
+ LDFLAGS="$(TARGET_LDFLAGS)" \
+ STAGING_DIR=$(STAGING_DIR) \
+ \
+ ./configure \
+ --target=$(GNU_TARGET_NAME) \
+ --host=$(GNU_TARGET_NAME) \
+ --build=$(GNU_HOST_NAME) \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --enable-shared \
+ --disable-static \
+ --disable-IPv6 \
+ $(DISABLE_NLS) \
+ \
+ );
+ touch $@
+
+$(XDATA_XCURSOR_THEMES_DIR)/.built: $(XDATA_XCURSOR_THEMES_DIR)/.configured
+ $(MAKE) CC=$(TARGET_CC) CXX=$(TARGET_CC) -C $(XDATA_XCURSOR_THEMES_DIR)
+ touch $@
+
+$(XDATA_XCURSOR_THEMES_DIR)/.installed: $(XDATA_XCURSOR_THEMES_DIR)/.built
+ $(MAKE) prefix=$(TARGET_DIR)/usr -C $(XDATA_XCURSOR_THEMES_DIR) install-exec
+ $(MAKE) prefix=$(STAGING_DIR)/usr -C $(XDATA_XCURSOR_THEMES_DIR) install
+ toolchain/replace.sh $(STAGING_DIR)/usr/lib ".*\.la" "\(['= ]\)/usr" "\\1$(STAGING_DIR)/usr"
+ find $(TARGET_DIR)/usr -name '*.la' -print -delete
+ touch $@
+
+xdata_xcursor-themes-clean:
+ $(MAKE) prefix=$(STAGING_DIR)/usr -C $(XDATA_XCURSOR_THEMES_DIR) uninstall
+ $(MAKE) prefix=$(TARGET_DIR)/usr -C $(XDATA_XCURSOR_THEMES_DIR) uninstall
+ -$(MAKE) -C $(XDATA_XCURSOR_THEMES_DIR) clean
+ -rm $(XDATA_XCURSOR_THEMES_DIR)/.installed
+ -rm $(XDATA_XCURSOR_THEMES_DIR)/.built
+
+xdata_xcursor-themes-dirclean:
+ rm -rf $(XDATA_XCURSOR_THEMES_DIR)
+
+xdata_xcursor-themes-depends:
+xdata_xcursor-themes-source: $(XDATA_XCURSOR_THEMES_DIR)/.extracted
+xdata_xcursor-themes-patch: $(XDATA_XCURSOR_THEMES_DIR)/.patched
+xdata_xcursor-themes-configure: $(XDATA_XCURSOR_THEMES_DIR)/.configured
+xdata_xcursor-themes-build: $(XDATA_XCURSOR_THEMES_DIR)/.built
+
+xdata_xcursor-themes: xdata_xcursor-themes-depends $(XDATA_XCURSOR_THEMES_DIR)/.installed
+
+#############################################################
+#
+# Toplevel Makefile options
+#
+#############################################################
+ifeq ($(strip $(BR2_PACKAGE_XDATA_XCURSOR_THEMES)),y)
+TARGETS+=xdata_xcursor-themes
+endif
+
+# :mode=makefile:
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_ACECAD
+ bool "xf86-input-acecad"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-acecad 1.1.0
+ Acecad Flair input driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-acecad -- Acecad Flair input driver
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_ACECAD_VERSION = 1.1.0
+XDRIVER_XF86_INPUT_ACECAD_SOURCE = xf86-input-acecad-$(XDRIVER_XF86_INPUT_ACECAD_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_ACECAD_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_ACECAD_AUTORECONF = YES
+XDRIVER_XF86_INPUT_ACECAD_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-acecad))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_AIPTEK
+ bool "xf86-input-aiptek"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-aiptek 1.0.1
+ Aiptek USB Digital Tablet Input Driver for Linux
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-aiptek -- Aiptek USB Digital Tablet Input Driver for Linux
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_AIPTEK_VERSION = 1.0.1
+XDRIVER_XF86_INPUT_AIPTEK_SOURCE = xf86-input-aiptek-$(XDRIVER_XF86_INPUT_AIPTEK_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_AIPTEK_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_AIPTEK_AUTORECONF = YES
+XDRIVER_XF86_INPUT_AIPTEK_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-aiptek))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_CALCOMP
+ bool "xf86-input-calcomp"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-calcomp 1.1.0
+ Calcomp input driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-calcomp -- Calcomp input driver
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_CALCOMP_VERSION = 1.1.0
+XDRIVER_XF86_INPUT_CALCOMP_SOURCE = xf86-input-calcomp-$(XDRIVER_XF86_INPUT_CALCOMP_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_CALCOMP_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_CALCOMP_AUTORECONF = YES
+XDRIVER_XF86_INPUT_CALCOMP_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-calcomp))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_CITRON
+ bool "xf86-input-citron"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-citron 2.2.0
+ X.Org driver for citron input devices
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-citron -- X.Org driver for citron input devices
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_CITRON_VERSION = 2.2.0
+XDRIVER_XF86_INPUT_CITRON_SOURCE = xf86-input-citron-$(XDRIVER_XF86_INPUT_CITRON_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_CITRON_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_CITRON_AUTORECONF = YES
+XDRIVER_XF86_INPUT_CITRON_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-citron))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_DIGITALEDGE
+ bool "xf86-input-digitaledge"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-digitaledge 1.1.0
+ X.Org driver for digitaledge input devices
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-digitaledge -- X.Org driver for digitaledge input devices
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_DIGITALEDGE_VERSION = 1.1.0
+XDRIVER_XF86_INPUT_DIGITALEDGE_SOURCE = xf86-input-digitaledge-$(XDRIVER_XF86_INPUT_DIGITALEDGE_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_DIGITALEDGE_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_DIGITALEDGE_AUTORECONF = YES
+XDRIVER_XF86_INPUT_DIGITALEDGE_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-digitaledge))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_DMC
+ bool "xf86-input-dmc"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-dmc 1.1.0
+ DMC input driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-dmc -- DMC input driver
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_DMC_VERSION = 1.1.0
+XDRIVER_XF86_INPUT_DMC_SOURCE = xf86-input-dmc-$(XDRIVER_XF86_INPUT_DMC_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_DMC_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_DMC_AUTORECONF = YES
+XDRIVER_XF86_INPUT_DMC_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-dmc))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_DYNAPRO
+ bool "xf86-input-dynapro"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-dynapro 1.1.0
+ Dynapro input driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-dynapro -- Dynapro input driver
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_DYNAPRO_VERSION = 1.1.0
+XDRIVER_XF86_INPUT_DYNAPRO_SOURCE = xf86-input-dynapro-$(XDRIVER_XF86_INPUT_DYNAPRO_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_DYNAPRO_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_DYNAPRO_AUTORECONF = YES
+XDRIVER_XF86_INPUT_DYNAPRO_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-dynapro))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_ELO2300
+ bool "xf86-input-elo2300"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-elo2300 1.1.0
+ X.Org driver for elo2300 input devices
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-elo2300 -- X.Org driver for elo2300 input devices
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_ELO2300_VERSION = 1.1.0
+XDRIVER_XF86_INPUT_ELO2300_SOURCE = xf86-input-elo2300-$(XDRIVER_XF86_INPUT_ELO2300_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_ELO2300_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_ELO2300_AUTORECONF = YES
+XDRIVER_XF86_INPUT_ELO2300_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-elo2300))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_ELOGRAPHICS
+ bool "xf86-input-elographics"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-elographics 1.0.0.5
+ Elographics input driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-elographics -- Elographics input driver
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_ELOGRAPHICS_VERSION = 1.0.0.5
+XDRIVER_XF86_INPUT_ELOGRAPHICS_SOURCE = xf86-input-elographics-$(XDRIVER_XF86_INPUT_ELOGRAPHICS_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_ELOGRAPHICS_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_ELOGRAPHICS_AUTORECONF = YES
+XDRIVER_XF86_INPUT_ELOGRAPHICS_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-elographics))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_EVDEV
+ bool "xf86-input-evdev"
+ default n
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-evdev 1.1.2
+ Generic Linux input driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-evdev -- Generic Linux input driver
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_EVDEV_VERSION = 1.1.2
+XDRIVER_XF86_INPUT_EVDEV_SOURCE = xf86-input-evdev-$(XDRIVER_XF86_INPUT_EVDEV_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_EVDEV_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_EVDEV_AUTORECONF = YES
+XDRIVER_XF86_INPUT_EVDEV_DEPENDANCIES = xproto_inputproto xserver_xorg-server xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-evdev))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_FPIT
+ bool "xf86-input-fpit"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-fpit 1.1.0
+ Fujitsu Stylistic input driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-fpit -- Fujitsu Stylistic input driver
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_FPIT_VERSION = 1.1.0
+XDRIVER_XF86_INPUT_FPIT_SOURCE = xf86-input-fpit-$(XDRIVER_XF86_INPUT_FPIT_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_FPIT_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_FPIT_AUTORECONF = YES
+XDRIVER_XF86_INPUT_FPIT_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-fpit))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_HYPERPEN
+ bool "xf86-input-hyperpen"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-hyperpen 1.1.0
+ X.Org driver for hyperpen input devices
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-hyperpen -- X.Org driver for hyperpen input devices
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_HYPERPEN_VERSION = 1.1.0
+XDRIVER_XF86_INPUT_HYPERPEN_SOURCE = xf86-input-hyperpen-$(XDRIVER_XF86_INPUT_HYPERPEN_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_HYPERPEN_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_HYPERPEN_AUTORECONF = YES
+XDRIVER_XF86_INPUT_HYPERPEN_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-hyperpen))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_JAMSTUDIO
+ bool "xf86-input-jamstudio"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-jamstudio 1.1.0
+ X.Org driver for jamstudio input devices
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-jamstudio -- X.Org driver for jamstudio input devices
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_JAMSTUDIO_VERSION = 1.1.0
+XDRIVER_XF86_INPUT_JAMSTUDIO_SOURCE = xf86-input-jamstudio-$(XDRIVER_XF86_INPUT_JAMSTUDIO_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_JAMSTUDIO_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_JAMSTUDIO_AUTORECONF = YES
+XDRIVER_XF86_INPUT_JAMSTUDIO_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-jamstudio))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_JOYSTICK
+ bool "xf86-input-joystick"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-joystick 1.1.0
+ X.Org driver for joystick input devices
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-joystick -- X.Org driver for joystick input devices
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_JOYSTICK_VERSION = 1.1.0
+XDRIVER_XF86_INPUT_JOYSTICK_SOURCE = xf86-input-joystick-$(XDRIVER_XF86_INPUT_JOYSTICK_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_JOYSTICK_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_JOYSTICK_AUTORECONF = YES
+XDRIVER_XF86_INPUT_JOYSTICK_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-joystick))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_KEYBOARD
+ bool "xf86-input-keyboard"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_KBPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-keyboard 1.1.1
+ Keyboard input driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-keyboard -- Keyboard input driver
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_KEYBOARD_VERSION = 1.1.1
+XDRIVER_XF86_INPUT_KEYBOARD_SOURCE = xf86-input-keyboard-$(XDRIVER_XF86_INPUT_KEYBOARD_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_KEYBOARD_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_KEYBOARD_AUTORECONF = YES
+XDRIVER_XF86_INPUT_KEYBOARD_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_kbproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-keyboard))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_MAGELLAN
+ bool "xf86-input-magellan"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-magellan 1.1.0
+ X.Org driver for magellan input devices
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-magellan -- X.Org driver for magellan input devices
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_MAGELLAN_VERSION = 1.1.0
+XDRIVER_XF86_INPUT_MAGELLAN_SOURCE = xf86-input-magellan-$(XDRIVER_XF86_INPUT_MAGELLAN_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_MAGELLAN_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_MAGELLAN_AUTORECONF = YES
+XDRIVER_XF86_INPUT_MAGELLAN_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-magellan))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_MAGICTOUCH
+ bool "xf86-input-magictouch"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-magictouch 1.0.0.5
+ MagicTouch input driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-magictouch -- MagicTouch input driver
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_MAGICTOUCH_VERSION = 1.0.0.5
+XDRIVER_XF86_INPUT_MAGICTOUCH_SOURCE = xf86-input-magictouch-$(XDRIVER_XF86_INPUT_MAGICTOUCH_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_MAGICTOUCH_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_MAGICTOUCH_AUTORECONF = YES
+XDRIVER_XF86_INPUT_MAGICTOUCH_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-magictouch))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_MICROTOUCH
+ bool "xf86-input-microtouch"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-microtouch 1.1.0
+ MicroTouch input driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-microtouch -- MicroTouch input driver
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_MICROTOUCH_VERSION = 1.1.0
+XDRIVER_XF86_INPUT_MICROTOUCH_SOURCE = xf86-input-microtouch-$(XDRIVER_XF86_INPUT_MICROTOUCH_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_MICROTOUCH_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_MICROTOUCH_AUTORECONF = YES
+XDRIVER_XF86_INPUT_MICROTOUCH_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-microtouch))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_MOUSE
+ bool "xf86-input-mouse"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-mouse 1.1.2
+ X.Org driver for mouse input devices
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-mouse -- X.Org driver for mouse input devices
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_MOUSE_VERSION = 1.1.2
+XDRIVER_XF86_INPUT_MOUSE_SOURCE = xf86-input-mouse-$(XDRIVER_XF86_INPUT_MOUSE_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_MOUSE_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_MOUSE_AUTORECONF = YES
+XDRIVER_XF86_INPUT_MOUSE_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-mouse))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_MUTOUCH
+ bool "xf86-input-mutouch"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-mutouch 1.1.0
+ Microtouch input driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-mutouch -- Microtouch input driver
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_MUTOUCH_VERSION = 1.1.0
+XDRIVER_XF86_INPUT_MUTOUCH_SOURCE = xf86-input-mutouch-$(XDRIVER_XF86_INPUT_MUTOUCH_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_MUTOUCH_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_MUTOUCH_AUTORECONF = YES
+XDRIVER_XF86_INPUT_MUTOUCH_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-mutouch))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_PALMAX
+ bool "xf86-input-palmax"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-palmax 1.1.0
+ Palmax (TR88L803) touchscreen driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-palmax -- Palmax (TR88L803) touchscreen driver
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_PALMAX_VERSION = 1.1.0
+XDRIVER_XF86_INPUT_PALMAX_SOURCE = xf86-input-palmax-$(XDRIVER_XF86_INPUT_PALMAX_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_PALMAX_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_PALMAX_AUTORECONF = YES
+XDRIVER_XF86_INPUT_PALMAX_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-palmax))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_PENMOUNT
+ bool "xf86-input-penmount"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-penmount 1.2.0
+ PenMount input driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-penmount -- PenMount input driver
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_PENMOUNT_VERSION = 1.2.0
+XDRIVER_XF86_INPUT_PENMOUNT_SOURCE = xf86-input-penmount-$(XDRIVER_XF86_INPUT_PENMOUNT_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_PENMOUNT_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_PENMOUNT_AUTORECONF = YES
+XDRIVER_XF86_INPUT_PENMOUNT_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-penmount))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_SPACEORB
+ bool "xf86-input-spaceorb"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-spaceorb 1.1.0
+ X.Org driver for spaceorb input devices
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-spaceorb -- X.Org driver for spaceorb input devices
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_SPACEORB_VERSION = 1.1.0
+XDRIVER_XF86_INPUT_SPACEORB_SOURCE = xf86-input-spaceorb-$(XDRIVER_XF86_INPUT_SPACEORB_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_SPACEORB_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_SPACEORB_AUTORECONF = YES
+XDRIVER_XF86_INPUT_SPACEORB_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-spaceorb))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_SUMMA
+ bool "xf86-input-summa"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-summa 1.1.0
+ X.Org driver for summa input devices
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-summa -- X.Org driver for summa input devices
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_SUMMA_VERSION = 1.1.0
+XDRIVER_XF86_INPUT_SUMMA_SOURCE = xf86-input-summa-$(XDRIVER_XF86_INPUT_SUMMA_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_SUMMA_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_SUMMA_AUTORECONF = YES
+XDRIVER_XF86_INPUT_SUMMA_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-summa))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_TEK4957
+ bool "xf86-input-tek4957"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-tek4957 1.1.0
+ Tektronix 4957 input driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-tek4957 -- Tektronix 4957 input driver
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_TEK4957_VERSION = 1.1.0
+XDRIVER_XF86_INPUT_TEK4957_SOURCE = xf86-input-tek4957-$(XDRIVER_XF86_INPUT_TEK4957_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_TEK4957_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_TEK4957_AUTORECONF = YES
+XDRIVER_XF86_INPUT_TEK4957_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-tek4957))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_UR98
+ bool "xf86-input-ur98"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-ur98 1.1.0
+ UR98 (TR88L803) head tracker driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-ur98 -- UR98 (TR88L803) head tracker driver
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_UR98_VERSION = 1.1.0
+XDRIVER_XF86_INPUT_UR98_SOURCE = xf86-input-ur98-$(XDRIVER_XF86_INPUT_UR98_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_UR98_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_UR98_AUTORECONF = YES
+XDRIVER_XF86_INPUT_UR98_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-ur98))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_VMMOUSE
+ bool "xf86-input-vmmouse"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-vmmouse 12.4.0
+ VMWare mouse input driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-vmmouse -- VMWare mouse input driver
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_VMMOUSE_VERSION = 12.4.0
+XDRIVER_XF86_INPUT_VMMOUSE_SOURCE = xf86-input-vmmouse-$(XDRIVER_XF86_INPUT_VMMOUSE_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_VMMOUSE_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_VMMOUSE_AUTORECONF = YES
+XDRIVER_XF86_INPUT_VMMOUSE_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-vmmouse))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
+ bool "xf86-input-void"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-input-void 1.1.0
+ null input driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-input-void -- null input driver
+#
+################################################################################
+
+XDRIVER_XF86_INPUT_VOID_VERSION = 1.1.0
+XDRIVER_XF86_INPUT_VOID_SOURCE = xf86-input-void-$(XDRIVER_XF86_INPUT_VOID_VERSION).tar.bz2
+XDRIVER_XF86_INPUT_VOID_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_INPUT_VOID_AUTORECONF = YES
+XDRIVER_XF86_INPUT_VOID_DEPENDANCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-input-void))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_APM
+ bool "xf86-video-apm"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XF86RUSHPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-apm 1.1.1
+ Alliance ProMotion video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-apm -- Alliance ProMotion video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_APM_VERSION = 1.1.1
+XDRIVER_XF86_VIDEO_APM_SOURCE = xf86-video-apm-$(XDRIVER_XF86_VIDEO_APM_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_APM_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_APM_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_APM_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xextproto xproto_xf86rushproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-apm))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_ARK
+ bool "xf86-video-ark"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-ark 0.6.0
+ X.Org driver for ark cards
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-ark -- X.Org driver for ark cards
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_ARK_VERSION = 0.6.0
+XDRIVER_XF86_VIDEO_ARK_SOURCE = xf86-video-ark-$(XDRIVER_XF86_VIDEO_ARK_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_ARK_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_ARK_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_ARK_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_xextproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-ark))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_AST
+ bool "xf86-video-ast"
+ default n
+ help
+ xf86-video-ast 0.81.0
+ No description available
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-ast -- No description available
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_AST_VERSION = 0.81.0
+XDRIVER_XF86_VIDEO_AST_SOURCE = xf86-video-ast-$(XDRIVER_XF86_VIDEO_AST_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_AST_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_AST_AUTORECONF = YES
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-ast))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_ATI
+ bool "xf86-video-ati"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_LIBDRM
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_GLPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XF86DRIPROTO
+ select BR2_PACKAGE_XPROTO_XF86MISCPROTO
+ select BR2_PACKAGE_XPROTO_XINERAMAPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-ati 6.6.3
+ ATI video driver
--- /dev/null
+--- xf86-video-ati-6.6.3/configure.ac.orig 2007-06-10 12:02:12.000000000 +0200
++++ xf86-video-ati-6.6.3/configure.ac 2007-06-10 12:02:31.000000000 +0200
+@@ -84,13 +84,19 @@
+ # Checks for header files.
+ AC_HEADER_STDC
+
+-if test "$DRI" != no; then
++if test "x$DRI" != xno; then
++ if test "$cross_compiling" = no; then
+ AC_CHECK_FILE([${sdkdir}/dri.h],
+ [have_dri_h="yes"], [have_dri_h="no"])
+ AC_CHECK_FILE([${sdkdir}/sarea.h],
+ [have_sarea_h="yes"], [have_sarea_h="no"])
+ AC_CHECK_FILE([${sdkdir}/dristruct.h],
+ [have_dristruct_h="yes"], [have_dristruct_h="no"])
++ else
++ have_dri_h="yes"
++ have_sarea_h="yes"
++ have_dristruct_h="yes"
++ fi
+ fi
+
+ AC_MSG_CHECKING([whether to include DRI support])
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-ati -- ATI video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_ATI_VERSION = 6.6.3
+XDRIVER_XF86_VIDEO_ATI_SOURCE = xf86-video-ati-$(XDRIVER_XF86_VIDEO_ATI_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_ATI_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_ATI_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_ATI_DEPENDANCIES = xserver_xorg-server libdrm xproto_fontsproto xproto_glproto xproto_randrproto xproto_videoproto xproto_xextproto xproto_xf86driproto xproto_xf86miscproto xproto_xineramaproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-ati))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_CHIPS
+ bool "xf86-video-chips"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-chips 1.1.1
+ Chips and Technologies video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-chips -- Chips and Technologies video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_CHIPS_VERSION = 1.1.1
+XDRIVER_XF86_VIDEO_CHIPS_SOURCE = xf86-video-chips-$(XDRIVER_XF86_VIDEO_CHIPS_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_CHIPS_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_CHIPS_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_CHIPS_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-chips))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_CIRRUS
+ bool "xf86-video-cirrus"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-cirrus 1.1.0
+ Cirrus Logic video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-cirrus -- Cirrus Logic video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_CIRRUS_VERSION = 1.1.0
+XDRIVER_XF86_VIDEO_CIRRUS_SOURCE = xf86-video-cirrus-$(XDRIVER_XF86_VIDEO_CIRRUS_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_CIRRUS_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_CIRRUS_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_CIRRUS_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xextproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-cirrus))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_CYRIX
+ bool "xf86-video-cyrix"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XF86DGAPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-cyrix 1.1.0
+ Cyrix video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-cyrix -- Cyrix video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_CYRIX_VERSION = 1.1.0
+XDRIVER_XF86_VIDEO_CYRIX_SOURCE = xf86-video-cyrix-$(XDRIVER_XF86_VIDEO_CYRIX_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_CYRIX_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_CYRIX_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_CYRIX_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_xextproto xproto_xf86dgaproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-cyrix))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_DUMMY
+ bool "xf86-video-dummy"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XF86DGAPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-dummy 0.2.0
+ X.Org driver for dummy cards
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-dummy -- X.Org driver for dummy cards
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_DUMMY_VERSION = 0.2.0
+XDRIVER_XF86_VIDEO_DUMMY_SOURCE = xf86-video-dummy-$(XDRIVER_XF86_VIDEO_DUMMY_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_DUMMY_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_DUMMY_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_DUMMY_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xf86dgaproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-dummy))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_FBDEV
+ bool "xf86-video-fbdev"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-fbdev 0.3.1
+ video driver for framebuffer device
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-fbdev -- video driver for framebuffer device
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_FBDEV_VERSION = 0.3.1
+XDRIVER_XF86_VIDEO_FBDEV_SOURCE = xf86-video-fbdev-$(XDRIVER_XF86_VIDEO_FBDEV_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_FBDEV_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_FBDEV_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_FBDEV_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-fbdev))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_GLINT
+ bool "xf86-video-glint"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_LIBDRM
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_GLPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XF86DGAPROTO
+ select BR2_PACKAGE_XPROTO_XF86DRIPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-glint 1.1.1
+ GLINT/Permedia video driver
--- /dev/null
+--- xf86-video-glint-1.1.1/configure.ac.orig 2007-06-10 20:58:34.000000000 +0200
++++ xf86-video-glint-1.1.1/configure.ac 2007-06-10 20:58:58.000000000 +0200
+@@ -69,12 +69,18 @@
+ AC_HEADER_STDC
+
+ if test "$DRI" != no; then
++ if test "$cross_compiling" = "no" ; then
+ AC_CHECK_FILE([${sdkdir}/dri.h],
+ [have_dri_h="yes"], [have_dri_h="no"])
+ AC_CHECK_FILE([${sdkdir}/sarea.h],
+ [have_sarea_h="yes"], [have_sarea_h="no"])
+ AC_CHECK_FILE([${sdkdir}/dristruct.h],
+ [have_dristruct_h="yes"], [have_dristruct_h="no"])
++ else
++ have_dri_h="yes"
++ have_sarea_h="yes"
++ have_dristruct_h="yes"
++ fi
+ fi
+
+ AC_MSG_CHECKING([whether to include DRI support])
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-glint -- GLINT/Permedia video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_GLINT_VERSION = 1.1.1
+XDRIVER_XF86_VIDEO_GLINT_SOURCE = xf86-video-glint-$(XDRIVER_XF86_VIDEO_GLINT_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_GLINT_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_GLINT_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_GLINT_DEPENDANCIES = xserver_xorg-server libdrm xproto_fontsproto xproto_glproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xextproto xproto_xf86dgaproto xproto_xf86driproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-glint))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_I128
+ bool "xf86-video-i128"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-i128 1.2.1
+ Number 9 I128 video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-i128 -- Number 9 I128 video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_I128_VERSION = 1.2.1
+XDRIVER_XF86_VIDEO_I128_SOURCE = xf86-video-i128-$(XDRIVER_XF86_VIDEO_I128_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_I128_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_I128_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_I128_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xextproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-i128))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_I740
+ bool "xf86-video-i740"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-i740 1.1.0
+ Intel i740 video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-i740 -- Intel i740 video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_I740_VERSION = 1.1.0
+XDRIVER_XF86_VIDEO_I740_SOURCE = xf86-video-i740-$(XDRIVER_XF86_VIDEO_I740_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_I740_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_I740_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_I740_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xextproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-i740))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_I810
+ bool "xf86-video-i810"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_LIBDRM
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXVMC
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XF86DRIPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-i810 1.6.5
+ X.Org driver for Intel cards
--- /dev/null
+--- xf86-video-i810-1.6.5/configure.ac.orig 2007-06-10 20:59:27.000000000 +0200
++++ xf86-video-i810-1.6.5/configure.ac 2007-06-10 20:59:50.000000000 +0200
+@@ -80,12 +80,18 @@
+ AC_HEADER_STDC
+
+ if test "$DRI" != no; then
++ if test "$cross_compiling" = "no" ; then
+ AC_CHECK_FILE([${sdkdir}/dri.h],
+ [have_dri_h="yes"], [have_dri_h="no"])
+ AC_CHECK_FILE([${sdkdir}/sarea.h],
+ [have_sarea_h="yes"], [have_sarea_h="no"])
+ AC_CHECK_FILE([${sdkdir}/dristruct.h],
+ [have_dristruct_h="yes"], [have_dristruct_h="no"])
++ else
++ have_dri_h="yes"
++ have_sarea_h="yes"
++ have_dristruct_h="yes"
++ fi
+ fi
+
+ AC_MSG_CHECKING([whether to include DRI support])
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-i810 -- X.Org driver for Intel cards
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_I810_VERSION = 1.6.5
+XDRIVER_XF86_VIDEO_I810_SOURCE = xf86-video-i810-$(XDRIVER_XF86_VIDEO_I810_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_I810_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_I810_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_I810_DEPENDANCIES = xserver_xorg-server libdrm xlib_libX11 xlib_libXvMC xproto_fontsproto xproto_randrproto xproto_renderproto xproto_xextproto xproto_xf86driproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-i810))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_IMSTT
+ bool "xf86-video-imstt"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-imstt 1.1.0
+ Integrated Micro Solutions Twin Turbo 128 driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-imstt -- Integrated Micro Solutions Twin Turbo 128 driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_IMSTT_VERSION = 1.1.0
+XDRIVER_XF86_VIDEO_IMSTT_SOURCE = xf86-video-imstt-$(XDRIVER_XF86_VIDEO_IMSTT_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_IMSTT_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_IMSTT_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_IMSTT_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-imstt))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_MGA
+ bool "xf86-video-mga"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_LIBDRM
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_GLPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XF86DRIPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-mga 1.4.6.1
+ Matrox video driver
--- /dev/null
+--- xf86-video-mga-1.4.6.1/configure.ac.orig 2007-06-10 11:55:24.000000000 +0200
++++ xf86-video-mga-1.4.6.1/configure.ac 2007-06-10 12:00:37.000000000 +0200
+@@ -77,12 +77,18 @@
+ AC_HEADER_STDC
+
+ if test "x$DRI" != xno; then
++ if test "$cross_compiling" = no; then
+ AC_CHECK_FILE([${sdkdir}/dri.h],
+ [have_dri_h="yes"], [have_dri_h="no"])
+ AC_CHECK_FILE([${sdkdir}/sarea.h],
+ [have_sarea_h="yes"], [have_sarea_h="no"])
+ AC_CHECK_FILE([${sdkdir}/dristruct.h],
+ [have_dristruct_h="yes"], [have_dristruct_h="no"])
++ else
++ have_dri_h="yes"
++ have_sarea_h="yes"
++ have_dristruct_h="yes"
++ fi
+ fi
+
+ AC_MSG_CHECKING([whether to include DRI support])
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-mga -- Matrox video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_MGA_VERSION = 1.4.6.1
+XDRIVER_XF86_VIDEO_MGA_SOURCE = xf86-video-mga-$(XDRIVER_XF86_VIDEO_MGA_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_MGA_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_MGA_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_MGA_DEPENDANCIES = xserver_xorg-server libdrm xproto_fontsproto xproto_glproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xextproto xproto_xf86driproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-mga))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_NEOMAGIC
+ bool "xf86-video-neomagic"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XF86DGAPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-neomagic 1.1.1
+ Neomagic video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-neomagic -- Neomagic video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_NEOMAGIC_VERSION = 1.1.1
+XDRIVER_XF86_VIDEO_NEOMAGIC_SOURCE = xf86-video-neomagic-$(XDRIVER_XF86_VIDEO_NEOMAGIC_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_NEOMAGIC_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_NEOMAGIC_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_NEOMAGIC_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xextproto xproto_xf86dgaproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-neomagic))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_NEWPORT
+ bool "xf86-video-newport"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-newport 0.2.1
+ Newport video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-newport -- Newport video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_NEWPORT_VERSION = 0.2.1
+XDRIVER_XF86_VIDEO_NEWPORT_SOURCE = xf86-video-newport-$(XDRIVER_XF86_VIDEO_NEWPORT_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_NEWPORT_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_NEWPORT_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_NEWPORT_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-newport))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_NSC
+ bool "xf86-video-nsc"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XF86DGAPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-nsc 2.8.2
+ Nsc video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-nsc -- Nsc video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_NSC_VERSION = 2.8.2
+XDRIVER_XF86_VIDEO_NSC_SOURCE = xf86-video-nsc-$(XDRIVER_XF86_VIDEO_NSC_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_NSC_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_NSC_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_NSC_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xextproto xproto_xf86dgaproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-nsc))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_NV
+ bool "xf86-video-nv"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-nv 1.2.2.1
+ NVIDIA video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-nv -- NVIDIA video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_NV_VERSION = 1.2.2.1
+XDRIVER_XF86_VIDEO_NV_SOURCE = xf86-video-nv-$(XDRIVER_XF86_VIDEO_NV_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_NV_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_NV_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_NV_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xextproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-nv))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_RENDITION
+ bool "xf86-video-rendition"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-rendition 4.1.3
+ Rendition video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-rendition -- Rendition video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_RENDITION_VERSION = 4.1.3
+XDRIVER_XF86_VIDEO_RENDITION_SOURCE = xf86-video-rendition-$(XDRIVER_XF86_VIDEO_RENDITION_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_RENDITION_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_RENDITION_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_RENDITION_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_xextproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-rendition))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_S3
+ bool "xf86-video-s3"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-s3 0.5.0
+ X.Org driver for s3 cards
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-s3 -- X.Org driver for s3 cards
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_S3_VERSION = 0.5.0
+XDRIVER_XF86_VIDEO_S3_SOURCE = xf86-video-s3-$(XDRIVER_XF86_VIDEO_S3_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_S3_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_S3_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_S3_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xextproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-s3))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_S3VIRGE
+ bool "xf86-video-s3virge"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-s3virge 1.9.1
+ S3 ViRGE video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-s3virge -- S3 ViRGE video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_S3VIRGE_VERSION = 1.9.1
+XDRIVER_XF86_VIDEO_S3VIRGE_SOURCE = xf86-video-s3virge-$(XDRIVER_XF86_VIDEO_S3VIRGE_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_S3VIRGE_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_S3VIRGE_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_S3VIRGE_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xextproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-s3virge))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_SAVAGE
+ bool "xf86-video-savage"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_LIBDRM
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XF86DRIPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-savage 2.1.2
+ S3 Savage video driver
--- /dev/null
+--- xf86-video-savage-2.1.2/configure.ac.orig 2007-06-10 11:51:23.000000000 +0200
++++ xf86-video-savage-2.1.2/configure.ac 2007-06-10 11:52:46.000000000 +0200
+@@ -68,12 +68,18 @@
+ AC_HEADER_STDC
+
+ if test "$DRI" != no; then
++ if test "$cross_compiling" = no; then
+ AC_CHECK_FILE([${sdkdir}/dri.h],
+ [have_dri_h="yes"], [have_dri_h="no"])
+ AC_CHECK_FILE([${sdkdir}/sarea.h],
+ [have_sarea_h="yes"], [have_sarea_h="no"])
+ AC_CHECK_FILE([${sdkdir}/dristruct.h],
+ [have_dristruct_h="yes"], [have_dristruct_h="no"])
++ else
++ have_dri_h="yes"
++ have_sarea_h="yes"
++ have_dristruct_h="yes"
++ fi
+ fi
+
+ AC_MSG_CHECKING([whether to include DRI support])
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-savage -- S3 Savage video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_SAVAGE_VERSION = 2.1.2
+XDRIVER_XF86_VIDEO_SAVAGE_SOURCE = xf86-video-savage-$(XDRIVER_XF86_VIDEO_SAVAGE_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_SAVAGE_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_SAVAGE_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_SAVAGE_DEPENDANCIES = xserver_xorg-server libdrm xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xextproto xproto_xf86driproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-savage))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_SILICONMOTION
+ bool "xf86-video-siliconmotion"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-siliconmotion 1.4.2
+ Silicon Motion video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-siliconmotion -- Silicon Motion video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_SILICONMOTION_VERSION = 1.4.2
+XDRIVER_XF86_VIDEO_SILICONMOTION_SOURCE = xf86-video-siliconmotion-$(XDRIVER_XF86_VIDEO_SILICONMOTION_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_SILICONMOTION_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_SILICONMOTION_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_SILICONMOTION_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xextproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-siliconmotion))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_SIS
+ bool "xf86-video-sis"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_LIBDRM
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XF86DGAPROTO
+ select BR2_PACKAGE_XPROTO_XF86DRIPROTO
+ select BR2_PACKAGE_XPROTO_XF86MISCPROTO
+ select BR2_PACKAGE_XPROTO_XINERAMAPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-sis 0.9.3
+ SiS and XGI video driver
--- /dev/null
+--- xf86-video-sis-0.9.3/configure.ac.orig 2007-06-10 21:00:29.000000000 +0200
++++ xf86-video-sis-0.9.3/configure.ac 2007-06-10 21:00:45.000000000 +0200
+@@ -71,12 +71,18 @@
+ AC_HEADER_STDC
+
+ if test "$DRI" != no; then
++ if test "$cross_compiling" = "no" ; then
+ AC_CHECK_FILE([${sdkdir}/dri.h],
+ [have_dri_h="yes"], [have_dri_h="no"])
+ AC_CHECK_FILE([${sdkdir}/sarea.h],
+ [have_sarea_h="yes"], [have_sarea_h="no"])
+ AC_CHECK_FILE([${sdkdir}/dristruct.h],
+ [have_dristruct_h="yes"], [have_dristruct_h="no"])
++ else
++ have_dri_h="yes"
++ have_sarea_h="yes"
++ have_dristruct_h="yes"
++ fi
+ fi
+
+ AC_MSG_CHECKING([whether to include DRI support])
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-sis -- SiS and XGI video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_SIS_VERSION = 0.9.3
+XDRIVER_XF86_VIDEO_SIS_SOURCE = xf86-video-sis-$(XDRIVER_XF86_VIDEO_SIS_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_SIS_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_SIS_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_SIS_DEPENDANCIES = xserver_xorg-server libdrm xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xextproto xproto_xf86dgaproto xproto_xf86driproto xproto_xf86miscproto xproto_xineramaproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-sis))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_SISUSB
+ bool "xf86-video-sisusb"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XF86MISCPROTO
+ select BR2_PACKAGE_XPROTO_XINERAMAPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-sisusb 0.8.1
+ SiS USB video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-sisusb -- SiS USB video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_SISUSB_VERSION = 0.8.1
+XDRIVER_XF86_VIDEO_SISUSB_SOURCE = xf86-video-sisusb-$(XDRIVER_XF86_VIDEO_SISUSB_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_SISUSB_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_SISUSB_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_SISUSB_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xextproto xproto_xf86miscproto xproto_xineramaproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-sisusb))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_SUNBW2
+ bool "xf86-video-sunbw2"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-sunbw2 1.1.0
+ BW2 video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-sunbw2 -- BW2 video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_SUNBW2_VERSION = 1.1.0
+XDRIVER_XF86_VIDEO_SUNBW2_SOURCE = xf86-video-sunbw2-$(XDRIVER_XF86_VIDEO_SUNBW2_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_SUNBW2_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_SUNBW2_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_SUNBW2_DEPENDANCIES = xserver_xorg-server xproto_randrproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-sunbw2))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_SUNCG14
+ bool "xf86-video-suncg14"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-suncg14 1.1.0
+ CG14 video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-suncg14 -- CG14 video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_SUNCG14_VERSION = 1.1.0
+XDRIVER_XF86_VIDEO_SUNCG14_SOURCE = xf86-video-suncg14-$(XDRIVER_XF86_VIDEO_SUNCG14_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_SUNCG14_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_SUNCG14_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_SUNCG14_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-suncg14))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_SUNCG3
+ bool "xf86-video-suncg3"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-suncg3 1.1.0
+ CG3 video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-suncg3 -- CG3 video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_SUNCG3_VERSION = 1.1.0
+XDRIVER_XF86_VIDEO_SUNCG3_SOURCE = xf86-video-suncg3-$(XDRIVER_XF86_VIDEO_SUNCG3_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_SUNCG3_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_SUNCG3_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_SUNCG3_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-suncg3))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_SUNCG6
+ bool "xf86-video-suncg6"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-suncg6 1.1.0
+ GX/Turbo GX video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-suncg6 -- GX/Turbo GX video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_SUNCG6_VERSION = 1.1.0
+XDRIVER_XF86_VIDEO_SUNCG6_SOURCE = xf86-video-suncg6-$(XDRIVER_XF86_VIDEO_SUNCG6_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_SUNCG6_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_SUNCG6_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_SUNCG6_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-suncg6))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_SUNFFB
+ bool "xf86-video-sunffb"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_LIBDRM
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XF86DRIPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-sunffb 1.1.0
+ SUNFFB video driver
--- /dev/null
+--- xf86-video-sunffb-1.1.0/configure.ac.orig 2007-06-10 21:01:18.000000000 +0200
++++ xf86-video-sunffb-1.1.0/configure.ac 2007-06-10 21:01:34.000000000 +0200
+@@ -72,13 +72,20 @@
+ # Checks for header files.
+ AC_HEADER_STDC
+
+-if test "$DRI" != no; then
++if test "x$DRI" != xno; then
++ if test "$cross_compiling" = "no" ; then
+ AC_CHECK_FILE([${sdkdir}/dri.h],
+ [have_dri_h="yes"], [have_dri_h="no"])
+ AC_CHECK_FILE([${sdkdir}/sarea.h],
+ [have_sarea_h="yes"], [have_sarea_h="no"])
+ AC_CHECK_FILE([${sdkdir}/dristruct.h],
+ [have_dristruct_h="yes"], [have_dristruct_h="no"])
++ AC_CHECK_HEADER
++ else
++ have_dri_h="yes"
++ have_sarea_h="yes"
++ have_dristruct_h="yes"
++ fi
+ fi
+
+ AC_MSG_CHECKING([whether to include DRI support])
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-sunffb -- SUNFFB video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_SUNFFB_VERSION = 1.1.0
+XDRIVER_XF86_VIDEO_SUNFFB_SOURCE = xf86-video-sunffb-$(XDRIVER_XF86_VIDEO_SUNFFB_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_SUNFFB_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_SUNFFB_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_SUNFFB_DEPENDANCIES = xserver_xorg-server libdrm xproto_fontsproto xproto_randrproto xproto_renderproto xproto_xextproto xproto_xf86driproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-sunffb))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_SUNLEO
+ bool "xf86-video-sunleo"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-sunleo 1.1.0
+ Leo video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-sunleo -- Leo video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_SUNLEO_VERSION = 1.1.0
+XDRIVER_XF86_VIDEO_SUNLEO_SOURCE = xf86-video-sunleo-$(XDRIVER_XF86_VIDEO_SUNLEO_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_SUNLEO_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_SUNLEO_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_SUNLEO_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-sunleo))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_SUNTCX
+ bool "xf86-video-suntcx"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-suntcx 1.1.0
+ TCX video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-suntcx -- TCX video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_SUNTCX_VERSION = 1.1.0
+XDRIVER_XF86_VIDEO_SUNTCX_SOURCE = xf86-video-suntcx-$(XDRIVER_XF86_VIDEO_SUNTCX_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_SUNTCX_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_SUNTCX_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_SUNTCX_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-suntcx))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_TDFX
+ bool "xf86-video-tdfx"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_LIBDRM
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XF86DRIPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-tdfx 1.3.0
+ 3Dfx video driver
--- /dev/null
+--- xf86-video-tdfx-1.3.0/configure.ac.orig 2007-06-10 21:01:54.000000000 +0200
++++ xf86-video-tdfx-1.3.0/configure.ac 2007-06-10 21:02:06.000000000 +0200
+@@ -67,13 +67,20 @@
+ # Checks for header files.
+ AC_HEADER_STDC
+
+-if test "$DRI" != no; then
++if test "x$DRI" != xno; then
++ if test "$cross_compiling" = "no" ; then
+ AC_CHECK_FILE([${sdkdir}/dri.h],
+ [have_dri_h="yes"], [have_dri_h="no"])
+ AC_CHECK_FILE([${sdkdir}/sarea.h],
+ [have_sarea_h="yes"], [have_sarea_h="no"])
+ AC_CHECK_FILE([${sdkdir}/dristruct.h],
+ [have_dristruct_h="yes"], [have_dristruct_h="no"])
++ AC_CHECK_HEADER
++ else
++ have_dri_h="yes"
++ have_sarea_h="yes"
++ have_dristruct_h="yes"
++ fi
+ fi
+
+ AC_MSG_CHECKING([whether to include DRI support])
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-tdfx -- 3Dfx video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_TDFX_VERSION = 1.3.0
+XDRIVER_XF86_VIDEO_TDFX_SOURCE = xf86-video-tdfx-$(XDRIVER_XF86_VIDEO_TDFX_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_TDFX_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_TDFX_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_TDFX_DEPENDANCIES = xserver_xorg-server libdrm xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xextproto xproto_xf86driproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-tdfx))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_TGA
+ bool "xf86-video-tga"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XF86DGAPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-tga 1.1.0
+ X.Org driver for tga cards
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-tga -- X.Org driver for tga cards
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_TGA_VERSION = 1.1.0
+XDRIVER_XF86_VIDEO_TGA_SOURCE = xf86-video-tga-$(XDRIVER_XF86_VIDEO_TGA_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_TGA_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_TGA_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_TGA_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xextproto xproto_xf86dgaproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-tga))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_TRIDENT
+ bool "xf86-video-trident"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XF86DGAPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-trident 1.2.3
+ Trident video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-trident -- Trident video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_TRIDENT_VERSION = 1.2.3
+XDRIVER_XF86_VIDEO_TRIDENT_SOURCE = xf86-video-trident-$(XDRIVER_XF86_VIDEO_TRIDENT_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_TRIDENT_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_TRIDENT_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_TRIDENT_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xextproto xproto_xf86dgaproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-trident))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_TSENG
+ bool "xf86-video-tseng"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-tseng 1.1.1
+ Tseng Labs video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-tseng -- Tseng Labs video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_TSENG_VERSION = 1.1.1
+XDRIVER_XF86_VIDEO_TSENG_SOURCE = xf86-video-tseng-$(XDRIVER_XF86_VIDEO_TSENG_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_TSENG_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_TSENG_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_TSENG_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_videoproto xproto_xextproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-tseng))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_V4L
+ bool "xf86-video-v4l"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-v4l 0.1.1
+ video4linux driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-v4l -- video4linux driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_V4L_VERSION = 0.1.1
+XDRIVER_XF86_VIDEO_V4L_SOURCE = xf86-video-v4l-$(XDRIVER_XF86_VIDEO_V4L_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_V4L_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_V4L_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_V4L_DEPENDANCIES = xserver_xorg-server xproto_randrproto xproto_videoproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-v4l))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_VESA
+ bool "xf86-video-vesa"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-vesa 1.3.0
+ Generic VESA video driver
--- /dev/null
+--- xf86-video-vesa-1.3.0/configure.ac.orig 2007-06-11 13:10:35.000000000 +0200
++++ xf86-video-vesa-1.3.0/configure.ac 2007-06-11 14:16:45.000000000 +0200
+@@ -56,8 +56,8 @@
+ PKG_CHECK_MODULES(XORG, xorg-server >= 1.0.99.901 xproto fontsproto $REQUIRED_MODULES)
+ sdkdir=$(pkg-config --variable=sdkdir xorg-server)
+
+-CFLAGS="$CFLAGS $XORG_CFLAGS "' -I$(top_srcdir)/src'
+-INCLUDES="$XORG_INCS -I${sdkdir} "'-I$(top_srcdir)/src -I$(prefix)/include'
++CFLAGS="$CFLAGS $XORG_CFLAGS "'-I$(top_srcdir)/src'
++INCLUDES="$XORG_INCS "'-I$(top_srcdir)/src'
+ AC_SUBST([CFLAGS])
+ AC_SUBST([INCLUDES])
+
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-vesa -- Generic VESA video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_VESA_VERSION = 1.3.0
+XDRIVER_XF86_VIDEO_VESA_SOURCE = xf86-video-vesa-$(XDRIVER_XF86_VIDEO_VESA_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_VESA_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_VESA_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_VESA_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_xextproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-vesa))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_VGA
+ bool "xf86-video-vga"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-vga 4.1.0
+ Generic VGA video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-vga -- Generic VGA video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_VGA_VERSION = 4.1.0
+XDRIVER_XF86_VIDEO_VGA_SOURCE = xf86-video-vga-$(XDRIVER_XF86_VIDEO_VGA_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_VGA_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_VGA_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_VGA_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_xextproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-vga))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_VIA
+ bool "xf86-video-via"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_LIBDRM
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXVMC
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_GLPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XF86DRIPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-via 0.2.2
+ VIA unichrome graphics driver
--- /dev/null
+--- xf86-video-via-0.2.2/configure.ac.orig 2007-06-10 14:41:40.000000000 +0200
++++ xf86-video-via-0.2.2/configure.ac 2007-06-10 14:41:48.000000000 +0200
+@@ -71,6 +71,7 @@
+
+
+ if test "x$DRI" != xno; then
++ if test "$cross_compiling" = "no" ; then
+ AC_CHECK_FILE([${sdkdir}/dri.h],
+ [have_dri_h="yes"], [have_dri_h="no"])
+ AC_CHECK_FILE([${sdkdir}/sarea.h],
+@@ -78,6 +79,11 @@
+ AC_CHECK_FILE([${sdkdir}/dristruct.h],
+ [have_dristruct_h="yes"], [have_dristruct_h="no"])
+ AC_CHECK_HEADER
++ else
++ have_dri_h="yes"
++ have_sarea_h="yes"
++ have_dristruct_h="yes"
++ fi
+ fi
+
+ AC_MSG_CHECKING([whether to include DRI support])
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-via -- VIA unichrome graphics driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_VIA_VERSION = 0.2.2
+XDRIVER_XF86_VIDEO_VIA_SOURCE = xf86-video-via-$(XDRIVER_XF86_VIDEO_VIA_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_VIA_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_VIA_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_VIA_DEPENDANCIES = xserver_xorg-server libdrm xlib_libX11 xlib_libXvMC xproto_fontsproto xproto_glproto xproto_randrproto xproto_renderproto xproto_xextproto xproto_xf86driproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-via))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_VMWARE
+ bool "xf86-video-vmware"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XINERAMAPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-vmware 10.14.1
+ VMware SVGA video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-vmware -- VMware SVGA video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_VMWARE_VERSION = 10.14.1
+XDRIVER_XF86_VIDEO_VMWARE_SOURCE = xf86-video-vmware-$(XDRIVER_XF86_VIDEO_VMWARE_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_VMWARE_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_VMWARE_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_VMWARE_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_xextproto xproto_xineramaproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-vmware))
--- /dev/null
+config BR2_PACKAGE_XDRIVER_XF86_VIDEO_VOODOO
+ bool "xf86-video-voodoo"
+ default n
+ select BR2_PACKAGE_XSERVER_XORG_SERVER
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XF86DGAPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xf86-video-voodoo 1.1.1
+ Voodoo video driver
--- /dev/null
+################################################################################
+#
+# xdriver_xf86-video-voodoo -- Voodoo video driver
+#
+################################################################################
+
+XDRIVER_XF86_VIDEO_VOODOO_VERSION = 1.1.1
+XDRIVER_XF86_VIDEO_VOODOO_SOURCE = xf86-video-voodoo-$(XDRIVER_XF86_VIDEO_VOODOO_VERSION).tar.bz2
+XDRIVER_XF86_VIDEO_VOODOO_SITE = http://xorg.freedesktop.org/releases/individual/driver
+XDRIVER_XF86_VIDEO_VOODOO_AUTORECONF = YES
+XDRIVER_XF86_VIDEO_VOODOO_DEPENDANCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_xextproto xproto_xf86dgaproto xproto_xproto
+
+$(eval $(call AUTOTARGETS,xdriver_xf86-video-voodoo))
--- /dev/null
+config BR2_PACKAGE_XFONT_ENCODINGS
+ bool "encodings"
+ default n
+ help
+ encodings 1.0.2
+ No description available
--- /dev/null
+--- encodings-1.0.2/large/Makefile.am.orig 2007-06-08 16:28:01.000000000 +0200
++++ encodings-1.0.2/large/Makefile.am 2007-06-08 16:28:15.000000000 +0200
+@@ -37,6 +37,6 @@
+ @GZIP@ -c < $< > $@
+
+ encodings.dir: $(DATA_FILES)
+- @MKFONTSCALE@ -b -s -l -n -r -p $(encodingsdir) -e . .
++ $(MKFONTSCALE) -b -s -l -n -r -p $(encodingsdir) -e . .
+
+ encodings_DATA = $(DATA_FILES) encodings.dir
+--- encodings-1.0.2/Makefile.am.orig 2007-06-08 16:28:36.000000000 +0200
++++ encodings-1.0.2/Makefile.am 2007-06-08 16:28:43.000000000 +0200
+@@ -56,7 +56,7 @@
+ @GZIP@ -c < $< > $@
+
+ encodings.dir: $(DATA_FILES)
+- @MKFONTSCALE@ -b -s -l -n -r -p $(encodingsdir) -e . -e large .
++ $(MKFONTSCALE) -b -s -l -n -r -p $(encodingsdir) -e . -e large .
+
+ encodings_DATA = $(DATA_FILES) encodings.dir
+
--- /dev/null
+################################################################################
+#
+# xfont_encodings -- No description available
+#
+################################################################################
+
+XFONT_ENCODINGS_VERSION = 1.0.2
+XFONT_ENCODINGS_SOURCE = encodings-$(XFONT_ENCODINGS_VERSION).tar.bz2
+XFONT_ENCODINGS_SITE = http://xorg.freedesktop.org/releases/individual/font
+XFONT_ENCODINGS_AUTORECONF = YES
+XFONT_ENCODINGS_MAKE_OPT =
+
+$(eval $(call AUTOTARGETS,xfont_encodings))
--- /dev/null
+config BR2_PACKAGE_XFONT_FONT_ADOBE_UTOPIA_TYPE1
+ bool "font-adobe-utopia-type1"
+ default n
+ help
+ font-adobe-utopia-type1 1.0.1
+ No description available
--- /dev/null
+################################################################################
+#
+# xfont_font-adobe-utopia-type1 -- No description available
+#
+################################################################################
+
+XFONT_FONT_ADOBE_UTOPIA_TYPE1_VERSION = 1.0.1
+XFONT_FONT_ADOBE_UTOPIA_TYPE1_SOURCE = font-adobe-utopia-type1-$(XFONT_FONT_ADOBE_UTOPIA_TYPE1_VERSION).tar.bz2
+XFONT_FONT_ADOBE_UTOPIA_TYPE1_SITE = http://xorg.freedesktop.org/releases/individual/font
+XFONT_FONT_ADOBE_UTOPIA_TYPE1_AUTORECONF = YES
+XFONT_FONT_ADOBE_UTOPIA_TYPE1_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) MKFONTSCALE=/usr/bin/mkfontscale MKFONTDIR=/usr/bin/mkfontdir FCCACHE=/usr/bin/fc-cache install
+XFONT_FONT_ADOBE_UTOPIA_TYPE1_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) MKFONTSCALE=/usr/bin/mkfontscale MKFONTDIR=/usr/bin/mkfontdir FCCACHE=/usr/bin/fc-cache install-data
+
+$(eval $(call AUTOTARGETS,xfont_font-adobe-utopia-type1))
--- /dev/null
+config BR2_PACKAGE_XFONT_FONT_BITSTREAM_TYPE1
+ bool "font-bitstream-type1"
+ default n
+ help
+ font-bitstream-type1 1.0.0
+ No description available
--- /dev/null
+################################################################################
+#
+# xfont_font-bitstream-type1 -- No description available
+#
+################################################################################
+
+XFONT_FONT_BITSTREAM_TYPE1_VERSION = 1.0.0
+XFONT_FONT_BITSTREAM_TYPE1_SOURCE = font-bitstream-type1-$(XFONT_FONT_BITSTREAM_TYPE1_VERSION).tar.bz2
+XFONT_FONT_BITSTREAM_TYPE1_SITE = http://xorg.freedesktop.org/releases/individual/font
+XFONT_FONT_BITSTREAM_TYPE1_AUTORECONF = YES
+XFONT_FONT_BITSTREAM_TYPE1_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) MKFONTSCALE=/usr/bin/mkfontscale MKFONTDIR=/usr/bin/mkfontdir FCCACHE=/usr/bin/fc-cache install
+XFONT_FONT_BITSTREAM_TYPE1_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) MKFONTSCALE=/usr/bin/mkfontscale MKFONTDIR=/usr/bin/mkfontdir FCCACHE=/usr/bin/fc-cache install-data
+
+$(eval $(call AUTOTARGETS,xfont_font-bitstream-type1))
--- /dev/null
+config BR2_PACKAGE_XFONT_FONT_IBM_TYPE1
+ bool "font-ibm-type1"
+ default n
+ help
+ font-ibm-type1 1.0.0
+ No description available
--- /dev/null
+################################################################################
+#
+# xfont_font-ibm-type1 -- No description available
+#
+################################################################################
+
+XFONT_FONT_IBM_TYPE1_VERSION = 1.0.0
+XFONT_FONT_IBM_TYPE1_SOURCE = font-ibm-type1-$(XFONT_FONT_IBM_TYPE1_VERSION).tar.bz2
+XFONT_FONT_IBM_TYPE1_SITE = http://xorg.freedesktop.org/releases/individual/font
+XFONT_FONT_IBM_TYPE1_AUTORECONF = YES
+XFONT_FONT_IBM_TYPE1_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) MKFONTSCALE=/usr/bin/mkfontscale MKFONTDIR=/usr/bin/mkfontdir FCCACHE=/usr/bin/fc-cache install
+XFONT_FONT_IBM_TYPE1_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) MKFONTSCALE=/usr/bin/mkfontscale MKFONTDIR=/usr/bin/mkfontdir FCCACHE=/usr/bin/fc-cache install-data
+
+$(eval $(call AUTOTARGETS,xfont_font-ibm-type1))
--- /dev/null
+config BR2_PACKAGE_XFONT_FONT_XFREE86_TYPE1
+ bool "font-xfree86-type1"
+ default n
+ help
+ font-xfree86-type1 1.0.0
+ No description available
--- /dev/null
+################################################################################
+#
+# xfont_font-xfree86-type1 -- No description available
+#
+################################################################################
+
+XFONT_FONT_XFREE86_TYPE1_VERSION = 1.0.0
+XFONT_FONT_XFREE86_TYPE1_SOURCE = font-xfree86-type1-$(XFONT_FONT_XFREE86_TYPE1_VERSION).tar.bz2
+XFONT_FONT_XFREE86_TYPE1_SITE = http://xorg.freedesktop.org/releases/individual/font
+XFONT_FONT_XFREE86_TYPE1_AUTORECONF = YES
+XFONT_FONT_XFREE86_TYPE1_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) MKFONTSCALE=/usr/bin/mkfontscale MKFONTDIR=/usr/bin/mkfontdir FCCACHE=/usr/bin/fc-cache install
+XFONT_FONT_XFREE86_TYPE1_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) MKFONTSCALE=/usr/bin/mkfontscale MKFONTDIR=/usr/bin/mkfontdir FCCACHE=/usr/bin/fc-cache install-data
+
+$(eval $(call AUTOTARGETS,xfont_font-xfree86-type1))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBFS
+ bool "libFS"
+ default n
+ select BR2_PACKAGE_XLIB_XTRANS
+ select BR2_PACKAGE_XPROTO_XPROTO
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ help
+ libFS 1.0.0
+ X.Org FS library
--- /dev/null
+################################################################################
+#
+# xlib_libFS -- X.Org FS library
+#
+################################################################################
+
+XLIB_LIBFS_VERSION = 1.0.0
+XLIB_LIBFS_SOURCE = libFS-$(XLIB_LIBFS_VERSION).tar.bz2
+XLIB_LIBFS_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBFS_AUTORECONF = YES
+XLIB_LIBFS_INSTALL_STAGING = YES
+XLIB_LIBFS_DEPENDANCIES = xlib_xtrans xproto_xproto xproto_fontsproto
+XLIB_LIBFS_CONF_OPT = --disable-malloc0returnsnull --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libFS))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBICE
+ bool "libICE"
+ default n
+ select BR2_PACKAGE_XLIB_XTRANS
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libICE 1.0.3
+ X.Org ICE library
--- /dev/null
+################################################################################
+#
+# xlib_libICE -- X.Org ICE library
+#
+################################################################################
+
+XLIB_LIBICE_VERSION = 1.0.3
+XLIB_LIBICE_SOURCE = libICE-$(XLIB_LIBICE_VERSION).tar.bz2
+XLIB_LIBICE_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBICE_AUTORECONF = YES
+XLIB_LIBICE_INSTALL_STAGING = YES
+XLIB_LIBICE_DEPENDANCIES = xlib_xtrans xproto_xproto
+XLIB_LIBICE_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libICE))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBSM
+ bool "libSM"
+ default n
+ select BR2_PACKAGE_XLIB_LIBICE
+ select BR2_PACKAGE_XLIB_XTRANS
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libSM 1.0.2
+ X.Org SM library
--- /dev/null
+################################################################################
+#
+# xlib_libSM -- X.Org SM library
+#
+################################################################################
+
+XLIB_LIBSM_VERSION = 1.0.2
+XLIB_LIBSM_SOURCE = libSM-$(XLIB_LIBSM_VERSION).tar.bz2
+XLIB_LIBSM_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBSM_AUTORECONF = YES
+XLIB_LIBSM_INSTALL_STAGING = YES
+XLIB_LIBSM_DEPENDANCIES = xlib_libICE xlib_xtrans xproto_xproto
+XLIB_LIBSM_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libSM))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBX11
+ bool "libX11"
+ default n
+ select BR2_PACKAGE_LIBXCB
+ select BR2_PACKAGE_XUTIL_UTIL_MACROS
+ select BR2_PACKAGE_XLIB_XTRANS
+ select BR2_PACKAGE_XLIB_LIBXAU
+ select BR2_PACKAGE_XLIB_LIBXDMCP
+ select BR2_PACKAGE_XPROTO_KBPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_XF86BIGFONTPROTO
+ select BR2_PACKAGE_XPROTO_BIGREQSPROTO
+ select BR2_PACKAGE_XPROTO_XCMISCPROTO
+ help
+ libX11 1.1.1
+ X.Org X11 library
--- /dev/null
+--- libX11-1.1.1/configure.ac.orig 2006-12-01 02:50:11.000000000 +0100
++++ libX11-1.1.1/configure.ac 2007-06-08 15:20:02.000000000 +0200
+@@ -7,6 +7,8 @@
+ [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
+ libX11)
+ AC_CONFIG_SRCDIR([Makefile.am])
++AC_CANONICAL_BUILD
++AC_CANONICAL_HOST
+ AM_INIT_AUTOMAKE([dist-bzip2 foreign])
+
+ AM_MAINTAINER_MODE
+@@ -18,6 +20,15 @@
+ AC_PROG_LIBTOOL
+ AC_PROG_CC
+
++AC_MSG_CHECKING([for CC_FOR_BUILD])
++if test x$host != x$build ; then
++ CC_FOR_BUILD=${CC_FOR_BUILD-gcc}
++else
++ CC_FOR_BUILD=${CC}
++fi
++AC_MSG_RESULT([$CC_FOR_BUILD])
++AC_SUBST(CC_FOR_BUILD)
++
+ XORG_PROG_RAWCPP
+
+ # Build with XCB support?
+--- libX11-1.1.1/src/util/Makefile.am.orig 2006-10-04 19:43:17.000000000 +0200
++++ libX11-1.1.1/src/util/Makefile.am 2007-06-08 15:20:42.000000000 +0200
+@@ -5,7 +5,15 @@
+ makekeys_CFLAGS=$(X11_CFLAGS)
+
+ #override CC = gcc
+-LINK = $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
++COMPILE = $(CC_FOR_BUILD) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
++ $(AM_CPPFLAGS) $(CPPFLAGS_FOR_BUILD) $(AM_CFLAGS) $(CFLAGS_FOR_BUILD)
++LINK = $(CC_FOR_BUILD) $(AM_CFLAGS) $(AM_LDFLAGS) $(LDFLAGS_FOR_BUILD) -o $@
++
++$(srcdir)/makekeys-makekeys.o:
++ $(COMPILE) -c $< -o $@
++
++$(srcdir)/makekeys: $(srcdir)/makekeys-makekeys.o
++ $(LINK) $< -o $@
+
+ EXTRA_DIST = mkks.sh
+
--- /dev/null
+################################################################################
+#
+# xlib_libX11 -- X.Org X11 library
+#
+################################################################################
+
+XLIB_LIBX11_VERSION = 1.1.1
+XLIB_LIBX11_SOURCE = libX11-$(XLIB_LIBX11_VERSION).tar.bz2
+XLIB_LIBX11_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBX11_AUTORECONF = YES
+XLIB_LIBX11_INSTALL_STAGING = YES
+XLIB_LIBX11_DEPENDANCIES = libxcb xutil_util-macros xlib_xtrans xlib_libXau xlib_libXdmcp xproto_kbproto xproto_xproto xproto_xextproto xproto_inputproto xproto_xf86bigfontproto xproto_bigreqsproto xproto_xcmiscproto
+XLIB_LIBX11_CONF_ENV = ac_cv_func_mmap_fixed_mapped=yes CC_FOR_BUILD="/usr/bin/gcc -I$(STAGING_DIR)/usr/include"
+XLIB_LIBX11_CONF_OPT = --disable-malloc0returnsnull --with-xcb --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libX11))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXSCRNSAVER
+ bool "libXScrnSaver"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XPROTO_SCRNSAVERPROTO
+ help
+ libXScrnSaver 1.1.2
+ X.Org XScrnSaver library
--- /dev/null
+################################################################################
+#
+# xlib_libXScrnSaver -- X.Org XScrnSaver library
+#
+################################################################################
+
+XLIB_LIBXSCRNSAVER_VERSION = 1.1.2
+XLIB_LIBXSCRNSAVER_SOURCE = libXScrnSaver-$(XLIB_LIBXSCRNSAVER_VERSION).tar.bz2
+XLIB_LIBXSCRNSAVER_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXSCRNSAVER_AUTORECONF = YES
+XLIB_LIBXSCRNSAVER_INSTALL_STAGING = YES
+XLIB_LIBXSCRNSAVER_DEPENDANCIES = xlib_libX11 xlib_libXext xproto_scrnsaverproto
+XLIB_LIBXSCRNSAVER_CONF_OPT = --disable-malloc0returnsnull --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXScrnSaver))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXTRAP
+ bool "libXTrap"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXT
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XPROTO_TRAPPROTO
+ help
+ libXTrap 1.0.0
+ X.Org XTrap library
--- /dev/null
+################################################################################
+#
+# xlib_libXTrap -- X.Org XTrap library
+#
+################################################################################
+
+XLIB_LIBXTRAP_VERSION = 1.0.0
+XLIB_LIBXTRAP_SOURCE = libXTrap-$(XLIB_LIBXTRAP_VERSION).tar.bz2
+XLIB_LIBXTRAP_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXTRAP_AUTORECONF = YES
+XLIB_LIBXTRAP_INSTALL_STAGING = YES
+XLIB_LIBXTRAP_DEPENDANCIES = xlib_libX11 xlib_libXt xlib_libXext xproto_trapproto
+XLIB_LIBXTRAP_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXTrap))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXAU
+ bool "libXau"
+ default n
+ select BR2_PACKAGE_XPROTO_XPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ select BR2_PACKAGE_XUTIL_UTIL_MACROS
+ help
+ libXau 1.0.3
+ X.Org Xau library
--- /dev/null
+################################################################################
+#
+# xlib_libXau -- X.Org Xau library
+#
+################################################################################
+
+XLIB_LIBXAU_VERSION = 1.0.3
+XLIB_LIBXAU_SOURCE = libXau-$(XLIB_LIBXAU_VERSION).tar.bz2
+XLIB_LIBXAU_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXAU_AUTORECONF = YES
+XLIB_LIBXAU_INSTALL_STAGING = YES
+XLIB_LIBXAU_DEPENDANCIES = xproto_xproto xproto_xproto xutil_util-macros
+XLIB_LIBXAU_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXau))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXAW
+ bool "libXaw"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXT
+ select BR2_PACKAGE_XLIB_LIBXMU
+ select BR2_PACKAGE_XLIB_LIBXPM
+ select BR2_PACKAGE_XPROTO_XPROTO
+ select BR2_PACKAGE_XLIB_LIBXP
+ help
+ libXaw 1.0.2
+ X.Org Xaw library
--- /dev/null
+################################################################################
+#
+# xlib_libXaw -- X.Org Xaw library
+#
+################################################################################
+
+XLIB_LIBXAW_VERSION = 1.0.2
+XLIB_LIBXAW_SOURCE = libXaw-$(XLIB_LIBXAW_VERSION).tar.bz2
+XLIB_LIBXAW_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXAW_AUTORECONF = YES
+XLIB_LIBXAW_INSTALL_STAGING = YES
+XLIB_LIBXAW_DEPENDANCIES = xlib_libX11 xlib_libXt xlib_libXmu xlib_libXpm xproto_xproto xlib_libXp
+XLIB_LIBXAW_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXaw))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXCOMPOSITE
+ bool "libXcomposite"
+ default n
+ select BR2_PACKAGE_XPROTO_COMPOSITEPROTO
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XLIB_LIBXFIXES
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libXcomposite 0.3.1
+ X.Org Xcomposite library
--- /dev/null
+################################################################################
+#
+# xlib_libXcomposite -- X.Org Xcomposite library
+#
+################################################################################
+
+XLIB_LIBXCOMPOSITE_VERSION = 0.3.1
+XLIB_LIBXCOMPOSITE_SOURCE = libXcomposite-$(XLIB_LIBXCOMPOSITE_VERSION).tar.bz2
+XLIB_LIBXCOMPOSITE_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXCOMPOSITE_AUTORECONF = YES
+XLIB_LIBXCOMPOSITE_INSTALL_STAGING = YES
+XLIB_LIBXCOMPOSITE_DEPENDANCIES = xproto_compositeproto xlib_libX11 xlib_libXext xlib_libXfixes xproto_xproto
+XLIB_LIBXCOMPOSITE_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXcomposite))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXCURSOR
+ bool "libXcursor"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXFIXES
+ select BR2_PACKAGE_XLIB_LIBXRENDER
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libXcursor 1.1.8
+ X.Org Xcursor library
--- /dev/null
+################################################################################
+#
+# xlib_libXcursor -- X.Org Xcursor library
+#
+################################################################################
+
+XLIB_LIBXCURSOR_VERSION = 1.1.8
+XLIB_LIBXCURSOR_SOURCE = libXcursor-$(XLIB_LIBXCURSOR_VERSION).tar.bz2
+XLIB_LIBXCURSOR_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXCURSOR_AUTORECONF = YES
+XLIB_LIBXCURSOR_INSTALL_STAGING = YES
+XLIB_LIBXCURSOR_DEPENDANCIES = xlib_libX11 xlib_libXfixes xlib_libXrender xproto_xproto
+XLIB_LIBXCURSOR_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXcursor))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXDAMAGE
+ bool "libXdamage"
+ default n
+ select BR2_PACKAGE_XPROTO_DAMAGEPROTO
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXFIXES
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libXdamage 1.0.4
+ X.Org Xdamage library
--- /dev/null
+################################################################################
+#
+# xlib_libXdamage -- X.Org Xdamage library
+#
+################################################################################
+
+XLIB_LIBXDAMAGE_VERSION = 1.0.4
+XLIB_LIBXDAMAGE_SOURCE = libXdamage-$(XLIB_LIBXDAMAGE_VERSION).tar.bz2
+XLIB_LIBXDAMAGE_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXDAMAGE_AUTORECONF = YES
+XLIB_LIBXDAMAGE_INSTALL_STAGING = YES
+XLIB_LIBXDAMAGE_DEPENDANCIES = xproto_damageproto xlib_libX11 xlib_libXfixes xproto_xproto
+XLIB_LIBXDAMAGE_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXdamage))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXDMCP
+ bool "libXdmcp"
+ default n
+ select BR2_PACKAGE_XUTIL_UTIL_MACROS
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libXdmcp 1.0.2
+ X.Org Xdmcp library
--- /dev/null
+################################################################################
+#
+# xlib_libXdmcp -- X.Org Xdmcp library
+#
+################################################################################
+
+XLIB_LIBXDMCP_VERSION = 1.0.2
+XLIB_LIBXDMCP_SOURCE = libXdmcp-$(XLIB_LIBXDMCP_VERSION).tar.bz2
+XLIB_LIBXDMCP_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXDMCP_AUTORECONF = YES
+XLIB_LIBXDMCP_INSTALL_STAGING = YES
+XLIB_LIBXDMCP_DEPENDANCIES = xutil_util-macros xproto_xproto
+XLIB_LIBXDMCP_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXdmcp))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXEVIE
+ bool "libXevie"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XPROTO_EVIEEXT
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libXevie 1.0.2
+ X.Org Xevie library
--- /dev/null
+################################################################################
+#
+# xlib_libXevie -- X.Org Xevie library
+#
+################################################################################
+
+XLIB_LIBXEVIE_VERSION = 1.0.2
+XLIB_LIBXEVIE_SOURCE = libXevie-$(XLIB_LIBXEVIE_VERSION).tar.bz2
+XLIB_LIBXEVIE_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXEVIE_AUTORECONF = YES
+XLIB_LIBXEVIE_INSTALL_STAGING = YES
+XLIB_LIBXEVIE_DEPENDANCIES = xlib_libX11 xlib_libXext xproto_evieext xproto_xproto
+XLIB_LIBXEVIE_CONF_OPT = --disable-malloc0returnsnull --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXevie))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXEXT
+ bool "libXext"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libXext 1.0.2
+ X.Org Xext library
--- /dev/null
+################################################################################
+#
+# xlib_libXext -- X.Org Xext library
+#
+################################################################################
+
+XLIB_LIBXEXT_VERSION = 1.0.2
+XLIB_LIBXEXT_SOURCE = libXext-$(XLIB_LIBXEXT_VERSION).tar.bz2
+XLIB_LIBXEXT_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXEXT_AUTORECONF = YES
+XLIB_LIBXEXT_INSTALL_STAGING = YES
+XLIB_LIBXEXT_DEPENDANCIES = xlib_libX11 xproto_xextproto xproto_xproto
+XLIB_LIBXEXT_CONF_OPT = --disable-malloc0returnsnull --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXext))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXFIXES
+ bool "libXfixes"
+ default n
+ select BR2_PACKAGE_XPROTO_FIXESPROTO
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libXfixes 4.0.3
+ X.Org Xfixes library
--- /dev/null
+################################################################################
+#
+# xlib_libXfixes -- X.Org Xfixes library
+#
+################################################################################
+
+XLIB_LIBXFIXES_VERSION = 4.0.3
+XLIB_LIBXFIXES_SOURCE = libXfixes-$(XLIB_LIBXFIXES_VERSION).tar.bz2
+XLIB_LIBXFIXES_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXFIXES_AUTORECONF = YES
+XLIB_LIBXFIXES_INSTALL_STAGING = YES
+XLIB_LIBXFIXES_DEPENDANCIES = xproto_fixesproto xlib_libX11 xproto_xextproto xproto_xproto
+XLIB_LIBXFIXES_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXfixes))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXFONT
+ bool "libXfont"
+ default n
+ select BR2_PACKAGE_FREETYPE
+ select BR2_PACKAGE_XLIB_LIBFONTENC
+ select BR2_PACKAGE_XLIB_XTRANS
+ select BR2_PACKAGE_XPROTO_FONTCACHEPROTO
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ select BR2_PACKAGE_XFONT_ENCODINGS
+ help
+ libXfont 1.2.7
+ X.Org Xfont library
--- /dev/null
+################################################################################
+#
+# xlib_libXfont -- X.Org Xfont library
+#
+################################################################################
+
+XLIB_LIBXFONT_VERSION = 1.2.7
+XLIB_LIBXFONT_SOURCE = libXfont-$(XLIB_LIBXFONT_VERSION).tar.bz2
+XLIB_LIBXFONT_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXFONT_AUTORECONF = YES
+XLIB_LIBXFONT_INSTALL_STAGING = YES
+XLIB_LIBXFONT_DEPENDANCIES = freetype xlib_libfontenc xlib_xtrans xproto_fontcacheproto xproto_fontsproto xproto_xproto xfont_encodings
+XLIB_LIBXFONT_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXfont))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXFONTCACHE
+ bool "libXfontcache"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XPROTO_FONTCACHEPROTO
+ help
+ libXfontcache 1.0.4
+ X.Org Xfontcache library
--- /dev/null
+################################################################################
+#
+# xlib_libXfontcache -- X.Org Xfontcache library
+#
+################################################################################
+
+XLIB_LIBXFONTCACHE_VERSION = 1.0.4
+XLIB_LIBXFONTCACHE_SOURCE = libXfontcache-$(XLIB_LIBXFONTCACHE_VERSION).tar.bz2
+XLIB_LIBXFONTCACHE_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXFONTCACHE_AUTORECONF = YES
+XLIB_LIBXFONTCACHE_INSTALL_STAGING = YES
+XLIB_LIBXFONTCACHE_DEPENDANCIES = xlib_libX11 xlib_libXext xproto_fontcacheproto
+XLIB_LIBXFONTCACHE_CONF_OPT = --disable-malloc0returnsnull --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXfontcache))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXFT
+ bool "libXft"
+ default n
+ select BR2_PACKAGE_FONTCONFIG
+ select BR2_PACKAGE_FREETYPE
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XLIB_LIBXRENDER
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libXft 2.1.12
+ X.Org Xft library
--- /dev/null
+################################################################################
+#
+# xlib_libXft -- X.Org Xft library
+#
+################################################################################
+
+XLIB_LIBXFT_VERSION = 2.1.12
+XLIB_LIBXFT_SOURCE = libXft-$(XLIB_LIBXFT_VERSION).tar.bz2
+XLIB_LIBXFT_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXFT_AUTORECONF = YES
+XLIB_LIBXFT_INSTALL_STAGING = YES
+XLIB_LIBXFT_DEPENDANCIES = fontconfig freetype xlib_libX11 xlib_libXext xlib_libXrender xproto_xproto
+XLIB_LIBXFT_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXft))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXI
+ bool "libXi"
+ default n
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libXi 1.0.2
+ X.Org Xi library
--- /dev/null
+################################################################################
+#
+# xlib_libXi -- X.Org Xi library
+#
+################################################################################
+
+XLIB_LIBXI_VERSION = 1.0.2
+XLIB_LIBXI_SOURCE = libXi-$(XLIB_LIBXI_VERSION).tar.bz2
+XLIB_LIBXI_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXI_AUTORECONF = YES
+XLIB_LIBXI_INSTALL_STAGING = YES
+XLIB_LIBXI_DEPENDANCIES = xproto_inputproto xlib_libX11 xlib_libXext xproto_xproto
+XLIB_LIBXI_CONF_OPT = --disable-malloc0returnsnull --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXi))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXINERAMA
+ bool "libXinerama"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XPROTO_XINERAMAPROTO
+ help
+ libXinerama 1.0.1
+ X.Org Xinerama library
--- /dev/null
+################################################################################
+#
+# xlib_libXinerama -- X.Org Xinerama library
+#
+################################################################################
+
+XLIB_LIBXINERAMA_VERSION = 1.0.1
+XLIB_LIBXINERAMA_SOURCE = libXinerama-$(XLIB_LIBXINERAMA_VERSION).tar.bz2
+XLIB_LIBXINERAMA_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXINERAMA_AUTORECONF = YES
+XLIB_LIBXINERAMA_INSTALL_STAGING = YES
+XLIB_LIBXINERAMA_DEPENDANCIES = xlib_libX11 xlib_libXext xproto_xineramaproto
+XLIB_LIBXINERAMA_CONF_OPT = --disable-malloc0returnsnull --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXinerama))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXMU
+ bool "libXmu"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XLIB_LIBXT
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libXmu 1.0.3
+ X.Org Xmu library
--- /dev/null
+################################################################################
+#
+# xlib_libXmu -- X.Org Xmu library
+#
+################################################################################
+
+XLIB_LIBXMU_VERSION = 1.0.3
+XLIB_LIBXMU_SOURCE = libXmu-$(XLIB_LIBXMU_VERSION).tar.bz2
+XLIB_LIBXMU_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXMU_AUTORECONF = YES
+XLIB_LIBXMU_INSTALL_STAGING = YES
+XLIB_LIBXMU_DEPENDANCIES = xlib_libX11 xlib_libXext xlib_libXt xproto_xproto
+XLIB_LIBXMU_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXmu))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXP
+ bool "libXp"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXAU
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XPROTO_PRINTPROTO
+ help
+ libXp 1.0.0
+ X.Org Xp library
--- /dev/null
+################################################################################
+#
+# xlib_libXp -- X.Org Xp library
+#
+################################################################################
+
+XLIB_LIBXP_VERSION = 1.0.0
+XLIB_LIBXP_SOURCE = libXp-$(XLIB_LIBXP_VERSION).tar.bz2
+XLIB_LIBXP_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXP_AUTORECONF = YES
+XLIB_LIBXP_INSTALL_STAGING = YES
+XLIB_LIBXP_DEPENDANCIES = xlib_libX11 xlib_libXau xlib_libXext xproto_printproto
+XLIB_LIBXP_CONF_OPT = --disable-malloc0returnsnull --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXp))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXPM
+ bool "libXpm"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XLIB_LIBXT
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libXpm 3.5.6
+ X.Org Xpm library
--- /dev/null
+################################################################################
+#
+# xlib_libXpm -- X.Org Xpm library
+#
+################################################################################
+
+XLIB_LIBXPM_VERSION = 3.5.6
+XLIB_LIBXPM_SOURCE = libXpm-$(XLIB_LIBXPM_VERSION).tar.bz2
+XLIB_LIBXPM_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXPM_AUTORECONF = YES
+XLIB_LIBXPM_INSTALL_STAGING = YES
+XLIB_LIBXPM_DEPENDANCIES = xlib_libX11 xlib_libXext xlib_libXt xproto_xproto
+XLIB_LIBXPM_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXpm))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXPRINTAPPUTIL
+ bool "libXprintAppUtil"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXP
+ select BR2_PACKAGE_XLIB_LIBXPRINTUTIL
+ help
+ libXprintAppUtil 1.0.1
+ X.Org XprintAppUtil library
--- /dev/null
+################################################################################
+#
+# xlib_libXprintAppUtil -- X.Org XprintAppUtil library
+#
+################################################################################
+
+XLIB_LIBXPRINTAPPUTIL_VERSION = 1.0.1
+XLIB_LIBXPRINTAPPUTIL_SOURCE = libXprintAppUtil-$(XLIB_LIBXPRINTAPPUTIL_VERSION).tar.bz2
+XLIB_LIBXPRINTAPPUTIL_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXPRINTAPPUTIL_AUTORECONF = YES
+XLIB_LIBXPRINTAPPUTIL_INSTALL_STAGING = YES
+XLIB_LIBXPRINTAPPUTIL_DEPENDANCIES = xlib_libX11 xlib_libXp xlib_libXprintUtil
+XLIB_LIBXPRINTAPPUTIL_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXprintAppUtil))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXPRINTUTIL
+ bool "libXprintUtil"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXP
+ select BR2_PACKAGE_XLIB_LIBXT
+ select BR2_PACKAGE_XPROTO_PRINTPROTO
+ help
+ libXprintUtil 1.0.1
+ X.Org XprintUtil library
--- /dev/null
+################################################################################
+#
+# xlib_libXprintUtil -- X.Org XprintUtil library
+#
+################################################################################
+
+XLIB_LIBXPRINTUTIL_VERSION = 1.0.1
+XLIB_LIBXPRINTUTIL_SOURCE = libXprintUtil-$(XLIB_LIBXPRINTUTIL_VERSION).tar.bz2
+XLIB_LIBXPRINTUTIL_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXPRINTUTIL_AUTORECONF = YES
+XLIB_LIBXPRINTUTIL_INSTALL_STAGING = YES
+XLIB_LIBXPRINTUTIL_DEPENDANCIES = xlib_libX11 xlib_libXp xlib_libXt xproto_printproto
+XLIB_LIBXPRINTUTIL_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXprintUtil))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXRANDR
+ bool "libXrandr"
+ default n
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XLIB_LIBXRENDER
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libXrandr 1.1.2
+ X.Org Xrandr library
--- /dev/null
+################################################################################
+#
+# xlib_libXrandr -- X.Org Xrandr library
+#
+################################################################################
+
+XLIB_LIBXRANDR_VERSION = 1.1.2
+XLIB_LIBXRANDR_SOURCE = libXrandr-$(XLIB_LIBXRANDR_VERSION).tar.bz2
+XLIB_LIBXRANDR_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXRANDR_AUTORECONF = YES
+XLIB_LIBXRANDR_INSTALL_STAGING = YES
+XLIB_LIBXRANDR_DEPENDANCIES = xproto_randrproto xlib_libX11 xlib_libXext xlib_libXrender xproto_renderproto xproto_xproto
+XLIB_LIBXRANDR_CONF_OPT = --disable-malloc0returnsnull --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXrandr))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXRENDER
+ bool "libXrender"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libXrender 0.9.2
+ X.Org Xrender library
--- /dev/null
+################################################################################
+#
+# xlib_libXrender -- X.Org Xrender library
+#
+################################################################################
+
+XLIB_LIBXRENDER_VERSION = 0.9.2
+XLIB_LIBXRENDER_SOURCE = libXrender-$(XLIB_LIBXRENDER_VERSION).tar.bz2
+XLIB_LIBXRENDER_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXRENDER_AUTORECONF = YES
+XLIB_LIBXRENDER_INSTALL_STAGING = YES
+XLIB_LIBXRENDER_DEPENDANCIES = xlib_libX11 xproto_renderproto xproto_xproto
+XLIB_LIBXRENDER_CONF_OPT = --disable-malloc0returnsnull --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXrender))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXRES
+ bool "libXres"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XPROTO_RESOURCEPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libXres 1.0.3
+ X.Org XRes library
--- /dev/null
+################################################################################
+#
+# xlib_libXres -- X.Org XRes library
+#
+################################################################################
+
+XLIB_LIBXRES_VERSION = 1.0.3
+XLIB_LIBXRES_SOURCE = libXres-$(XLIB_LIBXRES_VERSION).tar.bz2
+XLIB_LIBXRES_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXRES_AUTORECONF = YES
+XLIB_LIBXRES_INSTALL_STAGING = YES
+XLIB_LIBXRES_DEPENDANCIES = xlib_libX11 xlib_libXext xproto_resourceproto xproto_xproto
+XLIB_LIBXRES_CONF_OPT = --disable-malloc0returnsnull --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXres))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXT
+ bool "libXt"
+ default n
+ select BR2_PACKAGE_XLIB_LIBSM
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XPROTO_KBPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ select BR2_PACKAGE_XCB_PROTO
+ select BR2_PACKAGE_LIBXCB
+ help
+ libXt 1.0.4
+ X.Org Xt library
--- /dev/null
+--- libXt-1.0.4/configure.ac.orig 2006-11-08 15:15:56.000000000 +0100
++++ libXt-1.0.4/configure.ac 2007-06-08 16:41:59.000000000 +0200
+@@ -37,6 +37,16 @@
+ AC_PROG_CC
+ AC_PROG_LIBTOOL
+
++AC_MSG_CHECKING([for CC_FOR_BUILD])
++if test x$host != x$build ; then
++ CC_FOR_BUILD=${CC_FOR_BUILD-gcc}
++else
++ CC_FOR_BUILD=${CC}
++fi
++AC_MSG_RESULT([$CC_FOR_BUILD])
++AC_SUBST(CC_FOR_BUILD)
++
++
+ PKG_CHECK_MODULES(XT, sm x11 xproto kbproto)
+
+ # Needed for including Xalloca.h
+--- libXt-1.0.4/util/Makefile.am.orig 2006-10-27 21:10:56.000000000 +0200
++++ libXt-1.0.4/util/Makefile.am 2007-06-08 16:44:13.000000000 +0200
+@@ -4,6 +4,16 @@
+ noinst_PROGRAMS = makestrs
+ endif
+
++COMPILE = $(CC_FOR_BUILD) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
++ $(AM_CPPFLAGS) $(CPPFLAGS_FOR_BUILD) $(AM_CFLAGS) $(CFLAGS_FOR_BUILD)
++LINK = $(CC_FOR_BUILD) $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) $(AM_LDFLAGS) $(LDFLAGS_FOR_BUILD) -o $@
++
++$(srcdir)/makestrs-makestrs.o:
++ $(COMPILE) -c $< -o $@
++
++$(srcdir)/makestrs: $(srcdir)/makestrs-makestrs.o
++ $(LINK) $< -o $@
++
+ EXTRA_DIST = \
+ Shell.ht \
+ StrDefs.ct \
--- /dev/null
+################################################################################
+#
+# xlib_libXt -- X.Org Xt library
+#
+################################################################################
+
+XLIB_LIBXT_VERSION = 1.0.4
+XLIB_LIBXT_SOURCE = libXt-$(XLIB_LIBXT_VERSION).tar.bz2
+XLIB_LIBXT_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXT_AUTORECONF = YES
+XLIB_LIBXT_INSTALL_STAGING = YES
+XLIB_LIBXT_DEPENDANCIES = xlib_libSM xlib_libX11 xproto_kbproto xproto_xproto xcb-proto libxcb
+XLIB_LIBXT_CONF_ENV = CC_FOR_BUILD="/usr/bin/gcc -I$(STAGING_DIR)/usr/include"
+XLIB_LIBXT_CONF_OPT = --disable-malloc0returnsnull --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXt))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXTST
+ bool "libXtst"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XPROTO_RECORDPROTO
+ help
+ libXtst 1.0.1
+ X.Org Xtst library
--- /dev/null
+################################################################################
+#
+# xlib_libXtst -- X.Org Xtst library
+#
+################################################################################
+
+XLIB_LIBXTST_VERSION = 1.0.1
+XLIB_LIBXTST_SOURCE = libXtst-$(XLIB_LIBXTST_VERSION).tar.bz2
+XLIB_LIBXTST_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXTST_AUTORECONF = YES
+XLIB_LIBXTST_INSTALL_STAGING = YES
+XLIB_LIBXTST_DEPENDANCIES = xlib_libX11 xlib_libXext xproto_recordproto
+XLIB_LIBXTST_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXtst))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXV
+ bool "libXv"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libXv 1.0.3
+ X.Org Xv library
--- /dev/null
+################################################################################
+#
+# xlib_libXv -- X.Org Xv library
+#
+################################################################################
+
+XLIB_LIBXV_VERSION = 1.0.3
+XLIB_LIBXV_SOURCE = libXv-$(XLIB_LIBXV_VERSION).tar.bz2
+XLIB_LIBXV_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXV_AUTORECONF = YES
+XLIB_LIBXV_INSTALL_STAGING = YES
+XLIB_LIBXV_DEPENDANCIES = xlib_libX11 xlib_libXext xproto_videoproto xproto_xproto
+XLIB_LIBXV_CONF_OPT = --disable-malloc0returnsnull --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXv))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXVMC
+ bool "libXvMC"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XLIB_LIBXV
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libXvMC 1.0.4
+ X.Org XvMC library
--- /dev/null
+################################################################################
+#
+# xlib_libXvMC -- X.Org XvMC library
+#
+################################################################################
+
+XLIB_LIBXVMC_VERSION = 1.0.4
+XLIB_LIBXVMC_SOURCE = libXvMC-$(XLIB_LIBXVMC_VERSION).tar.bz2
+XLIB_LIBXVMC_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXVMC_AUTORECONF = YES
+XLIB_LIBXVMC_INSTALL_STAGING = YES
+XLIB_LIBXVMC_DEPENDANCIES = xlib_libX11 xlib_libXext xlib_libXv xproto_videoproto xproto_xproto
+XLIB_LIBXVMC_CONF_OPT = --disable-malloc0returnsnull --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXvMC))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXXF86DGA
+ bool "libXxf86dga"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XPROTO_XF86DGAPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libXxf86dga 1.0.1
+ X.Org Xxf86dga library
--- /dev/null
+################################################################################
+#
+# xlib_libXxf86dga -- X.Org Xxf86dga library
+#
+################################################################################
+
+XLIB_LIBXXF86DGA_VERSION = 1.0.1
+XLIB_LIBXXF86DGA_SOURCE = libXxf86dga-$(XLIB_LIBXXF86DGA_VERSION).tar.bz2
+XLIB_LIBXXF86DGA_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXXF86DGA_AUTORECONF = YES
+XLIB_LIBXXF86DGA_INSTALL_STAGING = YES
+XLIB_LIBXXF86DGA_DEPENDANCIES = xlib_libX11 xlib_libXext xproto_xf86dgaproto xproto_xproto
+XLIB_LIBXXF86DGA_CONF_OPT = --disable-malloc0returnsnull --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXxf86dga))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXXF86MISC
+ bool "libXxf86misc"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XPROTO_XF86MISCPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libXxf86misc 1.0.1
+ X.Org Xxf86misc library
--- /dev/null
+################################################################################
+#
+# xlib_libXxf86misc -- X.Org Xxf86misc library
+#
+################################################################################
+
+XLIB_LIBXXF86MISC_VERSION = 1.0.1
+XLIB_LIBXXF86MISC_SOURCE = libXxf86misc-$(XLIB_LIBXXF86MISC_VERSION).tar.bz2
+XLIB_LIBXXF86MISC_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXXF86MISC_AUTORECONF = YES
+XLIB_LIBXXF86MISC_INSTALL_STAGING = YES
+XLIB_LIBXXF86MISC_DEPENDANCIES = xlib_libX11 xlib_libXext xproto_xf86miscproto xproto_xproto
+XLIB_LIBXXF86MISC_CONF_OPT = --disable-malloc0returnsnull --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXxf86misc))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXXF86VM
+ bool "libXxf86vm"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libXxf86vm 1.0.1
+ X.Org Xxf86vm library
--- /dev/null
+################################################################################
+#
+# xlib_libXxf86vm -- X.Org Xxf86vm library
+#
+################################################################################
+
+XLIB_LIBXXF86VM_VERSION = 1.0.1
+XLIB_LIBXXF86VM_SOURCE = libXxf86vm-$(XLIB_LIBXXF86VM_VERSION).tar.bz2
+XLIB_LIBXXF86VM_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXXF86VM_AUTORECONF = YES
+XLIB_LIBXXF86VM_INSTALL_STAGING = YES
+XLIB_LIBXXF86VM_DEPENDANCIES = xlib_libX11 xlib_libXext xproto_xf86vidmodeproto xproto_xproto
+XLIB_LIBXXF86VM_CONF_OPT = --disable-malloc0returnsnull --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libXxf86vm))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBDMX
+ bool "libdmx"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XPROTO_DMXPROTO
+ help
+ libdmx 1.0.2
+ X.Org dmx library
--- /dev/null
+################################################################################
+#
+# xlib_libdmx -- X.Org dmx library
+#
+################################################################################
+
+XLIB_LIBDMX_VERSION = 1.0.2
+XLIB_LIBDMX_SOURCE = libdmx-$(XLIB_LIBDMX_VERSION).tar.bz2
+XLIB_LIBDMX_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBDMX_AUTORECONF = YES
+XLIB_LIBDMX_INSTALL_STAGING = YES
+XLIB_LIBDMX_DEPENDANCIES = xlib_libX11 xlib_libXext xproto_dmxproto
+XLIB_LIBDMX_CONF_OPT = --disable-malloc0returnsnull --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libdmx))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBFONTENC
+ bool "libfontenc"
+ default n
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ libfontenc 1.0.4
+ X.Org fontenc library
--- /dev/null
+################################################################################
+#
+# xlib_libfontenc -- X.Org fontenc library
+#
+################################################################################
+
+XLIB_LIBFONTENC_VERSION = 1.0.4
+XLIB_LIBFONTENC_SOURCE = libfontenc-$(XLIB_LIBFONTENC_VERSION).tar.bz2
+XLIB_LIBFONTENC_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBFONTENC_AUTORECONF = YES
+XLIB_LIBFONTENC_INSTALL_STAGING = YES
+XLIB_LIBFONTENC_DEPENDANCIES = xproto_xproto
+XLIB_LIBFONTENC_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libfontenc))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBLBXUTIL
+ bool "liblbxutil"
+ default n
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ help
+ liblbxutil 1.0.1
+ X.Org lbxutil library
--- /dev/null
+--- liblbxutil-1.0.1/configure.ac.orig 2007-06-08 21:57:50.000000000 +0200
++++ liblbxutil-1.0.1/configure.ac 2007-06-08 21:58:06.000000000 +0200
+@@ -49,6 +49,15 @@
+
+ XORG_RELEASE_VERSION
+
++AC_MSG_CHECKING([for CC_FOR_BUILD])
++if test x$host != x$build ; then
++ CC_FOR_BUILD=${CC_FOR_BUILD-gcc}
++else
++ CC_FOR_BUILD=${CC}
++fi
++AC_MSG_RESULT([$CC_FOR_BUILD])
++AC_SUBST(CC_FOR_BUILD)
++
+ AC_OUTPUT([Makefile
+ src/Makefile
+ lbxutil.pc])
+--- liblbxutil-1.0.1/src/Makefile.am.orig 2007-06-08 21:57:50.000000000 +0200
++++ liblbxutil-1.0.1/src/Makefile.am 2007-06-08 22:00:24.000000000 +0200
+@@ -5,6 +5,16 @@
+ mkg3states_SOURCES = \
+ $(srcdir)/image/mkg3states.c
+
++COMPILE = $(CC_FOR_BUILD) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
++ $(AM_CPPFLAGS) $(CPPFLAGS_FOR_BUILD) $(AM_CFLAGS) $(CFLAGS_FOR_BUILD)
++LINK = $(CC_FOR_BUILD) $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) $(AM_LDFLAGS) $(LDFLAGS_FOR_BUILD) -o $@
++
++$(srcdir)/mkg3states.o:
++ $(COMPILE) -c $< -o $@
++
++$(srcdir)/mkg3states: $(srcdir)/mkg3states.o
++ $(LINK) $< -o $@
++
+ liblbxutil_la_SOURCES = \
+ $(srcdir)/lbx_zlib/reqstats.h \
+ $(srcdir)/lbx_zlib/lbx_zlib_io.c \
--- /dev/null
+################################################################################
+#
+# xlib_liblbxutil -- X.Org lbxutil library
+#
+################################################################################
+
+XLIB_LIBLBXUTIL_VERSION = 1.0.1
+XLIB_LIBLBXUTIL_SOURCE = liblbxutil-$(XLIB_LIBLBXUTIL_VERSION).tar.bz2
+XLIB_LIBLBXUTIL_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBLBXUTIL_AUTORECONF = YES
+XLIB_LIBLBXUTIL_INSTALL_STAGING = YES
+XLIB_LIBLBXUTIL_DEPENDANCIES = xproto_xextproto
+XLIB_LIBLBXUTIL_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_liblbxutil))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBOLDX
+ bool "liboldX"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ help
+ liboldX 1.0.1
+ X.Org oldX library
--- /dev/null
+################################################################################
+#
+# xlib_liboldX -- X.Org oldX library
+#
+################################################################################
+
+XLIB_LIBOLDX_VERSION = 1.0.1
+XLIB_LIBOLDX_SOURCE = liboldX-$(XLIB_LIBOLDX_VERSION).tar.bz2
+XLIB_LIBOLDX_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBOLDX_AUTORECONF = YES
+XLIB_LIBOLDX_INSTALL_STAGING = YES
+XLIB_LIBOLDX_DEPENDANCIES = xlib_libX11
+XLIB_LIBOLDX_CONF_OPT = --disable-malloc0returnsnull --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_liboldX))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXKBFILE
+ bool "libxkbfile"
+ default n
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XPROTO_KBPROTO
+ help
+ libxkbfile 1.0.4
+ X.Org xkbfile library
--- /dev/null
+################################################################################
+#
+# xlib_libxkbfile -- X.Org xkbfile library
+#
+################################################################################
+
+XLIB_LIBXKBFILE_VERSION = 1.0.4
+XLIB_LIBXKBFILE_SOURCE = libxkbfile-$(XLIB_LIBXKBFILE_VERSION).tar.bz2
+XLIB_LIBXKBFILE_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXKBFILE_AUTORECONF = YES
+XLIB_LIBXKBFILE_INSTALL_STAGING = YES
+XLIB_LIBXKBFILE_DEPENDANCIES = xlib_libX11 xproto_kbproto
+XLIB_LIBXKBFILE_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libxkbfile))
--- /dev/null
+config BR2_PACKAGE_XLIB_LIBXKBUI
+ bool "libxkbui"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXKBFILE
+ select BR2_PACKAGE_XLIB_LIBXT
+ select BR2_PACKAGE_XPROTO_KBPROTO
+ help
+ libxkbui 1.0.2
+ X.Org xkbui library
--- /dev/null
+################################################################################
+#
+# xlib_libxkbui -- X.Org xkbui library
+#
+################################################################################
+
+XLIB_LIBXKBUI_VERSION = 1.0.2
+XLIB_LIBXKBUI_SOURCE = libxkbui-$(XLIB_LIBXKBUI_VERSION).tar.bz2
+XLIB_LIBXKBUI_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_LIBXKBUI_AUTORECONF = YES
+XLIB_LIBXKBUI_INSTALL_STAGING = YES
+XLIB_LIBXKBUI_DEPENDANCIES = xlib_libxkbfile xlib_libXt xproto_kbproto
+XLIB_LIBXKBUI_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_libxkbui))
--- /dev/null
+config BR2_PACKAGE_XLIB_XTRANS
+ bool "xtrans"
+ default n
+ help
+ xtrans 1.0.3
+ X.Org xtrans library
--- /dev/null
+################################################################################
+#
+# xlib_xtrans -- X.Org xtrans library
+#
+################################################################################
+
+XLIB_XTRANS_VERSION = 1.0.3
+XLIB_XTRANS_SOURCE = xtrans-$(XLIB_XTRANS_VERSION).tar.bz2
+XLIB_XTRANS_SITE = http://xorg.freedesktop.org/releases/individual/lib
+XLIB_XTRANS_AUTORECONF = YES
+XLIB_XTRANS_INSTALL_STAGING = YES
+XLIB_XTRANS_CONF_OPT = --enable-shared --disable-static
+
+$(eval $(call AUTOTARGETS,xlib_xtrans))
--- /dev/null
+config BR2_PACKAGE_XPROTO_APPLEWMPROTO
+ bool "applewmproto"
+ default n
+ help
+ applewmproto 1.0.3
+ No description available
--- /dev/null
+################################################################################
+#
+# xproto_applewmproto -- No description available
+#
+################################################################################
+
+XPROTO_APPLEWMPROTO_VERSION = 1.0.3
+XPROTO_APPLEWMPROTO_SOURCE = applewmproto-$(XPROTO_APPLEWMPROTO_VERSION).tar.bz2
+XPROTO_APPLEWMPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_APPLEWMPROTO_AUTORECONF = YES
+XPROTO_APPLEWMPROTO_INSTALL_STAGING = YES
+XPROTO_APPLEWMPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_applewmproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_BIGREQSPROTO
+ bool "bigreqsproto"
+ default n
+ help
+ bigreqsproto 1.0.2
+ X.Org BigReqs protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_bigreqsproto -- X.Org BigReqs protocol headers
+#
+################################################################################
+
+XPROTO_BIGREQSPROTO_VERSION = 1.0.2
+XPROTO_BIGREQSPROTO_SOURCE = bigreqsproto-$(XPROTO_BIGREQSPROTO_VERSION).tar.bz2
+XPROTO_BIGREQSPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_BIGREQSPROTO_AUTORECONF = YES
+XPROTO_BIGREQSPROTO_INSTALL_STAGING = YES
+XPROTO_BIGREQSPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_bigreqsproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_COMPOSITEPROTO
+ bool "compositeproto"
+ default n
+ help
+ compositeproto 0.3.1
+ X.Org Composite protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_compositeproto -- X.Org Composite protocol headers
+#
+################################################################################
+
+XPROTO_COMPOSITEPROTO_VERSION = 0.3.1
+XPROTO_COMPOSITEPROTO_SOURCE = compositeproto-$(XPROTO_COMPOSITEPROTO_VERSION).tar.bz2
+XPROTO_COMPOSITEPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_COMPOSITEPROTO_AUTORECONF = YES
+XPROTO_COMPOSITEPROTO_INSTALL_STAGING = YES
+XPROTO_COMPOSITEPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_compositeproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_DAMAGEPROTO
+ bool "damageproto"
+ default n
+ help
+ damageproto 1.0.3
+ X.Org Damage protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_damageproto -- X.Org Damage protocol headers
+#
+################################################################################
+
+XPROTO_DAMAGEPROTO_VERSION = 1.0.3
+XPROTO_DAMAGEPROTO_SOURCE = damageproto-$(XPROTO_DAMAGEPROTO_VERSION).tar.bz2
+XPROTO_DAMAGEPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_DAMAGEPROTO_AUTORECONF = YES
+XPROTO_DAMAGEPROTO_INSTALL_STAGING = YES
+XPROTO_DAMAGEPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_damageproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_DMXPROTO
+ bool "dmxproto"
+ default n
+ help
+ dmxproto 2.2.2
+ X.Org DMX protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_dmxproto -- X.Org DMX protocol headers
+#
+################################################################################
+
+XPROTO_DMXPROTO_VERSION = 2.2.2
+XPROTO_DMXPROTO_SOURCE = dmxproto-$(XPROTO_DMXPROTO_VERSION).tar.bz2
+XPROTO_DMXPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_DMXPROTO_AUTORECONF = YES
+XPROTO_DMXPROTO_INSTALL_STAGING = YES
+XPROTO_DMXPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_dmxproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_EVIEEXT
+ bool "evieext"
+ default n
+ help
+ evieext 1.0.2
+ X.Org EvIE protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_evieext -- X.Org EvIE protocol headers
+#
+################################################################################
+
+XPROTO_EVIEEXT_VERSION = 1.0.2
+XPROTO_EVIEEXT_SOURCE = evieext-$(XPROTO_EVIEEXT_VERSION).tar.bz2
+XPROTO_EVIEEXT_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_EVIEEXT_AUTORECONF = YES
+XPROTO_EVIEEXT_INSTALL_STAGING = YES
+XPROTO_EVIEEXT_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_evieext))
--- /dev/null
+config BR2_PACKAGE_XPROTO_FIXESPROTO
+ bool "fixesproto"
+ default n
+ help
+ fixesproto 4.0
+ X.Org Fixes protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_fixesproto -- X.Org Fixes protocol headers
+#
+################################################################################
+
+XPROTO_FIXESPROTO_VERSION = 4.0
+XPROTO_FIXESPROTO_SOURCE = fixesproto-$(XPROTO_FIXESPROTO_VERSION).tar.bz2
+XPROTO_FIXESPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_FIXESPROTO_AUTORECONF = YES
+XPROTO_FIXESPROTO_INSTALL_STAGING = YES
+XPROTO_FIXESPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_fixesproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_FONTCACHEPROTO
+ bool "fontcacheproto"
+ default n
+ help
+ fontcacheproto 0.1.2
+ X.Org Fontcache protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_fontcacheproto -- X.Org Fontcache protocol headers
+#
+################################################################################
+
+XPROTO_FONTCACHEPROTO_VERSION = 0.1.2
+XPROTO_FONTCACHEPROTO_SOURCE = fontcacheproto-$(XPROTO_FONTCACHEPROTO_VERSION).tar.bz2
+XPROTO_FONTCACHEPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_FONTCACHEPROTO_AUTORECONF = YES
+XPROTO_FONTCACHEPROTO_INSTALL_STAGING = YES
+XPROTO_FONTCACHEPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_fontcacheproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_FONTSPROTO
+ bool "fontsproto"
+ default n
+ help
+ fontsproto 2.0.2
+ X.Org Fonts protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_fontsproto -- X.Org Fonts protocol headers
+#
+################################################################################
+
+XPROTO_FONTSPROTO_VERSION = 2.0.2
+XPROTO_FONTSPROTO_SOURCE = fontsproto-$(XPROTO_FONTSPROTO_VERSION).tar.bz2
+XPROTO_FONTSPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_FONTSPROTO_AUTORECONF = YES
+XPROTO_FONTSPROTO_INSTALL_STAGING = YES
+XPROTO_FONTSPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_fontsproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_GLPROTO
+ bool "glproto"
+ default n
+ help
+ glproto 1.4.8
+ X.Org GL protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_glproto -- X.Org GL protocol headers
+#
+################################################################################
+
+XPROTO_GLPROTO_VERSION = 1.4.8
+XPROTO_GLPROTO_SOURCE = glproto-$(XPROTO_GLPROTO_VERSION).tar.bz2
+XPROTO_GLPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_GLPROTO_AUTORECONF = YES
+XPROTO_GLPROTO_INSTALL_STAGING = YES
+XPROTO_GLPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_glproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_INPUTPROTO
+ bool "inputproto"
+ default n
+ help
+ inputproto 1.3.2
+ X.Org Input protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_inputproto -- X.Org Input protocol headers
+#
+################################################################################
+
+XPROTO_INPUTPROTO_VERSION = 1.3.2
+XPROTO_INPUTPROTO_SOURCE = inputproto-$(XPROTO_INPUTPROTO_VERSION).tar.bz2
+XPROTO_INPUTPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_INPUTPROTO_AUTORECONF = YES
+XPROTO_INPUTPROTO_INSTALL_STAGING = YES
+XPROTO_INPUTPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_inputproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_KBPROTO
+ bool "kbproto"
+ default n
+ help
+ kbproto 1.0.3
+ X.Org KB protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_kbproto -- X.Org KB protocol headers
+#
+################################################################################
+
+XPROTO_KBPROTO_VERSION = 1.0.3
+XPROTO_KBPROTO_SOURCE = kbproto-$(XPROTO_KBPROTO_VERSION).tar.bz2
+XPROTO_KBPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_KBPROTO_AUTORECONF = YES
+XPROTO_KBPROTO_INSTALL_STAGING = YES
+XPROTO_KBPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_kbproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_PRINTPROTO
+ bool "printproto"
+ default n
+ help
+ printproto 1.0.3
+ X.Org Print protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_printproto -- X.Org Print protocol headers
+#
+################################################################################
+
+XPROTO_PRINTPROTO_VERSION = 1.0.3
+XPROTO_PRINTPROTO_SOURCE = printproto-$(XPROTO_PRINTPROTO_VERSION).tar.bz2
+XPROTO_PRINTPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_PRINTPROTO_AUTORECONF = YES
+XPROTO_PRINTPROTO_INSTALL_STAGING = YES
+XPROTO_PRINTPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_printproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_RANDRPROTO
+ bool "randrproto"
+ default n
+ help
+ randrproto 1.1.2
+ X.Org Randr protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_randrproto -- X.Org Randr protocol headers
+#
+################################################################################
+
+XPROTO_RANDRPROTO_VERSION = 1.1.2
+XPROTO_RANDRPROTO_SOURCE = randrproto-$(XPROTO_RANDRPROTO_VERSION).tar.bz2
+XPROTO_RANDRPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_RANDRPROTO_AUTORECONF = YES
+XPROTO_RANDRPROTO_INSTALL_STAGING = YES
+XPROTO_RANDRPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_randrproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_RECORDPROTO
+ bool "recordproto"
+ default n
+ help
+ recordproto 1.13.2
+ X.Org Record protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_recordproto -- X.Org Record protocol headers
+#
+################################################################################
+
+XPROTO_RECORDPROTO_VERSION = 1.13.2
+XPROTO_RECORDPROTO_SOURCE = recordproto-$(XPROTO_RECORDPROTO_VERSION).tar.bz2
+XPROTO_RECORDPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_RECORDPROTO_AUTORECONF = YES
+XPROTO_RECORDPROTO_INSTALL_STAGING = YES
+XPROTO_RECORDPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_recordproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_RENDERPROTO
+ bool "renderproto"
+ default n
+ help
+ renderproto 0.9.2
+ X.Org Render protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_renderproto -- X.Org Render protocol headers
+#
+################################################################################
+
+XPROTO_RENDERPROTO_VERSION = 0.9.2
+XPROTO_RENDERPROTO_SOURCE = renderproto-$(XPROTO_RENDERPROTO_VERSION).tar.bz2
+XPROTO_RENDERPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_RENDERPROTO_AUTORECONF = YES
+XPROTO_RENDERPROTO_INSTALL_STAGING = YES
+XPROTO_RENDERPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_renderproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_RESOURCEPROTO
+ bool "resourceproto"
+ default n
+ help
+ resourceproto 1.0.2
+ X.Org Resource protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_resourceproto -- X.Org Resource protocol headers
+#
+################################################################################
+
+XPROTO_RESOURCEPROTO_VERSION = 1.0.2
+XPROTO_RESOURCEPROTO_SOURCE = resourceproto-$(XPROTO_RESOURCEPROTO_VERSION).tar.bz2
+XPROTO_RESOURCEPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_RESOURCEPROTO_AUTORECONF = YES
+XPROTO_RESOURCEPROTO_INSTALL_STAGING = YES
+XPROTO_RESOURCEPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_resourceproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_SCRNSAVERPROTO
+ bool "scrnsaverproto"
+ default n
+ help
+ scrnsaverproto 1.1.0
+ X.Org ScrnSaver protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_scrnsaverproto -- X.Org ScrnSaver protocol headers
+#
+################################################################################
+
+XPROTO_SCRNSAVERPROTO_VERSION = 1.1.0
+XPROTO_SCRNSAVERPROTO_SOURCE = scrnsaverproto-$(XPROTO_SCRNSAVERPROTO_VERSION).tar.bz2
+XPROTO_SCRNSAVERPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_SCRNSAVERPROTO_AUTORECONF = YES
+XPROTO_SCRNSAVERPROTO_INSTALL_STAGING = YES
+XPROTO_SCRNSAVERPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_scrnsaverproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_TRAPPROTO
+ bool "trapproto"
+ default n
+ help
+ trapproto 3.4.3
+ X.Org Trap protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_trapproto -- X.Org Trap protocol headers
+#
+################################################################################
+
+XPROTO_TRAPPROTO_VERSION = 3.4.3
+XPROTO_TRAPPROTO_SOURCE = trapproto-$(XPROTO_TRAPPROTO_VERSION).tar.bz2
+XPROTO_TRAPPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_TRAPPROTO_AUTORECONF = YES
+XPROTO_TRAPPROTO_INSTALL_STAGING = YES
+XPROTO_TRAPPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_trapproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_VIDEOPROTO
+ bool "videoproto"
+ default n
+ help
+ videoproto 2.2.2
+ X.Org Video protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_videoproto -- X.Org Video protocol headers
+#
+################################################################################
+
+XPROTO_VIDEOPROTO_VERSION = 2.2.2
+XPROTO_VIDEOPROTO_SOURCE = videoproto-$(XPROTO_VIDEOPROTO_VERSION).tar.bz2
+XPROTO_VIDEOPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_VIDEOPROTO_AUTORECONF = YES
+XPROTO_VIDEOPROTO_INSTALL_STAGING = YES
+XPROTO_VIDEOPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_videoproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_WINDOWSWMPROTO
+ bool "windowswmproto"
+ default n
+ help
+ windowswmproto 1.0.3
+ No description available
--- /dev/null
+################################################################################
+#
+# xproto_windowswmproto -- No description available
+#
+################################################################################
+
+XPROTO_WINDOWSWMPROTO_VERSION = 1.0.3
+XPROTO_WINDOWSWMPROTO_SOURCE = windowswmproto-$(XPROTO_WINDOWSWMPROTO_VERSION).tar.bz2
+XPROTO_WINDOWSWMPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_WINDOWSWMPROTO_AUTORECONF = YES
+XPROTO_WINDOWSWMPROTO_INSTALL_STAGING = YES
+XPROTO_WINDOWSWMPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_windowswmproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_XCMISCPROTO
+ bool "xcmiscproto"
+ default n
+ help
+ xcmiscproto 1.1.2
+ X.Org XCMisc protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_xcmiscproto -- X.Org XCMisc protocol headers
+#
+################################################################################
+
+XPROTO_XCMISCPROTO_VERSION = 1.1.2
+XPROTO_XCMISCPROTO_SOURCE = xcmiscproto-$(XPROTO_XCMISCPROTO_VERSION).tar.bz2
+XPROTO_XCMISCPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_XCMISCPROTO_AUTORECONF = YES
+XPROTO_XCMISCPROTO_INSTALL_STAGING = YES
+XPROTO_XCMISCPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_xcmiscproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_XEXTPROTO
+ bool "xextproto"
+ default n
+ help
+ xextproto 7.0.2
+ X.Org XExt protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_xextproto -- X.Org XExt protocol headers
+#
+################################################################################
+
+XPROTO_XEXTPROTO_VERSION = 7.0.2
+XPROTO_XEXTPROTO_SOURCE = xextproto-$(XPROTO_XEXTPROTO_VERSION).tar.bz2
+XPROTO_XEXTPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_XEXTPROTO_AUTORECONF = YES
+XPROTO_XEXTPROTO_INSTALL_STAGING = YES
+XPROTO_XEXTPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_xextproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_XF86BIGFONTPROTO
+ bool "xf86bigfontproto"
+ default n
+ help
+ xf86bigfontproto 1.1.2
+ X.Org XF86BigFont protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_xf86bigfontproto -- X.Org XF86BigFont protocol headers
+#
+################################################################################
+
+XPROTO_XF86BIGFONTPROTO_VERSION = 1.1.2
+XPROTO_XF86BIGFONTPROTO_SOURCE = xf86bigfontproto-$(XPROTO_XF86BIGFONTPROTO_VERSION).tar.bz2
+XPROTO_XF86BIGFONTPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_XF86BIGFONTPROTO_AUTORECONF = YES
+XPROTO_XF86BIGFONTPROTO_INSTALL_STAGING = YES
+XPROTO_XF86BIGFONTPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_xf86bigfontproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_XF86DGAPROTO
+ bool "xf86dgaproto"
+ default n
+ help
+ xf86dgaproto 2.0.2
+ X.Org XF86DGA protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_xf86dgaproto -- X.Org XF86DGA protocol headers
+#
+################################################################################
+
+XPROTO_XF86DGAPROTO_VERSION = 2.0.2
+XPROTO_XF86DGAPROTO_SOURCE = xf86dgaproto-$(XPROTO_XF86DGAPROTO_VERSION).tar.bz2
+XPROTO_XF86DGAPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_XF86DGAPROTO_AUTORECONF = YES
+XPROTO_XF86DGAPROTO_INSTALL_STAGING = YES
+XPROTO_XF86DGAPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_xf86dgaproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_XF86DRIPROTO
+ bool "xf86driproto"
+ default n
+ help
+ xf86driproto 2.0.3
+ X.Org XF86DRI protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_xf86driproto -- X.Org XF86DRI protocol headers
+#
+################################################################################
+
+XPROTO_XF86DRIPROTO_VERSION = 2.0.3
+XPROTO_XF86DRIPROTO_SOURCE = xf86driproto-$(XPROTO_XF86DRIPROTO_VERSION).tar.bz2
+XPROTO_XF86DRIPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_XF86DRIPROTO_AUTORECONF = YES
+XPROTO_XF86DRIPROTO_INSTALL_STAGING = YES
+XPROTO_XF86DRIPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_xf86driproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_XF86MISCPROTO
+ bool "xf86miscproto"
+ default n
+ help
+ xf86miscproto 0.9.2
+ X.Org XF86Misc protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_xf86miscproto -- X.Org XF86Misc protocol headers
+#
+################################################################################
+
+XPROTO_XF86MISCPROTO_VERSION = 0.9.2
+XPROTO_XF86MISCPROTO_SOURCE = xf86miscproto-$(XPROTO_XF86MISCPROTO_VERSION).tar.bz2
+XPROTO_XF86MISCPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_XF86MISCPROTO_AUTORECONF = YES
+XPROTO_XF86MISCPROTO_INSTALL_STAGING = YES
+XPROTO_XF86MISCPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_xf86miscproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_XF86RUSHPROTO
+ bool "xf86rushproto"
+ default n
+ help
+ xf86rushproto 1.1.2
+ X.Org XF86Rush protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_xf86rushproto -- X.Org XF86Rush protocol headers
+#
+################################################################################
+
+XPROTO_XF86RUSHPROTO_VERSION = 1.1.2
+XPROTO_XF86RUSHPROTO_SOURCE = xf86rushproto-$(XPROTO_XF86RUSHPROTO_VERSION).tar.bz2
+XPROTO_XF86RUSHPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_XF86RUSHPROTO_AUTORECONF = YES
+XPROTO_XF86RUSHPROTO_INSTALL_STAGING = YES
+XPROTO_XF86RUSHPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_xf86rushproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO
+ bool "xf86vidmodeproto"
+ default n
+ help
+ xf86vidmodeproto 2.2.2
+ X.Org XF86VidMode protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_xf86vidmodeproto -- X.Org XF86VidMode protocol headers
+#
+################################################################################
+
+XPROTO_XF86VIDMODEPROTO_VERSION = 2.2.2
+XPROTO_XF86VIDMODEPROTO_SOURCE = xf86vidmodeproto-$(XPROTO_XF86VIDMODEPROTO_VERSION).tar.bz2
+XPROTO_XF86VIDMODEPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_XF86VIDMODEPROTO_AUTORECONF = YES
+XPROTO_XF86VIDMODEPROTO_INSTALL_STAGING = YES
+XPROTO_XF86VIDMODEPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_xf86vidmodeproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_XINERAMAPROTO
+ bool "xineramaproto"
+ default n
+ help
+ xineramaproto 1.1.2
+ X.Org Xinerama protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_xineramaproto -- X.Org Xinerama protocol headers
+#
+################################################################################
+
+XPROTO_XINERAMAPROTO_VERSION = 1.1.2
+XPROTO_XINERAMAPROTO_SOURCE = xineramaproto-$(XPROTO_XINERAMAPROTO_VERSION).tar.bz2
+XPROTO_XINERAMAPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_XINERAMAPROTO_AUTORECONF = YES
+XPROTO_XINERAMAPROTO_INSTALL_STAGING = YES
+XPROTO_XINERAMAPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_xineramaproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_XPROTO
+ bool "xproto"
+ default n
+ help
+ xproto 7.0.10
+ X.Org xproto protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_xproto -- X.Org xproto protocol headers
+#
+################################################################################
+
+XPROTO_XPROTO_VERSION = 7.0.10
+XPROTO_XPROTO_SOURCE = xproto-$(XPROTO_XPROTO_VERSION).tar.bz2
+XPROTO_XPROTO_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_XPROTO_AUTORECONF = YES
+XPROTO_XPROTO_INSTALL_STAGING = YES
+XPROTO_XPROTO_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_xproto))
--- /dev/null
+config BR2_PACKAGE_XPROTO_XPROXYMANAGEMENTPROTOCOL
+ bool "xproxymanagementprotocol"
+ default n
+ help
+ xproxymanagementprotocol 1.0.2
+ X.Org PM protocol headers
--- /dev/null
+################################################################################
+#
+# xproto_xproxymanagementprotocol -- X.Org PM protocol headers
+#
+################################################################################
+
+XPROTO_XPROXYMANAGEMENTPROTOCOL_VERSION = 1.0.2
+XPROTO_XPROXYMANAGEMENTPROTOCOL_SOURCE = xproxymanagementprotocol-$(XPROTO_XPROXYMANAGEMENTPROTOCOL_VERSION).tar.bz2
+XPROTO_XPROXYMANAGEMENTPROTOCOL_SITE = http://xorg.freedesktop.org/releases/individual/proto
+XPROTO_XPROXYMANAGEMENTPROTOCOL_AUTORECONF = YES
+XPROTO_XPROXYMANAGEMENTPROTOCOL_INSTALL_STAGING = YES
+XPROTO_XPROXYMANAGEMENTPROTOCOL_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xproto_xproxymanagementprotocol))
--- /dev/null
+config BR2_PACKAGE_XSERVER_XORG_SERVER
+ bool "xorg-server"
+ default n
+ select BR2_PACKAGE_XLIB_LIBXFONT
+ select BR2_PACKAGE_LIBDRM
+ select BR2_PACKAGE_XLIB_LIBXKBUI
+ select BR2_PACKAGE_XPROTO_COMPOSITEPROTO
+ select BR2_PACKAGE_XPROTO_DAMAGEPROTO
+ select BR2_PACKAGE_XPROTO_FIXESPROTO
+ select BR2_PACKAGE_XPROTO_GLPROTO
+ select BR2_PACKAGE_XPROTO_KBPROTO
+ select BR2_PACKAGE_XPROTO_RANDRPROTO
+ select BR2_PACKAGE_FREETYPE
+ select BR2_PACKAGE_XLIB_LIBX11
+ select BR2_PACKAGE_XLIB_LIBXAU
+ select BR2_PACKAGE_XLIB_LIBXAW
+ select BR2_PACKAGE_XLIB_LIBXDMCP
+ select BR2_PACKAGE_XLIB_LIBXEXT
+ select BR2_PACKAGE_XLIB_LIBXFIXES
+ select BR2_PACKAGE_XLIB_LIBXI
+ select BR2_PACKAGE_XLIB_LIBXMU
+ select BR2_PACKAGE_XLIB_LIBXPM
+ select BR2_PACKAGE_XLIB_LIBXRENDER
+ select BR2_PACKAGE_XLIB_LIBXRES
+ select BR2_PACKAGE_XLIB_LIBXTST
+ select BR2_PACKAGE_XLIB_LIBXXF86MISC
+ select BR2_PACKAGE_XLIB_LIBXXF86VM
+ select BR2_PACKAGE_XLIB_LIBLBXUTIL
+ select BR2_PACKAGE_XLIB_LIBXKBFILE
+ select BR2_PACKAGE_XLIB_XTRANS
+ select BR2_PACKAGE_XDATA_XBITMAPS
+ select BR2_PACKAGE_XPROTO_BIGREQSPROTO
+ select BR2_PACKAGE_XPROTO_EVIEEXT
+ select BR2_PACKAGE_XPROTO_FONTSPROTO
+ select BR2_PACKAGE_XPROTO_INPUTPROTO
+ select BR2_PACKAGE_XPROTO_RECORDPROTO
+ select BR2_PACKAGE_XPROTO_RENDERPROTO
+ select BR2_PACKAGE_XPROTO_RESOURCEPROTO
+ select BR2_PACKAGE_XPROTO_TRAPPROTO
+ select BR2_PACKAGE_XPROTO_VIDEOPROTO
+ select BR2_PACKAGE_XPROTO_XCMISCPROTO
+ select BR2_PACKAGE_XPROTO_XEXTPROTO
+ select BR2_PACKAGE_XPROTO_XF86BIGFONTPROTO
+ select BR2_PACKAGE_XPROTO_XF86DGAPROTO
+ select BR2_PACKAGE_XPROTO_XF86DRIPROTO
+ select BR2_PACKAGE_XPROTO_XF86MISCPROTO
+ select BR2_PACKAGE_XPROTO_XF86RUSHPROTO
+ select BR2_PACKAGE_XPROTO_XF86VIDMODEPROTO
+ select BR2_PACKAGE_XPROTO_XPROTO
+ help
+ xorg-server 1.2.0
+ No description available
--- /dev/null
+--- xserver_xorg-server-1.2.0/hw/xfree86/scanpci/Makefile.am.orig 2007-06-24 08:46:24.000000000 +0200
++++ xserver_xorg-server-1.2.0/hw/xfree86/scanpci/Makefile.am 2007-06-24 08:46:26.000000000 +0200
+@@ -9,6 +9,7 @@
+ INCLUDES = $(XORG_INCS)
+
+ AM_CFLAGS = $(XORG_CFLAGS)
++CFLAGS += -O0
+
+ BUILT_SOURCES = xf86PciIds.h
+
--- /dev/null
+################################################################################
+#
+# xserver_xorg-server -- No description available
+#
+################################################################################
+
+XSERVER_XORG_SERVER_VERSION = 1.2.0
+XSERVER_XORG_SERVER_SOURCE = xorg-server-$(XSERVER_XORG_SERVER_VERSION).tar.bz2
+XSERVER_XORG_SERVER_SITE = http://xorg.freedesktop.org/releases/individual/xserver
+XSERVER_XORG_SERVER_AUTORECONF = YES
+XSERVER_XORG_SERVER_INSTALL_STAGING = YES
+XSERVER_XORG_SERVER_DEPENDANCIES = xlib_libXfont libdrm xlib_libxkbui xproto_compositeproto xproto_damageproto xproto_fixesproto xproto_glproto xproto_kbproto xproto_randrproto freetype xlib_libX11 xlib_libXau xlib_libXaw xlib_libXdmcp xlib_libXext xlib_libXfixes xlib_libXi xlib_libXmu xlib_libXpm xlib_libXrender xlib_libXres xlib_libXtst xlib_libXxf86misc xlib_libXxf86vm xlib_liblbxutil xlib_libxkbfile xlib_xtrans xdata_xbitmaps xproto_bigreqsproto xproto_evieext xproto_fontsproto xproto_inputproto xproto_recordproto xproto_renderproto xproto_resourceproto xproto_trapproto xproto_videoproto xproto_xcmiscproto xproto_xextproto xproto_xf86bigfontproto xproto_xf86dgaproto xproto_xf86driproto xproto_xf86miscproto xproto_xf86rushproto xproto_xf86vidmodeproto xproto_xproto
+XSERVER_XORG_SERVER_CONF_OPT = --disable-xprint --disable-xinerama --disable-xnest --disable-xvfb --disable-dmx --enable-dri --disable-xdmcp --disable-screensaver
+
+$(eval $(call AUTOTARGETS,xserver_xorg-server))
--- /dev/null
+config BR2_PACKAGE_XUTIL_MAKEDEPEND
+ bool "makedepend"
+ default n
+ help
+ makedepend 1.0.0
+ No description available
--- /dev/null
+################################################################################
+#
+# xutil_makedepend -- No description available
+#
+################################################################################
+
+XUTIL_MAKEDEPEND_VERSION = 1.0.0
+XUTIL_MAKEDEPEND_SOURCE = makedepend-$(XUTIL_MAKEDEPEND_VERSION).tar.bz2
+XUTIL_MAKEDEPEND_SITE = http://xorg.freedesktop.org/releases/individual/util
+XUTIL_MAKEDEPEND_AUTORECONF = YES
+XUTIL_MAKEDEPEND_INSTALL_STAGING = YES
+XUTIL_MAKEDEPEND_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xutil_makedepend))
--- /dev/null
+config BR2_PACKAGE_XUTIL_UTIL_MACROS
+ bool "util-macros"
+ default n
+ help
+ util-macros 1.1.5
+ No description available
--- /dev/null
+--- util-macros-1.1.5/xorg-macros.m4.in.orig 2007-06-08 22:23:00.000000000 +0200
++++ util-macros-1.1.5/xorg-macros.m4.in 2007-06-08 22:26:41.000000000 +0200
+@@ -194,7 +194,11 @@
+ XORG_SGML_PATH=$prefix/share/sgml
+ HAVE_DEFS_ENT=
+
+-AC_CHECK_FILE([$XORG_SGML_PATH/X11/defs.ent], [HAVE_DEFS_ENT=yes])
++if test "$cross_compiling" = no; then
++ AC_CHECK_FILE([$XORG_SGML_PATH/X11/defs.ent], [HAVE_DEFS_ENT=yes])
++else
++ HAVE_DEFS_ENT=no
++fi
+
+ AC_PATH_PROG(LINUXDOC, linuxdoc)
+ AC_PATH_PROG(PS2PDF, ps2pdf)
--- /dev/null
+--- util-macros-1.1.5/xorg-macros.m4.in.orig 2007-06-10 11:34:17.000000000 +0200
++++ util-macros-1.1.5/xorg-macros.m4.in 2007-06-10 11:34:20.000000000 +0200
+@@ -423,3 +423,5 @@
+ AM_CONDITIONAL(MAKE_LINT_LIB, [test x$make_lint_lib != xno])
+
+ ]) # XORG_LINT_LIBRARY
++
++AC_SUBST(STAGING_DIR)
--- /dev/null
+################################################################################
+#
+# xutil_util-macros -- No description available
+#
+################################################################################
+
+XUTIL_UTIL_MACROS_VERSION = 1.1.5
+XUTIL_UTIL_MACROS_SOURCE = util-macros-$(XUTIL_UTIL_MACROS_VERSION).tar.bz2
+XUTIL_UTIL_MACROS_SITE = http://xorg.freedesktop.org/releases/individual/util
+XUTIL_UTIL_MACROS_AUTORECONF = YES
+XUTIL_UTIL_MACROS_INSTALL_STAGING = YES
+XUTIL_UTIL_MACROS_INSTALL_TARGET = NO
+
+$(eval $(call AUTOTARGETS,xutil_util-macros))
help
The official X Window system and server.
-comment "X.org X Window System disabled, tinyx selected"
- depends on BR2_PACKAGE_TINYX
-
+comment "X.org 6.8.2 X Window System disabled"
+ depends on BR2_PACKAGE_TINYX||BR2_PACKAGE_XORG7
$(TARGET_DIR)/usr/bin/mcookie: package/xorg/mcookie.c
$(TARGET_CROSS)gcc -Wall -Os -s package/xorg/mcookie.c -o $(TARGET_DIR)/usr/bin/mcookie
-xorg: zlib png pkgconfig expat fontconfig $(STAGING_DIR)$(TARGET_LIBX)/libX11.so.6.2 \
+xorg: zlib png pkgconfig expat fontconfig libdrm $(STAGING_DIR)$(TARGET_LIBX)/libX11.so.6.2 \
$(XORG_LIBX)/libX11.so.6.2 $(TARGET_DIR)/usr/bin/mcookie
xorg-source: $(DL_DIR)/$(XORG_SOURCE) $(DL_DIR)/$(DEJAVU_SOURCE)