summaryrefslogtreecommitdiff
path: root/sysutils/file
AgeCommit message (Collapse)AuthorFilesLines
2005-12-05Ran "pkglint --autofix", which corrected some of the quoting issues inrillig1-2/+2
CONFIGURE_ARGS.
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-15/+41
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 digests.agc1-1/+2
2005-02-18Update to 4.13.reed3-14/+14
I updated this because old version I was using had false-positive with "Macintosh HFS data" -- file(1) saw a postscript file wrong and broke some printing tasks. The distfile was no longer on MASTER_SITES so updated. This fixed my Poscript problem. Changes include: 2005-01-12 00:00 Stepan Kasal <kasal@ucw.cz> * src/ascmagic.c (file_ascmagic): Fix three bugs about text files: If a CRLF text file happens to have CR at offset HOWMANY - 1 (currently 0xffff), it should not be counted as CR line terminator. If a line has length exactly MAXLINELEN, it should not yet be treated as a ``very long line'', as MAXLINELEN is ``longest sane line length''. With CRLF, the line length was not computed correctly, and even lines of length MAXLINELEN - 1 were treated as ``very long''. 2004-12-07 14:15 Christos Zoulas <christos@zoulas.com> * bzip2 needs a lot of input buffer space on some files before it can begin uncompressing. This makes file -z fail on some bz2 files. Fix it by giving it a copy of the file descriptor to read as much as it wants if we have access to it. <christos@zoulas.com> 2004-11-24 12:39 Christos Zoulas <christos@zoulas.com> * Stack smash fix, and ELF more conservative reading. Jakub Bogusz <qboosh@pld-linux.org> 2004-11-20 18:50 Christos Zoulas <christos@zoulas.com> * New FreeBSD version parsing code: Jon Noack <noackjr@alumni.rice.edu> * Hackish support for ucs16 strings <christos@zoulas.com> 2004-11-13 03:07 Christos Zoulas <christos@zoulas.com> * print the file name and line number in syntax errors. 2004 10-12 10:50 Christos Zoulas <christos@zoulas.com> * Fix stack overwriting on 0 length strings: Tim Waugh <twaugh@redhat.com> Ned Ludd <solar@gentoo.org> 2004-09-27 11:30 Christos Zoulas <christos@zoulas.com> * Remove 3rd and 4th copyright clause; approved by Ian Darwin. * Fix small memory leaks; caught by: Tamas Sarlos <stamas@csillag.ilab.sztaki.hu> 2004-07-24 16:33 Christos Zoulas <christos@zoulas.com> * magic.mime update Danny Milosavljevic <danny.milo@gmx.net> * FreeBSD version update Oliver Eikemeier <eikemeier@fillmore-labs.com> * utime/utimes detection Ian Lance Taylor <ian@wasabisystems.com> * errors reading elf magic Jakub Bogusz <qboosh@pld-linux.org> 2004-04-12 10:55 Christos Zoulas <christos@zoulas.com> * make sure that magic formats match magic types during compilation * fix broken sgi magic file 2004-04-06 20:36 Christos Zoulas <christos@zoulas.com> * detect present of mbstate_t Petter Reinholdtsen <pere@hungry.com> * magic fixes
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-2/+4
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-5/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-07-31Add buildlink3.mk and builtin.mk files, for software using libmagic.salo2-0/+41
2004-06-22Updated file to 4.09:grant2-5/+5
changes since 4.02: 2004-04-06 20:36 Christos Zoulas <christos@zoulas.com> * detect present of mbstate_t Petter Reinholdtsen <pere@hungry.com> * magic fixes 2004-03-22 15:25 Christos Zoulas <christos@zoulas.com> * Lots of mime fixes (Joerg Ostertag) <ostertag@rechengilde.de> * FreeBSD ELF version handling (Edwin Groothuis) <edwin@mavetju.org> * correct cleanup in all cases; don't just close the file. (Christos Zoulas) <christos@zoulas.com> * add gettext message catalogue support (Michael Piefel) <piefel@debian.org> * better printout for unreadable files (Michael Piefel) <piefel@debian.org> * compensate for missing MAXPATHLEN (Michael Piefel) <piefel@debian.org> * add wide character string length computation (Michael Piefel) <piefel@debian.org> * Avoid infinite loops caused by bad elf alignments or name and description note sizes. Reported by (Mikael Magnusson) <mmikael@comhem.se> 2004-03-09 13:55 Christos Zoulas <christos@zoulas.com> * Fix possible memory leak on error and add missing regfree (Dmitry V. Levin) <ldv@altlinux.org> 2003-12-23 12:12 Christos Zoulas <christos@zoulas.com> * fix -k flag (Maciej W. Rozycki) 2003-11-18 14:10 Christos Zoulas <christos@zoulas.com> * Try to give us much info as possible on corrupt elf files. (Willy Tarreau) <willy@w.ods.org> * Updated python bindings (Brett Funderburg) <brettf@deepfile.com> 2003-11-11 15:03 Christos Zoulas <christos@zoulas.com> * Include file.h first, because it includes config.h breaks largefile test macros otherwise. (Paul Eggert <eggert@CS.UCLA.EDU> via Lars Hecking <lhecking@nmrc.ie>) 2003-10-14 21:39 Christos Zoulas <christos@zoulas.com> * Python bindings (Brett Funderburg) <brettf@deepfile.com> * Don't lookup past the end of the buffer (Chad Hanson) <chanson@tcs-sec.com> * Add MAGIC_ERROR and api on magic_errno() 2003-10-08 12:40 Christos Zoulas <christos@zoulas.com> * handle error conditions from compile as fatal (Antti Kantee) <pooka@netbsd.org> * handle magic filename parsing sanely * more magic fixes. * fix a memory leak (Illes Marton) <illes.marton@balabit.hu> * describe magic file handling (Bryan Henderson) <bryanh@giraffe-data.com> 2003-09-12 15:09 Christos Zoulas <christos@zoulas.com> * update magic files. * remove largefile support from file.h; it breaks things on most OS's 2003-08-10 10:25 Christos Zoulas <christos@zoulas.com> * fix unmapping'ing of mmaped files. 2003-07-10 12:03 Christos Zoulas <christos@zoulas.com> * don't exit with -1 on error; always exit 1 (Marty Leisner) * restore utimes code. 2003-06-10 17:03 Christos Zoulas <christos@zoulas.com> * make sure we don't access uninitialized memory. * pass lint * #ifdef __cplusplus in magic.h 2003-05-25 19:23 Christos Zoulas <christos@zoulas.com> * rename cvs magic file to revision to deal with case insensitive filesystems. 2003-05-23 17:03 Christos Zoulas <christos@zoulas.com> * documentation fixes from Michael Piefel <piefel@debian.org> * magic fixes (various) * revert basename magic in .mgc name determination * buffer protection in uncompress, signness issues, close files Maciej W. Rozycki <macro@ds2.pg.gda.pl 2003-04-21 20:12 Christos Zoulas <christos@zoulas.com> * fix zsh magic 2003-04-04 16:59 Christos Zoulas <christos@zoulas.com> * fix operand sort order in string. 2003-04-02 17:30 Christos Zoulas <christos@zoulas.com> * cleanup namespace in magic.h
2004-02-05file uses libz.so. So add buildlink3.mk for zlib.reed1-1/+4
2003-07-21COMMENT should start with a capital letter.martti1-2/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2003-04-13Initial import of file 4.02 into the NetBSD packages collection ascjep6-0/+78
sysutils/file. File is a file classification program. This version is the standard "file" command for Linux, *BSD, and other systems. This is Ian Darwin's file(1) command. It is maintained by Christos Zoulas. Package supplied by Jeremy C. Reed in PR#20774 and also in pkgsrc-wip. Thanks Jeremy.