summaryrefslogtreecommitdiffstats
path: root/package/lsof
Commit message (Collapse)AuthorAgeFilesLines
* Normalize separator size to 80Alexandre Belloni2013-06-061-2/+2
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lsof: add license infoArnout Vandecappelle (Essensium/Mind)2012-11-141-0/+4
| | | | | Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* all packages: rename XXXTARGETS to xxx-packageArnout Vandecappelle (Essensium/Mind)2012-07-171-1/+1
| | | | | | | | | | | | | Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* lsof: add busybox tweaksGustavo Zacarias2012-04-291-0/+3
| | | | | | | | | Since busybox 1.20+ includes a lsof applet make sure lsof gets built after busybox so that we get the full-blown version if both are enabled. Also hide the lsof package unless BUSYBOX_SHOW_OTHERS is true. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lsof: fix permission of extracted filesDamian Kaczmarek2011-11-241-5/+4
| | | | | | | | | | | | | | | | | Closes #4369 Default tar permissiong make it impossible to apply patches to some of the files. Change extraction command to skip permissions by using "-O" tar option and a pipe tar chain. Solution suggested by: Arnout Vandecappelle <arnout@mind.be> [Peter: rework to use define as suggested by Thomas] Signed-off-by: Damian Kaczmarek <damian@veritymedical.co.uk> Tested-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lsof: no longer needs rpc support in toolchainPeter Korsgaard2011-10-071-4/+0
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lsof: bump to version 4.85Gustavo Zacarias2011-10-075-1/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: remove useless arguments from GENTARGETSThomas Petazzoni2011-09-291-1/+1
| | | | | | | | | | Thanks to the pkgparentdir and pkgname functions, we can rewrite the GENTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lsof: fix build after gentargets conversionPeter Korsgaard2010-12-271-4/+4
| | | | | | | With the gentargets conversion, the tarball is extracted directly in the source directory, so adjust paths to match. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lsof: convert to gentargets and bump to 4.84Martin Banky2010-12-146-70/+54
| | | | | | | | | | lsof is packaged as a tarball inside a .tar.bz2 package, so we have a post-extract hook to extract the source code tarball, so that for the next steps, lsof looks like a normal package. Signed-off-by: Martin Banky <Martin.Banky@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lsof: stop overriding CFLAGS in buildAndy Gibbs2010-11-042-1/+14
| | | | | | | | | | | | | | | | | | Closes #2767 lsof compile breaks if CFLAGS overridden in 'make' command line which is the case since buildroot-2010.08. lsof has a partial fix for this already in the form of the 'LSOF_CFLAGS_OVERRIDE=1' configure option; however this only fixes the problem in the generation of the Makefile for liblsof. This patch does two things: it extends the 'LSOF_CFLAGS_OVERRIDE=1' configure option to also cover the main Makefile; it also patches lsof.mk to make use of the LSOF_CFLAGS_OVERRIDE option. Signed-off-by: Andy Gibbs <andyg1001@hotmail.co.uk> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lsof: needs RPC support in toolchainPeter Korsgaard2010-05-261-0/+4
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: Remove unnecessary dependencies on uclibc.Will Newton2009-09-031-1/+1
| | | | | | | | A C library will have been built by the toolchain makefiles, so there is no need for packages to explicitly depend on uclibc. Signed-off-by: Will Newton <will.newton@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lsof, m4: use variables from BR instead of uclibcPeter Korsgaard2009-01-181-2/+2
| | | | | | | UCLIB_HAS_.* is not defined in Buildroot space, so the conditions always evaluate to the same result. Use appropriate Buildroot variables. Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
* package/: convert to DOWNLOAD helperPeter Korsgaard2009-01-161-1/+1
|
* package/: get rid of unneeded $(strip ..)Peter Korsgaard2008-12-081-1/+1
|
* lsof: bump versionPeter Korsgaard2008-10-235-12/+12
| | | | Reported by Mark McLaurin.
* buildroot: remove trailing spacesPeter Korsgaard2008-08-041-1/+1
| | | | | | | for i in `find -name 'Config*' -o -name 'Makefile*' -o -name '*.mk'`; do sed -i 's/ \+$//' $i; done
* Kconfig: remove 'default n'Peter Korsgaard2008-07-171-1/+0
| | | | 'default n' is the default, so there's no need to say it explicitly.
* lsof: bump versionPeter Korsgaard2008-06-165-12/+12
| | | | Patch by Conrad Parker.
* make lsof configure with target includes, thanks to marcgIvan Kuten2007-10-211-1/+2
|
* - just use the strip binary to avoid confusing libtool (quotes)Bernhard Reutner-Fischer2007-10-011-1/+1
| | | | - use $(STRIPCMD) in packages to avoid clashes with $(STRIP)
* - global whitespace trimmingBernhard Reutner-Fischer2007-08-221-3/+3
|
* Replace space by tabsUlf Samuelsson2007-07-281-3/+3
|
* - use BR2_INET_IPV6Bernhard Reutner-Fischer2007-06-261-1/+1
|
* - bump versionBernhard Reutner-Fischer2007-05-155-15/+28
|
* - Convince lsof to honor uClibc's notion of wchar and locale support.Bernhard Reutner-Fischer2006-12-131-0/+7
|
* - compile against the cross toolchain, not the hostBernhard Reutner-Fischer2006-11-293-3/+38
|
* - add and use BR2_BZCAT config option.Bernhard Reutner-Fischer2006-11-171-1/+1
|
* escape the wildcardEric Andersen2006-10-021-1/+1
|
* fixup lsof so it will apply patches, and compile when rpc is disabledEric Andersen2006-08-252-0/+19
|
* patch from John Gatewood Ham, add lsofEric Andersen2006-06-232-0/+60