summaryrefslogtreecommitdiff
path: root/package
AgeCommit message (Collapse)Author
2011-04-05libv4l: add options to install utilitesPeter Korsgaard
These have extra deps though (C++ for some, argp.h for others which is not available on uClibc). Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-04-04libv4l: Add new package libv4lKlaus Schwarzkopf
[Peter: move to hw section] Signed-off-by: Klaus Schwarzkopf <schwarzkopf@sensortherm.de> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-04-04tslib: bump versionLuca Ceresoli
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-04-04mtd: bump versionH Hartley Sweeten
Bump mtd-utils version to 1.4.4 which contains the flash_eraseall -j bug-fix. http://lists.infradead.org/pipermail/linux-mtd/2011-March/034505.html Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-04-04avahi: bump versionPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-04-03mpd: fix build with tremor supportPeter Korsgaard
Tremor needs the common ogg support (in _ogg_common.c) to get built, similar to how it is done when libvorbis is used. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-04-03qt: speed up qmake buildThomas Petazzoni
qmake is built during the execution of Qt ./configure script, so it is built just with a normal make, not taking advantage of parallel compilation. Passing MAKEFLAGS=-j$(BR2_JLEVEL) allows to speed up the qmake compilation process quite a bit. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-04-03qt: fix plugin installation and change plugin pathThomas Petazzoni
Since the conversion of Qt to GENTARGETS in 421cda1fd078f5fa7902f05bd1d2021fd101d9ea, plugin installation could break in some situations, for example if SQL support was enabled, but without any SQL driver: the sql plugin directory doesn't exist, but our qt.mk wanted to copy it. This patches simplifies the plugin handling a bit, and basically copies all Qt plugins installed in the $(STAGING_DIR) to the $(TARGET_DIR), assuming Qt has only built and installed the needed plugins. Moreover, instead of installing plugins to usr/plugins, which is a odd location, we install them in usr/lib/qt/plugins. This requires a small patch to Qt ./configure script so that even when -hostprefix is used, the -plugindir option is taken into account. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-04-03readline: link directly against ncursesMike Frysinger
Fixes link issues on uClibc for applications using libreadline. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-04-02lighttpd: fix build without webdav supportPeter Korsgaard
Fix a typo in the --without-webdav-* handling. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-04-01lighttpd: cleanup sub optionsPeter Korsgaard
Get rid of extra packages submenu and tweak the option descriptions. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-04-01buildroot: Add webdav support to lighttpd.Marek Belisko
[Peter: needs host-pkg-config] Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-04-01copas: select lua shared library supportPeter Korsgaard
Needed by luasocket. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-04-01openssl: fix compilation for i386Gustavo Zacarias
Closes #3445. OpenSSL emits bswap instructions when building for i386 targets which unfortunately is only available on 486+ class processors. Since the normal workaround is detected at build time and we are cross compiling we need to specify this. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-04-01quagga: security bump to version 0.99.18Gustavo Zacarias
Fixes for vulnerabilities CVE-2010-1674 and CVE-2010-1675. Additional patches for build-time breakage of the new version. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-04-01mpd: bump to version 0.16.2 and bugfixGustavo Zacarias
Bump mpd server to version 0.6.12 Also make ffmpeg support conditional on IPv6 since the new ffmpeg version requires it. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-31rsync: bump versionPeter Korsgaard
Fixes CVE-2011-1097 and various other issues, see NEWS for details: http://rsync.samba.org/ftp/rsync/src/rsync-3.0.8-NEWS At the same time get rid of unneeded install / install-strip handling. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-31webkit: bump to version 1.2.7Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-31midori: bump to version 0.3.2Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-30package/config; br2_symbol_printer(): fix off-by-1 in string handlingPeter Korsgaard
Based on patch by bbj17@gmx.de. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-29qt: fix qt3 support target installPeter Korsgaard
"lib" shouldn't be prefixed, otherwise the make file tries to install liblibQt3Support.so.*. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-28Makefile.autotools.in: add libtool v2.4 supportPeter Korsgaard
Packages (like avahi) are now using libtool 2.4, so extend the libtool handling to support those as well. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-28busybox: ensure source gets downloaded/extracted/patched before -menuconfigPeter Korsgaard
Closes #3511 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-28external toolchain: Only prefix path if specifiedSonic Zhang
Only prefix the external toolchain calls with its absolute path if BR2_TOOLCHAIN_EXTERNAL_PATH is set, otherwise just assume it will be available in the path. Signed-off-by: Sonic Zhang <sonic.zhang@analog.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-28qt: convert to the GENTARGETS infrastructureThomas Petazzoni
In addition to converting the qt package to the GENTARGETS infrastructure, this commit also does the following (related) things in the Qt package: * Create a BR2_PACKAGE_QT_CONFIG_FILE option, which can be used to pass a custom Qt configuration file, such as the ones found in src/corelib/global/qconfig-*.h. This used to be possible, but required changing qt.mk directly, which isn't really how we configure things in Buildroot. * Remove the BR2_PACKAGE_QT_EMB_PLATFORM option, the embedded platform name is now computed directly in qt.mk. * The QT_CONFIGURE variable, which hosted all ./configure options, has been renamed to QT_CONFIGURE_OPTS, for consistency with what we do in the AUTOTARGETS infrastructure. * The QT_DEP_LIBS variable has been renamed to QT_DEPENDENCIES, so that dependencies are properly handled by the GENTARGETS infrastructures. * The QT_QMAKE_SET macro (used to adjust the path/flags of the compiler/linker) has been extended with an additional argument, which allows to pass the source directory of Qt. * All the installation procedure has been rewritten to fit within the GENTARGETS mechanism. [Peter: fixed minor issues pointed out by Will] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Luca Ceresoli <luca@lucaceresoli.net> Acked-by: Will Wagner <willw@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-27dnsmasq: bump to version 2.57Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-27netsnmp: bump to version 5.6.1Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-27ncurses: version bump to 5.8Mike Frysinger
Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-27webkit: prefer X11 backend if both directfb and x11 are availablePeter Korsgaard
This shouldn't happen with any sane configuration, but is possible with randpackageconfig builds, where it breaks the build as libgtk would prefer X11 and webkit directfb, causing it to fail with: No package 'gtk+-directfb-2.0' found Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-27xlib_xtrans: drop pkgconfig patch now we're search usr/share/pkgconfigPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-27pkg-config: add usr/share/pkgconfig to search path as wellPeter Korsgaard
A few packages (like xlib_xtrans) install their .pc files here, and upstream pkg-config defaults to searching both /usr/lib/pkgconfig and /usr/share/pkgconfig, so add it as well. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-25qt: dbus module doesn't depend on gui supportPeter Korsgaard
Seems I somehow got this wrong back in December (bff5248202). At the same time fix a typo in the comment. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-18mtd: bump versionPeter Korsgaard
Fixes flash_erase argument handling (start should be in bytes, not blocks). Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-17ethtool: bump version, use new upstream locationPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-17icu: fix parallel buildsPeter Korsgaard
The icu build system seems to have a race condition, which gets triggered by high BR2_JLEVEL settings, so disable parallel builds. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-16fetch/git: clone the repository as bareJean-Christophe PLAGNIOL-VILLARD
This will reduce the space used and speed up the clone as it is only used to generate an archive, which doesn't need the git working tree. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-16socat: bump to version 2.0.0-b4Yegor Yefremov
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-14alsa-utils: fix dependenciesPeter Korsgaard
Most alsa utilites depend on specific alsa-lib options, so ensure those are selected. Arecord is furthermore just a symlink to aplay these days, so get rid of the option. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-14xterm: fix dependenciesPeter Korsgaard
xterm doesn't need the xserver to build. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-14xterm: fix dependencies and bump to version 267Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-14gst-plugins-good: bump versionPeter Korsgaard
Fixes v4l2src building with 2.6.38-rc1+ kernel headers. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-14alsa-utils: bump to 1.0.24.2Chih-Min Chao
[Peter: fix exp10 breakage on uClibc] Signed-off-by: Chih-Min Chao <cmchao@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-14alsa-lib : bump to 1.0.24.1Chih-Min Chao
Signed-off-by: Chih-Min Chao <cmchao@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-13fakeroot: use --program-prefix rather than manually renaming binariesPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-13alsamixergui: fix download URLHector Oron
Closes #3457 The Debian package snapshot service moved to an official debian.org address last year (http://www.debian.org/News/2010/20100412) with a slightly different URL structure, so adjust the download URL to match. Signed-off-by: Hector Oron <hector.oron@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-13fakeroot: fix download URLHector Oron
Closes #3451 The Debian package snapshot service moved to an official debian.org address last year (http://www.debian.org/News/2010/20100412) with a slightly different URL structure, so adjust the download URL to match. Signed-off-by: Hector Oron <hector.oron@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-13busybox: bump 1.18.x stable versionPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-12makedevs: don't call /bin/sync after creating nodesPeter Korsgaard
Closes #3475 There's no real reason to sync after creating the device nodes, and it slows down the file system image creating quite a lot on busy systems, so get rid of it. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-12makedevs: convert to GENTARGETS formatPeter Korsgaard
And at the same time fix target build (used host compiler, didn't add to TARGETS). Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-03-12Makefile.package.in: make <pkg>_SOURCE optionalPeter Korsgaard
For packages where the sources are included in buildroot (E.G. makedevs). We unfortunately already use no <pkg>_SOURCE to mean <pkg>_<version>.tar.gz, in several packages (and for git/svn/bzr support), so you need to define <pkg>_SOURCE to the empty string to use it. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>