summaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
* packages: remove all := signsThomas Petazzoni2013-01-2042-148/+170
| | | | | | | | | | | Finally get rid of all := used for variable definitions in packages, as we suggest in our manual and during the review of new packages. While I was at it, I also sometimes added a few missing new lines between the header and the first variable definition. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* speex: add license informationsThomas Petazzoni2013-01-201-0/+3
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pkgconf: add license informationsThomas Petazzoni2013-01-201-0/+2
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libogg: add license informationsThomas Petazzoni2013-01-201-1/+3
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libcap: add license informationsThomas Petazzoni2013-01-201-0/+3
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* icu: add license informationsThomas Petazzoni2013-01-201-0/+3
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* cmake: add license informationsThomas Petazzoni2013-01-201-0/+8
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* cdrkit: add license informationsThomas Petazzoni2013-01-201-0/+2
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* axel: add license informationsThomas Petazzoni2013-01-201-0/+2
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* wireless_tools: don't call ldconfigThomas Petazzoni2013-01-201-2/+2
| | | | | | | | | | The wireless_tools installation process calls ldconfig to update the ld.so cache, but in a cross-compilation situation, it doesn't make sense, and simply takes time for nothing. To avoid this, we pass LDCONFIG=/bin/true during the wireless_tools installation steps. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gettext: fix static build failureGustavo Zacarias2013-01-201-0/+3
| | | | | | | | | | When static libraries are preferred we don't build dynamic libraries so it fails on the install phase. So don't try to do it for those cases. Fixes: http://autobuild.buildroot.net/results/651537ae1909b039e0cfc5c104ee87f93a9e5792/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* sdl_gfx: bump versiongilles.talis@gmail.com2013-01-191-1/+4
| | | | | | [Peter: use 2.0.23 instead of .24 because of build issues with .24] Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* sdl_mixer: bump to version 1.2.12gilles.talis@gmail.com2013-01-191-3/+6
| | | | | Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* sdl_ttf: bump to version 2.0.11gilles.talis@gmail.com2013-01-191-3/+6
| | | | | Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* uboot-tools: fix build failure for the targetGustavo Zacarias2013-01-191-0/+37
| | | | | | | | | The patch to drop config.h is still required, it just needed a tweak. Fixes: http://autobuild.buildroot.net/results/3653c0e3ec460c710524468987d5192337cf210e/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* cairo: add missing dependency on xlib_libXextThomas Petazzoni2013-01-192-1/+2
| | | | | | | | | | | | The X.org backend of Cairo now requires xlib_libXext. See http://permalink.gmane.org/gmane.comp.lib.cairo/23385. Fixes: http://autobuild.buildroot.org/results/795404665ec74a7ac929fdf8caf1397c9c54d80d/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* cairo: bump version to 1.12.10Thomas Petazzoni2013-01-191-1/+1
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gd: explictly disable freetype support when not availablePeter Korsgaard2013-01-181-0/+2
| | | | | | | Otherwise it will try to run freetype-config from the host to check for availability. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gd: ensure libpng-config from staging is usedJean-Christian de Rivaz2013-01-182-0/+34
| | | | | | | | | | | | | The gd package configure call 'libpng-config' to get the compiler flags required to use the libpng. The configure correctly allow to specify the path of the staging libpng-config by using the ac_cv_path_LIBPNG_CONFIG but the configure.ac call simply 'libpng-config' instead of the specified one. The configure.ac is now modified to call the specified libpng_config. [Peter: explictly pass --without-png instead of auto detect] Signed-off-by: Jean-Christian de Rivaz <jc@eclis.ch> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* uboot-tools: bump to version 2013.01Gustavo Zacarias2013-01-182-32/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* vim: bump to version 7.3-762Gustavo Zacarias2013-01-172-2/+5
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libsigc: bump to version 2.2.11Gustavo Zacarias2013-01-171-2/+5
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* squid: bump to version 3.2.6Gustavo Zacarias2013-01-171-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* cifs-utils: bump to version 5.9Gustavo Zacarias2013-01-171-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* proxychains-ng: copy proxychains.conf to target dirStefan Fröberg2013-01-161-0/+7
| | | | | | | | proxychains installation does not copy proxychains.conf to $(TARGET_DIR)/etc anymore so we have to do it manually now. Signed-off-by: Stefan Fröberg <stefan.froberg@petroprogram.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* httping: also pass configuration (SSL/TFO/DEBUG) doing make installPeter Korsgaard2013-01-161-5/+6
| | | | | | | | | | Fixes http://autobuild.buildroot.net/results/144e146ad3223748c4f06f884aeff93e8c0c2de3 When SSL is enabled (which it is by default) an extra source file is built, so ensure the same configuration is used at 'make install' time as during the build step. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* proxychains updated to proxychains-ng 4.4Stefan Fröberg2013-01-155-18/+18
| | | | | Signed-off-by: Stefan Fröberg <stefan.froberg@petroprogram.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ltp-testsuite: add license infoSamuel Martin2013-01-151-0/+2
| | | | | | [Peter: GPLv2 / GPLv2+ mix as pointed out by Arnout] Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* opkg: fix configure step by adding host-pkgconf dependencyThomas Petazzoni2013-01-151-0/+2
| | | | | | | | | | | | | The opkg configure.ac uses the PKG_CHECK_MODULES() m4 macro, which is provided by the .m4 files installed by host-pkgconf, so we must have this package as a dependency. Fixes: http://autobuild.buildroot.org/results/069fcab6e7dd5a1f07251ba6f52f65643a2f7594/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* tslib: fix license infoLuca Ceresoli2013-01-151-1/+1
| | | | | Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* openvpn: fix init script namePeter Korsgaard2013-01-152-5/+3
| | | | | | | | | | | | | | Our default (busybox) rc.S implementation requires init scripts to be named S??*, so rename the openvpn one to S60openvpn (E.G. after network). At the same time remove the deprecated check-if-custom-skeleton-provided-file and just always install the init script. People can always fixup/remove it in their post-build script if needed. Also name the init script source the same as the destination file name in TARGET_DIR for consistency. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* openvpn: bump to version 2.3.0Gustavo Zacarias2013-01-154-47/+126
| | | | | | | | | | | | | Toolchain IPv6 support isn't optional any more. New PolarSSL backend besides the usual OpenSSL one. New small binary option, reduces binary file size ~100 KiB depending on target architecture. Removed no crypto option - it still requires some SSL library headers and it's pointless anyway, after all we're talking about a VPN solution here. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: bump to version 3.1.6Gustavo Zacarias2013-01-152-3/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gmp: fix build on AArch64Thomas Petazzoni2013-01-151-0/+46
| | | | | | | | | | | Include an upstream patch to fix the build problem on AArch64. Fixes: http://autobuild.buildroot.org/results/1fb1b3678277e6b0cef220405c54ffb8299c9da1/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* boost: slightly reduce the verbosity of the buildThomas Petazzoni2013-01-151-2/+2
| | | | | | | | | | | | | | | | | | | At the moment, the boost build is very verbose, it gives both the Jam-level command being executed, and the underlying system command being executed, with lots of newlines. Makes it hard to see where the failure is when there is one. So, we reduce the verbosity level to -d+1, which only gives the Jam-level command. So now, it looks like: common.copy /home/test/outputs/e/host/usr/aarch64-buildroot-linux-gnu/sysroot/usr/include/boost/geometry/multi/multi.hpp common.mkdir /home/test/outputs/e/host/usr/aarch64-buildroot-linux-gnu/sysroot/usr/include/boost/geometry/strategies gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.7.3/release/threading-multi/icu.o gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.7.3/release/threading-multi/regex_debug.o gcc.compile.c++ bin.v2/libs/regex/build/gcc-4.7.3/release/threading-multi/regex_raw_buffer.o Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* boost: fix build problem by always building a threaded versionThomas Petazzoni2013-01-152-11/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Boost normally allows to build a non-threaded variant by passing threading=single or a multi-threaded variant by passing threading=multi. Unfortunately, the build of threading=single doesn't seem to work any more, due to bizarre things in the build system. We get "duplicate target" errors, that according to http://lists.boost.org/boost-build/2012/11/26582.php should appear if we ask for both threading=single,multi. But it seems to happen even in the threading=single case. Since Boost is such a big C++ beast, it probably doesn't make much sense to try to support it on toolchains that don't have thread support. So, we make the boost package depend on thread support. If someone cares enough in getting Boost to work in a non-threaded environment, then we can always revert back. Note that the boost package has no reverse dependencies in Buildroot, so we don't need to propagate this new dependency anywhere. Fixes: http://autobuild.buildroot.org/results/439e72ac74c8058f30977e6abc39acd6379a17d3/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* httping: new packageGilles Talis2013-01-154-0/+100
| | | | | | | | | | Httping is like 'ping' but for http-requests. Give it an url, and it'll show you how long it takes to connect, send a request and retrieve the reply (only the headers) [Peter: Drop ssl option, use make install, misc cleanup] Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/tvheadend: requires IPv6Yann E. MORIN2013-01-151-3/+3
| | | | | | | | Fixes autobuild failure: http://autobuild.buildroot.org/results/40cc7428b25afe3cddae50ec2098ee43127a2f41/ Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* webkit: fix compilation without X11Stephan Hoffmann2013-01-141-0/+33
| | | | | | | | | | | | | | | | | | Fixes: http://autobuild.buildroot.net/results/86534588d192fe1515ce520c109e884864871d94/ and others. Webkit includes X11 headers even when configuerd for DirecfFB, because the test within GNUmakefile.in does not work properly. Autoreconfigure fails because of incompatibility with buildroot's autotools version. For now a patch for GNUmakefile.in fixes this problem. Since webkit release is quite old it doesn't seem to be worth doing more, on the long run we should bump the version. Signed-off-by: Stephan Hoffmann <sho@relinux.de> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mcrypt: rediff CVE-2012-4527 to fix issue with old patch versionsPeter Korsgaard2013-01-141-29/+20
| | | | | | | | | | Fixes http://autobuild.buildroot.org/results/e648bfb37051c3b73712d2c7881193e9376f2812/ patch 2.5.9 (but not E.G. 2.6.1) had problems with the upstream CVE patch, so rediff it to make it work. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* minicom: uses fork()Peter Korsgaard2013-01-141-0/+1
| | | | | | Fixes http://autobuild.buildroot.org/results/83db7c1e6edcfae7edd220a9accb99cb96649feb Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xtensa: disable package strace for XtensaChris Zankel2013-01-141-0/+1
| | | | | | | The current version of strace does not support the Xtensa architecture. Signed-off-by: Chris Zankel <chris@zankel.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* curlftpfs: new packageRichard Braun2013-01-146-0/+121
| | | | | | | [Peter: updated with BR changes, Config.in tweaks, dropped configure.ac patch] Signed-off-by: Richard Braun <rbraun@...> Signed-off-by: Alexander Varnin <fenixk19@mail.ru> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Allow selection of individual Liberation font setsCharles Manning2013-01-142-1/+36
| | | | | | | | We don't always want all the font sets on small systems. [Peter: cleanup Config.in, ensure target dir gets created first] Signed-off-by: Charles Manning <cdhmanning@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* wpa-supplicant: add options to enable the new DBus interfaceSven Neumann2013-01-142-5/+56
| | | | | | | | | | | | | Allow to configure the DBus interfaces that the wpa_supplicant binary should support (old or new or both). Also allow to enable introspection support on the new DBus interface. Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> (build-test with all features enabled) Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* linux-fusion: don't override CFLAGS/LDFLAGSArnout Vandecappelle2013-01-142-55/+3
| | | | | | | | | | | | | | Putting $(TARGET_CONFIGURE_OPTS) after $(MAKE) overrides the Makefile's CFLAGS and LDFLAGS. Some of these flags are required, however. So instead pass these things in the environment, which allows the Makefile to append to the flags. This removes the need for the patch, because now the correct -I options are added. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Tested-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Pass --static rather than -static in LDFLAGS when BR2_PREFER_STATIC_LIBANDY KENNEDY2013-01-141-1/+1
| | | | | | | | | | | | | | | | The following changes LDFLAGS from -static to --static if building with BR2_PREFER_STATIC_LIB so that various components actually build statically. Libtool interpret -static as linking statically with libraries that will not be installed to the libdir; you have to pass it -all-static to force static linking. Or, pass --static, which libtool passes on blindly to gcc. gcc and (GNU) ld both interpret --static the same as -static (although this isn't documented). Signed-off-by: Andy Kennedy <andy.kennedy@adtran.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* infozip: new packageJan Pedersen2013-01-143-0/+32
| | | | | | | | | | This commit adds a package for infozip, compression and file packaging/archive utility. [Peter: fix trailing spaces in help, long line] Signed-off-by: Jan Pedersen <jp@jp-embedded.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libelementary: only use libethumb if libedbus is available.Arnout Vandecappelle (Essensium/Mind)2013-01-141-1/+3
| | | | | | | | | | | | libelementary uses the ethumb_client library, but that one is only built if libedbus is available. So fixup the --enable/disable-ethumb according to the selection of BR2_PACKAGE_LIBEDBUS. Fixes e.g. http://autobuild.buildroot.net/results/14ef98da6b0632e24514fef696fae9a650c90c96 Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gst-fsl-plugins: new packageArnout Vandecappelle (Essensium/Mind)2013-01-146-0/+259
| | | | | Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>