summaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
* libgcrypt: disable testsGustavo Zacarias2012-12-261-1/+8
| | | | | | | | The testsuite uses fork() hence fails on !MMU targets. We don't use/install these so just get rid of them. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libfuse: needs mmuGustavo Zacarias2012-12-263-0/+3
| | | | | | | | Fixes http://autobuild.buildroot.net/results/5c64ea05e0ffedcc78f5255f6f76afa1f159cda0 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* cdrkit: needs mmuGustavo Zacarias2012-12-261-0/+1
| | | | | | | | Fixes autobuild.buildroot.net/results/10129d06088149a5ce9bd9762b5a17e5d89eec34 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* dosfstools: fix download linkMikhail Boiko2012-12-261-1/+1
| | | | | Signed-off-by: Mikhail Boiko <mikhailboiko85@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* new package: proxychainsStefan Fröberg2012-12-233-0/+18
| | | | | Signed-off-by: Stefan Fröberg <stefan.froberg@petroprogram.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gettext: disable tools tests when no threadsGustavo Zacarias2012-12-231-0/+6
| | | | | | | | | | Disable the gettext-tools tests build since they break when a full toolchain without threads is being used. Fixes: http://autobuild.buildroot.net/results/a187c76c359787f8e2ec6e12da2d7b1e33ed43c5/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pulseaudio: needs threadsGustavo Zacarias2012-12-233-2/+5
| | | | | | | | Fixes: http://autobuild.buildroot.net/results/4d6a5793e475683fbc58ccaf03cf7816233a5052/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* dstat: needs mmuGustavo Zacarias2012-12-211-0/+1
| | | | | | | | Because python needs MMU, fixes: http://autobuild.buildroot.net/results/7bb46ed3ffb46741b7cb7e3edd33f4729409b2ef/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ffmpeg: make ARM optimizations explicitGustavo Zacarias2012-12-211-2/+9
| | | | | | | | | | | | | | The ffmpeg configure script tries to autodetermine ARM optimizations by building a small code snippet with AS. If AS allows higher-level (>generic) assembly instructions then it passes and enables the relevant optimization path. Some toolchains allow/default to more than generic asm and then fail when the real code is built. Fixes: http://autobuild.buildroot.net/results/b6e1225a07a58cc7544e37bc55675be71e2b5088/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mplayer: prevent selection on Microblaze and AArch64Thomas Petazzoni2012-12-201-3/+2
| | | | | | | | | | | | | MPlayer wants to have some "support" for each architecture, and for now, it doesn't know about Microblaze and AArch64, so prevent the selection of MPlayer on those architectures. For Microblaze, fixes: http://autobuild.buildroot.org/results/4e6e0d15694345ded649c92251cc2173dc45fe7c/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libcap: disable programsGustavo Zacarias2012-12-191-1/+7
| | | | | | | | Disable libcap programs since they use fork and fail on !MMU systems. They're not usually used, if someone wants them they can add an option. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pcmanfm: replace dependency on X.org server by dependency on libX11Thomas Petazzoni2012-12-192-1/+2
| | | | | | | | | There is no reason for a client program like pcmanfm to depend on the X.org server. Instead, it should depend on the appropriate X client libraries, in this case libX11. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pcmanfm: use a download URL from downloads.sourceforge.netThomas Petazzoni2012-12-191-1/+1
| | | | | | [Peter: use PCMANFM_VERSION in _SITE] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pcmanfm: link against libX11 to avoid build failureThomas Petazzoni2012-12-192-0/+21
| | | | | | | | | | | | | Fixes: /home/test/outputs/allpkg/host/opt/ext-toolchain/bin/../lib/gcc/arm-linux-gnueabihf/4.7.3/../../../../arm-linux-gnueabihf/bin/ld: fm-desktop.o: undefined reference to symbol 'XSendEvent' /home/test/outputs/allpkg/host/opt/ext-toolchain/bin/../lib/gcc/arm-linux-gnueabihf/4.7.3/../../../../arm-linux-gnueabihf/bin/ld: note: 'XSendEvent' is defined in DSO /home/test/outputs/allpkg/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/lib/libX11.so.6 so try adding it to the linker command line /home/test/outputs/allpkg/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/lib/libX11.so.6: could not read symbols: Invalid operation collect2: error: ld returned 1 exit status make[4]: *** [pcmanfm] Error 1 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* orc: bump to version 0.4.16Sven Neumann2012-12-191-1/+1
| | | | | | | | The gstreamer-1.0 plug-ins require this version for ORC acceleration. Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ortp: disable WerrorGustavo Zacarias2012-12-191-0/+1
| | | | | | | | Disable -Werror for the ortp build, fixes: http://autobuild.buildroot.net/results/b869fcfdfdb9d1ec4864b86c6953b0242200c502 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libcurl: needs MMUMaxime Ripard2012-12-191-0/+1
| | | | | | | | Fixes http://autobuild.buildroot.org/results/5a502f16ad94a410ca21c9a7f223d6c12086bbb5/build-end.log Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* metacity: fix link issue against libmThomas Petazzoni2012-12-182-0/+96
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* python-bottle: new packageArnout Vandecappelle (Essensium/Mind)2012-12-183-0/+31
| | | | | Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* matchbox-desktop: fix link issue against libdlThomas Petazzoni2012-12-181-0/+5
| | | | | | | | | | | | | matchbox-desktop uses dlopen(), so it needs to link against libdl. The configure.ac and Makefile.am have the necessary provisions to do so, but the included configure script does not replace LIBADD_DL in src/Makefile.am as it should. Therefore, we force the autoreconf of the package, which solves the problem. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xstroke: mark as deprecatedThomas Petazzoni2012-12-181-0/+2
| | | | | | | | | xstroke is just a tarball on the avr32linux.org site, the 0.6 version has been released in April 2004, so we can consider the upstream to be dead. So let's mark this package as deprecated. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xstroke: fix link issueThomas Petazzoni2012-12-183-1/+39
| | | | | | | | | | | | | | | | | The allyespackageconfig builds have trigerred a link issue on xstroke. In fact, xstroke must be linked against Xrender, Xext and dl in addition to the other libraries it was already be linked against. We fix that by adding a patch that modifies configure.ac and Makefile.am, and enabling autoreconf for this package. In addition, since xstroke uses directly Xrender and Xext, we add those dependencies to the package. In practice, it doesn't change anything, since some of the xstroke dependencies were already pulling those libraries, but as xstroke uses directly Xrender and Xext, it makes sense to have them as dependencies as well. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libidn: bump to version 1.26Gustavo Zacarias2012-12-181-1/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ethtool: bump to version 3.7Gustavo Zacarias2012-12-181-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* bison: bump to version 2.7Gustavo Zacarias2012-12-181-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* linux-firmware: add support for the Marvell Wifi-Ex SD8787 firmwareThomas Petazzoni2012-12-182-0/+13
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libseccomp: Fix install option orderMaxime Ripard2012-12-181-1/+1
| | | | | | | | | | | Commit ca0e5152 introduced a bad option order, leading to another build failure. Fixes http://autobuild.buildroot.org/results/0e7de5e7c792b5ef195ee98fe1e7bb1c6b220bfb/build-end.log Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gadget-test: inherit arch dependencies from libaioMaxime Ripard2012-12-181-1/+6
| | | | | | | | Fixes http://autobuild.buildroot.org/results/7ad59020d4584a777d721352ae73ab2dd33326d7/build-end.log Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libseccomp: Remove the use of /proc when installing pc filesMaxime Ripard2012-12-182-0/+42
| | | | | | | Fixes http://autobuild.buildroot.org/results/d9e12bb0f5b2df9064adf3772bcf479b51d72468 Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libglib2: fix g_print()Benoît Thébaudeau2012-12-181-1/+2
| | | | | | | | | | | | | | | | | If GLib is cross-compiled, the default printf settings that it selects are wrong for glibc. This leads to issues with the g_print() functions, e.g. "Aborted" errors returned by gst-inspect. This patch fixes this issue by setting printf configuration options compatible with glibc. These options should also be compatible with uClibc. This solution has been suggested for LTIB by Rogerio Nunes: https://community.freescale.com/thread/302734 Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* netatalk: fix 64-bit buildArnout Vandecappelle (Essensium/Mind)2012-12-182-1/+51
| | | | | | | | | | | | | The configure script sets LD_LIBRARY_PATH to the staging directory, which makes the `ls` that is called in one of the tests fail. Fix by not setting LD_LIBRARY_PATH when cross-compiling. The patch has been sent upstream. Also remove the BDB_LIB variable: it isn't used. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* jpeg: fix make sourceArnout Vandecappelle2012-12-171-0/+1
| | | | | | | | 'make source' fails because the host-jpeg-source target doesn't exist anymore. Fix this by adding this target explicitly. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pciutils: work around race condition in make install with high BR2_JLEVELPeter Korsgaard2012-12-171-2/+2
| | | | | | | | | Fixes http://autobuild.buildroot.net/results/908d7368c8dc8e320fd33f3193039f5925adc352 make install and install-lib can race against eachother causing 'install' to fail. Work around it using MAKE1. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/spice: Only builds on x86Maxime Ripard2012-12-171-0/+2
| | | | | | | | | | | The spice configure script explicitly checks for x86 or x86-64, so disable it on other architectures Fixes http://autobuild.buildroot.org/results/7f7e2d46542a685b93211f76ad063f8b2ba7b5e5/build-end.log Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/libseccomp: works only on x86Yann E. MORIN2012-12-171-0/+1
| | | | | | | | | As it is, the libseccomp code explicitly checks for x86 (32- or 64-bit), so it can't work on other architectures. Reported-by: Peter Korsgaard <jacmet@uclibc.org> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* netatalk: fix STAGING_DIR typoPeter Korsgaard2012-12-161-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/keyutils: new packageYann E. MORIN2012-12-168-0/+222
| | | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Jarkko Sakkinen <jarkko.sakkinen@iki.fi> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/libseccomp: new packageYann E. MORIN2012-12-164-0/+53
| | | | | | [Peter: fix typo in help text] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/spice: enable slirp supportYann E. MORIN2012-12-162-1/+14
| | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/spice: enable GUIYann E. MORIN2012-12-162-1/+15
| | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/spice: enable clientYann E. MORIN2012-12-162-1/+20
| | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/spice: new packageYann E. MORIN2012-12-163-0/+86
| | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/spice-protocol: new packageYann E. MORIN2012-12-163-0/+27
| | | | | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/slirp: new packageYann E. MORIN2012-12-163-0/+47
| | | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/cegui06: new packageYann E. MORIN2012-12-164-0/+82
| | | | | | | | | | Although there are more recent versions of CEGUI, we are stuck with 0.6.2b for use by spice. [Peter: add C++ dependency] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Arnout Vandecappelle <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/python-pyparsing: new packageYann E. MORIN2012-12-163-0/+50
| | | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/celt051: new packageYann E. MORIN2012-12-163-0/+46
| | | | | | | | [Peter: move to Libraries->Audio/Sound] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Arnout Vandecappelle <arnout@mind.be> Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* usbredir: bump versionPeter Korsgaard2012-12-161-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/usbredir: new packageYann E. MORIN2012-12-163-0/+59
| | | | | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Peter Korsgaard <jacmet@uclibc.org> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/vde2: new packageYann E. MORIN2012-12-164-0/+70
| | | | | | | | | | VDE is an ethernet compliant virtual network that can be spawned over a set of physical computer over the Internet. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Peter Korsgaard <jacmet@uclibc.org> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>