summaryrefslogtreecommitdiff
path: root/package/x11r7
AgeCommit message (Collapse)Author
2010-05-10libxcb: relax host-python regexpPeter Korsgaard
Some python versions print x.y rather than x.y.z as version number, so make regexp more robust. Reported-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-05-08Merge branch 'misc-fixes2' of git://git.busybox.net/~tpetazzoni/git/buildrootPeter Korsgaard
2010-05-07xlib_libX11: re-add a patch to fix the keysymdef issueThomas Petazzoni
When xlib_libX11 was bumped to 1.3.2 in commit 1d956c9190dafbe425e9e02255b540641e27f690, the keysymdef patch was dropped. However, this patch is still needed in order to be able to tell ./configure where the keysymdef header file is installed. The patch has been updated for 1.3.2. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-05-07libxcb: fix path to Python modulesThomas Petazzoni
When building libxcb, the variable XCBPROTO_XCBPYTHONDIR must point to the location where the Python modules needed to run the c_client.py program are installed. The path $(STAGING_DIR)/usr/lib/python2.6/site-packages was hardcoded. However, it doesn't work when the version of Python installed on the host is Python 2.5. Therefore, add a little bit of magic to compute the host Python version. We also verify that Python is available on the host, as we don't build it in Buildroot. Fixes bug #1531. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-05-06xfonts: fix dependencies and build processThomas Petazzoni
Instead of assuming that mkfontdir and mkfontscale are available on the development system, use the one installed in $(HOST_DIR). The FCCACHE variable is removed, because, for some reason, the installation process of xfonts disables the call to fc-cache when a DESTDIR is passed. See the definition of XORG_FONT_FCCACHE in aclocal.m4 in font packages: AC_DEFUN([XORG_FONT_FCCACHE],[ AC_PATH_PROG(FCCACHE, fc-cache) FCCACHE_WARN='echo "** Warning: fonts.cache not built" ; echo "** Generate this file manually on host system using fc-cache"' if test x"$FCCACHE" = x ; then RUN_FCCACHE="${FCCACHE_WARN}" else RUN_FCCACHE='@(if test -z "$(DESTDIR)"; then echo $(FCCACHE) $(fontdir); $(FCCACHE) $(fontdir); else' RUN_FCCACHE="${RUN_FCCACHE} ${FCCACHE_WARN} ; fi)" fi AC_SUBST([RUN_FCCACHE]) ]) In addition to this, we update the font dependencies to include font-utils for the host, mkfontdir for the host, mkfontscale for the host and bdftopcf for the host. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-05-06xapp_mkfontdir: enable for the hostThomas Petazzoni
When compiling xfonts, mkfontdir is needed for the host, therefore, enable it. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-05-06Enable xapp_bdftopcf dependencies for the hostThomas Petazzoni
Now that xapp_bdftopcf is enabled on the host, we also need its dependencies to be available for the host. The dependency of host-xapp_bdftopcf is host-xlib_libXfont, which itself depends on a bunch of other packages. Some of them were already available for the host, some not (xfont_encodings, xlib_xtrans, xproto_fontcacheproto, xproto_fontsproto) and are therefore added by this patch. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-05-06xapp_bdftopcf: enable for the hostThomas Petazzoni
Compiling xfonts require having bdftopcf installed on the host. Therefore, enable host support for this package. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-05-06xfont_font-util: enable host packageThomas Petazzoni
When compiling xfonts, host utilities like bdftopcf or ucs2any, part of xfont_font-util are needed. Until now, xfont_font-util was installing ugly symbolic links, assuming that these tools were available on the development machine. This patch enables the host package for xfont_font-util, removes the post-install.sh script, and keeps only the useful part of this script in a post install hook. host-xfont_font-util will be used later by xfont packages. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-05-03X11 OpenChrome driver depends on libxcompositePaulius Zaleckas
Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-05-02packages: remove useless HOST_*_LIBTOOL_PATCHThomas Petazzoni
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-05-01Make Mesa3D optional for X11Darius Augulis
[Peter: XF86DRIPROTO should only be selected if mesa is enabled] Signed-off-by: Darius Augulis <augulis.darius@gmail.com> Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-05-01xda_xcursor-themes: depends on libXcursorDarius Augulis
While at it convert spaces to TABs Signed-off-by: Darius Augulis <augulis.darius@gmail.com> Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-05-01xlib_libXtst: depends on libXiPaulius Zaleckas
Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-22X11R7.5 - remove all version information from Config.in filesWill Wagner
As discussed on the list, don't want to have to change the Config.in file when we bump the version of a package Signed-off-by: Will Wagner <will_wagner@carallon.com> Acked-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-22libXaw: do not build docs (fails if missing host tools), also cleanup makefileWill Wagner
Signed-off-by: Will Wagner <will_wagner@carallon.com> Acked-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-22Remove XEvIE (app & proto) as removed from X11R7.5Will Wagner
[Peter: remove select from xserver Config.in] Signed-off-by: Will Wagner <will_wagner@carallon.com> Acked-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-22Remove XFree86-Misc (lib & proto) as removed from X11R7.5Will Wagner
[Peter: also remove selects from affected Config.in's] Signed-off-by: Will Wagner <will_wagner@carallon.com> Acked-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-22Remove XTrap (app, lib & proto) as removed from X11R7.5Will Wagner
Signed-off-by: Will Wagner <will_wagner@carallon.com> Acked-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-22xserver_xorg-server: bump version, improve option supportWill Wagner
Later version of xserver no longer need configure hack to say where mesa3d is located. Signed-off-by: Will Wagner <will_wagner@carallon.com> Acked-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-08xdriver_xf86-video-intel: bump versionWill Wagner
[Peter: remove version from Config.in help] Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-08xlib_libXxf86misc: bump versionWill Wagner
[Peter: remove version from Config.in help] Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-08xproto_evieext: bump versionWill Wagner
[Peter: remove version from Config.in help] Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-08xkeyboard-config: bump versionWill Wagner
Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-08xlib_libXfontcache: bump versionWill Wagner
[Peter: remove version from Config.in help] Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-08xlib_libpciaccess: bump versionWill Wagner
[Peter: remove version from Config.in help] Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-08xproto_xf86miscproto: bump versionWill Wagner
[Peter: remove version from Config.in help] Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-08xproto_fontcacheproto: bump versionWill Wagner
[Peter: remove version from Config.in help] Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-08xproto_dri2proto: bump versionWill Wagner
[Peter: remove version from Config.in help] Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-08pthread-stubs: bump versionWill Wagner
Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-08xlib_libXau: remove duplicate dependanciesWill Wagner
Signed-off-by: Will Wagner <will_wagner@carallon.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-08correct name of xapp_xinput.mkWill Wagner
Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-08mesa3d: bump version and convert to autotoolsWill Wagner
Note this version requires a recent kernel with KMS support as it is currently configured Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-03-31xlib_libX11: don't build documentationPeter Korsgaard
Closes #1387 The documentation step needs working groff and ps2pdf on the host, and only slows down the build, so just disable it. At the same time, cleanup the overlong _CONF_OPT line. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-03-29xlib_libXfont: don't build devel documentationPeter Korsgaard
Adds to the build time and brings in an xmlto dependency Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-02-28Bump X11 version to 7.5Paulius Zaleckas
Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
2010-02-28Bump font-xfree86-type1 to 1.0.2Paulius Zaleckas
Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
2010-02-28Bump font-winitzki-cyrillic to 1.0.1Paulius Zaleckas
Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
2010-02-28Bump font-sun-misc to 1.0.1Paulius Zaleckas
Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
2010-02-28Bump font-sony-misc to 1.0.1Paulius Zaleckas
Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
2010-02-28Bump font-screen-cyrillic to 1.0.2Paulius Zaleckas
Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
2010-02-28Bump font-schumacher-misc to 1.1.0Paulius Zaleckas
Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
2010-02-28Bump font-mutt-misc to 1.0.1Paulius Zaleckas
Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
2010-02-28Bump font-misc-misc to 1.1.0Paulius Zaleckas
Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
2010-02-28Bump font-misc-meltho to 1.0.1Paulius Zaleckas
Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
2010-02-28Bump font-misc-ethiopic to 1.0.1Paulius Zaleckas
Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
2010-02-28Bump font-misc-cyrillic to 1.0.1Paulius Zaleckas
Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
2010-02-28Bump font-micro-misc to 1.0.1Paulius Zaleckas
Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
2010-02-28Bump font-jis-misc to 1.0.1Paulius Zaleckas
Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
2010-02-28Bump font-isas-misc to 1.0.1Paulius Zaleckas
Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>