summaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
* u-boot: add version 2012.07Gustavo Zacarias2012-09-203-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* dnsmasq: bump to version 2.63Gustavo Zacarias2012-09-201-1/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* alsamixergui: use a normal 'select' statement for the alsa-lib dependencyThomas Petazzoni2012-09-201-3/+4
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* alsa-lib: require thread supportThomas Petazzoni2012-09-206-3/+15
| | | | | | | | | | | | | | | | Some parts of alsa-lib correctly use threads only when available, but some other parts, especially certain PCM plugins, unconditionally require threads. While it would certainly be possible to fix alsa-lib to only use threads when available, it probably doesn't make much sense, since on an embedded system that has audio, we are probably powerful enough to enable thread support in the C library. Fixes: http://autobuild.buildroot.org/results/e14469be7f6171f4c8c0c09c8e32943819f7938b/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* alsa-lib: put BR2_PACKAGE_ALSA_LIB_PYTHON under the existing if conditionThomas Petazzoni2012-09-201-2/+2
| | | | | | | | | | Instead of duplicating the "depends on BR2_PACKAGE_ALSA_LIB", just put BR2_PACKAGE_ALSA_LIB_PYTHON under the existing condition "if BR2_PACKAGE_ALSA_LIB". 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/pulseaudio: fix build-dependency on gettextYann E. MORIN2012-09-201-1/+1
| | | | | | | | | | | | | | | | | | | | In its Config.in, pulseaudio declares a dependency on gettext using the documented construct: select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT but in its .mk file, declares a dependency on the package: PULSEAUDIO_DEPENDENCIES = [...] $(if $(BR2_PACKAGE_GETTEXT),gettext) [...] instead of the documented: $(if $(BR2_NEEDS_GETTEXT),gettext) Fix that. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> CC: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/lshw: add missing dependency on gettextYann E. MORIN2012-09-201-0/+1
| | | | | | | | | | | lshw.mk defines a build-dependency on gettext, but not in its Config.in. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> CC: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gettext: convert to autotools-packageMaxime Ripard2012-09-202-142/+40
| | | | | | | | | | Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr> [yann.morin.1998@free.fr: add license info, build libintl if locales disabled] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> CC: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Remove all references to libintlThomas Petazzoni2012-09-2050-60/+33
| | | | | | | | | | | | | | | From now on, packages only need to select the BR2_PACKAGE_GETTEXT option and depend on the 'gettext' package to get the necessary i18n libraries installed on the target. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr> [yann.morin.1998@free.fr: remove BR2_PACKAGE_LIBINTL] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> CC: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gettext: remove libintl handlingThomas Petazzoni2012-09-202-14/+7
| | | | | | | | | | | | | | | | | | | Now, the gettext package always: * install everything to the staging directory * install the libraries to the target directory Note that this commit removes BR2_PACKAGE_LIBINTL without updating the packages, it is done in a separate commit to ease the review process. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr> [yann.morin.1998@free.fr: keep BR2_PACKAGE_LIBINTL as blind option] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> CC: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gettext: remove the gettext-target make target, unusedThomas Petazzoni2012-09-201-4/+0
| | | | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> CC: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gettext: remove option to build staticallyThomas Petazzoni2012-09-202-21/+0
| | | | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> CC: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* fbdump: only build VGA16 support on x86/x86-64Thomas Petazzoni2012-09-201-0/+9
| | | | | | | | | | | | | | | | | The VGA16 dumping feature probably doesn't make much sense on anything else than x86 and x86-64, as it is accessing I/O ports that seem PC-specific. Moreover, some architectures such as SH4, do not have an implementation of outw() in uClibc, but we quite certainly don't care about VGA16 support for such architectures. Fixes: http://autobuild.buildroot.org/results/e1c860830dd585830cf5ca5f935b81856e992334/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* leafpad: needs host-intltoolThomas Petazzoni2012-09-201-1/+1
| | | | | | | | | Fixes: http://autobuild.buildroot.org/results/d313a67b3deca262844d1043eafa5f6c5b6b7cad/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* dhcp: security bump to version 4.1-ESV-R7Gustavo Zacarias2012-09-201-1/+1
| | | | | | | Bump dhcp to version 4.1-ESV-R7 to fix CVE-2012-3955 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mplayer: not supported on sh4a/sh4aebThomas Petazzoni2012-09-201-0/+3
| | | | | | | | | | | | | | | | | The mplayer configure script says that sh4a is not supported, according to: http://autobuild.buildroot.org/results/c6457c2dea7c1df4d8e0f23995ebfb3285a85aed/build-end.log Apparently, sh4 is supported, but not sh4a, even though it seems that sh4a is a super-set of sh4. So it would probably not be too difficult to get mplayer to build/work for sh4a, but we don't have hardware to test this easily, and we can leave this work to the first developer who will need mplayer on sh4a: let's only support what the upstream package supports. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* vala: bump versionPeter Korsgaard2012-09-201-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libnspr: requires thread support in toolchainThomas Petazzoni2012-09-182-4/+7
| | | | | | | | | Fixes http://autobuild.buildroot.org/results/58e0784e2289a60fa51589d2ce0a7a8ffe40f07e/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* vala: fix documentation build problemThomas Petazzoni2012-09-181-0/+15
| | | | | | | | | | | | | | | | | | | | | | | On gcc10, the build of the host-vala documentation causes a segmentation fault of xsltproc, for some unknown reason. See: http://autobuild.buildroot.org/results/42fea25ac4fe33a56c02d90c361da1c494f79ba3/build-end.log Therefore, this patch fixes the problem by: * Ensuring that host-libxslt is amongst the dependency of vala when documentation is enabled so that we build a well-known version of libxslt/xsltproc to build the documentation. If documentation is not enabled, then we force vala to *not* find xsltproc so that it doesn't try to use the xsltproc of the build machine distribution if available. * Disabling the build of the documentation for host-vala. Note that we need to pass ':' as the xsltproc binary name to teach the configure script that xsltproc is not available. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Revert "poco: fix parallel build failure"Peter Korsgaard2012-09-172-76/+3
| | | | | | | | | | | | | | | This reverts commit 32f4957b153bdabe7af60d529942aca7d1a4783d. Adding the phony objdir target as a prerequisite of all the .o targets doesn't work, as they are then always considered out of date, leading to poco getting rebuilt (without the proper MYSQL_{INC,LIB}DIR settings) at staging-install / target-install time. Instead simply use MAKE1 for the build step. Fixes http://autobuild.buildroot.net/results/1cca8b4115674f12884bcbc0c680efed0fb939ae Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* erlang: don't build the Java stuff on the hostThomas Petazzoni2012-09-161-0/+1
| | | | | | | | | | We don't need the Java stuff, and it causes build failures on certain machines: http://autobuild.buildroot.org/results/99035e89e101c41d5e8b5ef6a025856f4af88ae2/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libmad: add Thumb2 patches from DebianThomas Petazzoni2012-09-162-0/+60
| | | | | | | | | | This fixes recurrent libmad build failures reported by the autobuilder. See: http://autobuild.buildroot.net/results/a10c943e74b6e67e69183a35b5762482e357a75f/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: add new filesystem utilities categoryGustavo Zacarias2012-09-141-15/+18
| | | | | | | | | Add the new filesystem utilities category and move a bunch of packages into it. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* poco: fix parallel build failureBaruch Siach2012-09-142-2/+75
| | | | | | | | | | | This added patch should fix http://autobuild.buildroot.net/results/1bf7e51ef30af9bbf5e423e80ef07212b83bdaf8/. CROSSENV is now required also in the install stages to prevent a rebuild using the host native toolchain. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* kmod: bump versionPeter Korsgaard2012-09-131-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: bump versionPeter Korsgaard2012-09-131-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* vsftpd: add linux-pam supportDanomi Manchego2012-09-131-0/+5
| | | | | Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* wpa_supplicant: add license informationMark Jackson2012-09-121-0/+2
| | | | | | | v2 - license type is GPLv2/BSD-3c as pointed out by Baruch Siach Signed-off-by: Mark Jackson <mpfj@newflow.co.uk> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* patch: bump to version 2.7Gustavo Zacarias2012-09-121-1/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* unionfs: bump to version 0.26Gustavo Zacarias2012-09-121-2/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* hiawatha: bump to version 8.5Gustavo Zacarias2012-09-122-14/+16
| | | | | | [Peter: license is explictly GPLv2, not GPLv2+] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gst-plugin-bad: add musepack optionPeter Korsgaard2012-09-122-0/+11
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gst-plugins-bad: opus + jpegformat: unbreak non-debug buildPeter Korsgaard2012-09-121-0/+78
| | | | | | | | | | opus + jpegformat plugin builds fail when gstreamer is configured with --disable-gst-debug as they are checking the GST_DISABLE_DEBUG symbol instead of GST_DISABLE_GST_DEBUG. Submitted upstream as https://bugzilla.gnome.org/show_bug.cgi?id=683850 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gst-plugin-bad: add opus optionPeter Korsgaard2012-09-112-0/+11
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: add opus-toolsPeter Korsgaard2012-09-113-0/+33
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: add opus audio codec libraryPeter Korsgaard2012-09-113-0/+32
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lcdproc: fix build with high BR2_JLEVEL settingPeter Korsgaard2012-09-111-0/+1
| | | | | | Fixes http://autobuild.buildroot.net/results/646db4b6b284beb4392759a57efffc8d10ee9f49 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pppd: fix build with 3.5+ kernel headersPeter Korsgaard2012-09-112-24/+9
| | | | | | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/8a9369fece696e012249b865708ffee533c5318a Pppd bundles some, but not all needed kernel headers. In Linux 3.5 (and before that 2.6.35) if_pppol2tp.h was changed, so the embedded copy was no longer compatible. if_pppol2tp.h has been part of the exported kernel headers since 2.6.23, so simply drop the bundled copy and use the kernel headers instead, similar to how it is done in Gentoo: https://bugs.gentoo.org/show_bug.cgi?id=427684 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* linux-firmware: update to a more recent git snapshotSven Neumann2012-09-101-1/+1
| | | | | | | | | | | | | | | This update pulls in new ath6k and realtek drivers and updates for libertas and iwlwifi: a707c25 Merge branch 'master' of git://dev.laptop.org/users/dsd/linux-firmware adb6547 rtlwifi/rtl8723e: Add firmware for new driver 4e17394 linux-firmware: ath6k: add firmware for AR6004 hw1.3 bac3567 Marvell SD8787: update to v14.66.9.p96 6a08d14 Marvell SD8686: update to v9.70.20.p0 bbede96 iwlwifi: update firmware for 6205 Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pkg-download: allow relative BR2_DL_DIRPeter Korsgaard2012-09-101-1/+10
| | | | | | And move the BUILDROOT_DL_DIR override here as well for consistency. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* schifra: new packageSimon Dawson2012-09-103-0/+74
| | | | | | [Peter: minor fixes/cleanups] Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* sudo: bump versionPeter Korsgaard2012-09-102-264/+10
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* openssh: bump to version 6.1p1Gustavo Zacarias2012-09-092-53/+185
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute2: bump to version 3.5.1Gustavo Zacarias2012-09-091-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* bison: bump to version 2.6.2Gustavo Zacarias2012-09-091-4/+5
| | | | | | [Peter: License is GPLv3+] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* grep: bump to version 2.14Gustavo Zacarias2012-09-091-1/+3
| | | | | | [Peter: License is GPLv3+] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: bump to 2.12.20Gustavo Zacarias2012-09-091-1/+3
| | | | | | [Peter: License is GPLv3+ LGPLv2.1+] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mpc: bump to version 1.0.1 and license changeGustavo Zacarias2012-09-092-73/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* automake: bump to version 1.11.6Gustavo Zacarias2012-09-091-1/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* less: bump to version 451Gustavo Zacarias2012-09-091-1/+3
| | | | | | [Peter: License is GPLv3+] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>