summaryrefslogtreecommitdiffstats
path: root/package/x11r7
Commit message (Collapse)AuthorAgeFilesLines
* xserver_xorg-server: provide more options for SHA1 libraryThomas Petazzoni2013-01-122-2/+15
| | | | | | | | | | | | | | | | | Until now, the X.org server was forcefully selecting OpenSSL, just to have a SHA1 implementation. However, in fact, the X.org server is capable of using a SHA1 implementation from multiple libraries: OpenSSL, libgcrypt and libsha1 amongst others. So, this patch changes the X.org server package so that we use the SHA1 functions from OpenSSL is OpenSSL is already available, or the SHA1 functions from libgcrypt is libgcrypt is already available, or if neither OpenSSL nor libgcrypt are enabled in the configuration, we select the much smaller libsha1, that has been specifically written to fulfill the X.org server requirements. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xlib_libX11: split the DEPENDENCIES variable on multiple linesThomas Petazzoni2013-01-121-1/+13
| | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xlib_libX11: do not depend on bigreqsproto nor xcmiscprotoThomas Petazzoni2013-01-122-3/+1
| | | | | | | | | | | | | | | The BR2_PACKAGE_XPROTO_BIGREQSPROTO option was selected by xlib_libX11, but xlib_libX11 does not have this protocol package in its DEPENDENCIES. In some builds, it leads to xproto_bigreqsproto to be built as the last package, with no other package depending on it, which doesn't make sense. xproto_xcmiscproto was selected and part of DEPENDENCIES, but an inspection of libX11 configure.ac and libX11 source code shows that it does not depend on xcmiscproto at all. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* x11r7: do not globally select librariesThomas Petazzoni2013-01-121-4/+0
| | | | | | | | | | | | | | It doesn't make sense for BR2_PACKAGE_XORG7 to globally select libraries such as libpng, zlib, expat or fontconfig. For example, if you do a build with just xlib_libX11, then libpng gets built as the last package, without anybody actually depending on it, even if it was selected by BR2_PACKAGE_XORG7. The individual x11r7 packages should select the libraries they need, and add them in their DEPENDENCIES variable. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xserver_xorg-server: add more explanations about the two variantsThomas Petazzoni2013-01-121-1/+12
| | | | | | | [Peter: adjust help text according to Arnout's comments] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xserver_xorg-server: option to build KDrive input driversThomas Petazzoni2013-01-092-0/+48
| | | | | | | | | | | | | | When the Kdrive variant of the X server is selected, the drivers are directly built into the X server. The X server therefore provides options to enable or disable certain drivers, especially input drivers. This patch adds options to be able to enable or disable the evdev, kbd and mouse drivers of Kdrive. [Peter: fix Config.in indentation as pointed out by Arnout] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xserver_xorg-server: rename server-style configuration optionsThomas Petazzoni2013-01-094-10/+10
| | | | | | | | | | | | | | The BR2_PACKAGE_XSERVER_xorg and BR2_PACKAGE_XSERVER_tinyx options used to select the style of X.org server to use are not named consistently with the rest of the Buildroot options (in capital letters and prefixed with the package name). Therefore, we rename those options, and we take care to add the old option names in the BR2_LEGACY infrastructure. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xserver-xorg_server: Mention that TinyX is also known as KdriveThomas Petazzoni2013-01-091-1/+1
| | | | | | | | | | Since several years, the TinyX name has been somewhat deprecated in favor of Kdrive, so mention the "Kdrive" wording in our configuration interface. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* x11r7: fix indentationThomas Petazzoni2013-01-091-4/+3
| | | | | | | | | Fixup the indentation when including the X.org server Config.in to match all the other inclusions in x11r7/Config.in. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* x11r7: remove useless depends on of X.org driversThomas Petazzoni2013-01-0936-36/+0
| | | | | | | | | | | All X.org server drivers are already enclosed in a if BR2_PACKAGE_XSERVER_xorg .. endif block. Now that this option is only set if a X.org server is enabled, there is no need for each individual driver to depend on BR2_PACKAGE_XSERVER_XORG. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* x11r7: move X.org server style optionThomas Petazzoni2013-01-092-18/+18
| | | | | | | | | | The selection between "modular" server and "Kdrive" server really belongs as a sub-option of the X.org server itself, rather than as a global x11r7 option. So we move it under the X.org server option. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: fixup after pthred-stubs renamePeter Korsgaard2013-01-061-1/+1
| | | | | | | Commit 5bd41d165 (pthread-stubs: rename to xlib_libpthread-stubs) renamed the pthread-stubs package but forgot to update the select statements. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xdriver_xf86-video-sunffb: remove packageGustavo Zacarias2013-01-053-25/+0
| | | | | | | | | The FFB was an old SBUS video card used in Sun SPARC workstations from the 90s. Highly unlikely a target for buildroot. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xdriver_xf86-video-suncg6: remove packageGustavo Zacarias2013-01-053-22/+0
| | | | | | | | | The CG6 was an old SBUS video card used in Sun SPARC workstations from the 90s. Highly unlikely a target for buildroot. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xdriver_xf86-video-xgixp: remove packageThomas Petazzoni2013-01-053-48/+0
| | | | | | | | | This X.org driver has been removed from upstream X.org releases and is related to a very specific type of hardware that isn't likely to be used in a Buildroot context. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xdriver_xf86-video-xgi: remove packageThomas Petazzoni2013-01-053-26/+0
| | | | | | | | | This X.org driver has been removed from upstream X.org releases and is related to a very specific type of hardware that isn't likely to be used in a Buildroot context. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xdriver_xf86-video-tseng: remove packageThomas Petazzoni2013-01-053-24/+0
| | | | | | | | | This X.org driver has been removed from upstream X.org releases and is related to a very specific type of hardware that isn't likely to be used in a Buildroot context. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xdriver_xf86-video-suntcx: remove packageThomas Petazzoni2013-01-053-22/+0
| | | | | | | | | This X.org driver has been removed from upstream X.org releases and is related to a very specific type of hardware that isn't likely to be used in a Buildroot context. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xdriver_xf86-video-sunleo: remove packageThomas Petazzoni2013-01-053-22/+0
| | | | | | | | | This X.org driver has been removed from upstream X.org releases and is related to a very specific type of hardware that isn't likely to be used in a Buildroot context. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xdriver_xf86-video-suncg3: remove packageThomas Petazzoni2013-01-053-22/+0
| | | | | | | | | This X.org driver has been removed from upstream X.org releases and is related to a very specific type of hardware that isn't likely to be used in a Buildroot context. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xdriver_xf86-video-suncg14: remove packageThomas Petazzoni2013-01-053-22/+0
| | | | | | | | | This X.org driver has been removed from upstream X.org releases and is related to a very specific type of hardware that isn't likely to be used in a Buildroot context. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xdriver_xf86-video-sisusb: remove packageThomas Petazzoni2013-01-053-25/+0
| | | | | | | | | This X.org driver has been removed from upstream X.org releases and is related to a very specific type of hardware that isn't likely to be used in a Buildroot context. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xdriver_xf86-video-s3virge: remove packageThomas Petazzoni2013-01-052-23/+0
| | | | | | | | | This X.org driver has been removed from upstream X.org releases and is related to a very specific type of hardware that isn't likely to be used in a Buildroot context. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xdriver_xf86-video-s3: remove packageThomas Petazzoni2013-01-053-25/+0
| | | | | | | | | This X.org driver has been removed from upstream X.org releases and is related to a very specific type of hardware that isn't likely to be used in a Buildroot context. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xdriver_xf86-video-rendition: remove packageThomas Petazzoni2013-01-053-23/+0
| | | | | | | | | This X.org driver has been removed from upstream X.org releases and is related to a very specific type of hardware that isn't likely to be used in a Buildroot context. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xdriver_xf86-video-i740: remove packageThomas Petazzoni2013-01-053-24/+0
| | | | | | | | | This X.org driver has been removed from upstream X.org releases and is related to a very specific type of hardware that isn't likely to be used in a Buildroot context. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xdriver_xf86-video-chips: remove packageThomas Petazzoni2013-01-053-23/+0
| | | | | | | | | This X.org driver has been removed from upstream X.org releases and is related to a very specific type of hardware that isn't likely to be used in a Buildroot context. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xdriver_xf86-video-apm: remove packageThomas Petazzoni2013-01-053-25/+0
| | | | | | | | | This X.org driver has been removed from upstream X.org releases and is related to a very specific type of hardware that isn't likely to be used in a Buildroot context. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xdriver_xf86-input-aiptek: remove packageThomas Petazzoni2013-01-053-21/+0
| | | | | | | | | This X.org driver has been removed from upstream X.org releases and is related to a very specific type of hardware that isn't likely to be used in a Buildroot context. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xdriver_xf86-input-acecad: remove packageThomas Petazzoni2013-01-053-21/+0
| | | | | | | | | This X.org driver has been removed from upstream X.org releases and is related to a very specific type of hardware that isn't likely to be used in a Buildroot context. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pthread-stubs: rename to xlib_libpthread-stubsThomas Petazzoni2013-01-055-18/+18
| | | | | | | | | | | | | | In upstream X.org releases, pthread-stubs is named libpthread-stubs, so for consistency reasons, we rename the Buildroot package accordingly. Also, while we're at it, we add a xlib_ prefix to the package to match other X.org libraries in Buildroot. The necessary Config.in.legacy code is added to ensure that users having .config files using the old configuration option name get a warning. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Revert "xlib_libXft: fix xft-config"Peter Korsgaard2013-01-051-8/+0
| | | | | | | | | | This reverts commit 1a1009931f8f126087c0c4c013af63ca2037014a. Fixes http://autobuild.buildroot.net/results/e8c00cf5ec1e3829cd9013710bb1961d9c226c34 xlib_libXft hasn't provided an xft-config script since 2010. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xlib_libXft: fix xft-configStefan Fröberg2013-01-041-0/+8
| | | | | | [Peter: use a single sed invocation] Signed-off-by: Stefan Fröberg <stefan.froberg@petroprogram.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xapp_xman: replace := by =Thomas Petazzoni2013-01-021-3/+3
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xapp_xinput-calibrator: rename directory to match .mk nameThomas Petazzoni2013-01-023-1/+1
| | | | | | | | | | The directory was named xapp_xinput_calibrator, but the .mk file was named xapp_xinput-calibrator.mk, which isn't consistent. Rename the directory to xapp_xinput-calibrator to be consistent with the naming of the .mk file and the other x11r7 directories. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xcb-util-keysyms: new packageThomas Petazzoni2012-12-303-0/+27
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xserver_xorg-server: fix build on AArch64Thomas Petazzoni2012-12-281-0/+23
| | | | | | | | | | | | | | | | Fixes the following build issue: Making all in fb CC libfb_la-fb24_32.lo In file included from fb24_32.c:30:0: fb.h:98:2: error: #error "GLYPHPADBYTES must be 4" See: http://autobuild.buildroot.org/results/9135238abcde29918f8cb61002f1fb9279884a47/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: remove explicit --disable-doc* passingPeter Korsgaard2012-12-123-9/+0
| | | | | | | Now that it is handled globally (pkg-infra: pass --disable-doc if documentation is not enabled). Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xapp_xmh: add dependency on xdata_xbitmapThomas Petazzoni2012-12-092-1/+2
| | | | | | | | | Fixes: http://autobuild.buildroot.org/results/fa059a89a305914700f63d7f0b0d4a3f63beb039/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xlib_libX11: disable nls compose overview generationPeter Korsgaard2012-12-031-2/+4
| | | | | | Perl is only used to generate compose overview documentation. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xproto_xcmiscproto: only build specs if explicitly requestedPeter Korsgaard2012-12-031-1/+2
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xproto_xextproto: only build specs if explicitly requestedPeter Korsgaard2012-12-031-1/+2
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xlib_xtrans: only build documentation if explicitly requestedPeter Korsgaard2012-12-031-0/+2
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xlib_libXdmcp: only build documentation if explicitly requestedPeter Korsgaard2012-12-031-0/+2
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mesa3d: requires host-libxml2 and host-python to generate some filesVellemans Noel2012-11-172-1/+4
| | | | | | | | | | | | mesa3d now generates some C files at build time (related to the OpenGL API) from XML files. This generation process is done using Python scripts that require the libxml2 Python module. Patch based on the initial work of Will Wagner (Thanks Will). Signed-off-by: Vellemans Noel <noel.vellemans@visionbms.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xapp_xvidtune: bump version to 1.0.2 to fix Xmu related build failureThomas Petazzoni2012-11-171-1/+1
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xapp_xmh: bump version to 1.0.2 to fix Xmu related build failureThomas Petazzoni2012-11-171-1/+1
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xapp_xlogo: bump version to 1.0.4 to fix Xmu related build failureThomas Petazzoni2012-11-171-1/+1
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xapp_xload: bump version to 1.1.1 to fix Xmu related build failureThomas Petazzoni2012-11-171-1/+1
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xapp_xfd: bump version to 1.1.1 to fix Xmu related build failureThomas Petazzoni2012-11-171-1/+1
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>