summaryrefslogtreecommitdiff
path: root/archivers/gtar-base
AgeCommit message (Collapse)AuthorFilesLines
2009-01-2064-bit time_t fallout:tnn3-1/+37
gtar cowardly refuses to build if time_t doesn't fit in "long int", as happens to be the case now on 32-bit NetBSD hosts. Supress the error and turn it into a warning instead. "make test" still OK
2008-05-18Update to GNU tar 1.20.tnn14-354/+57
All self-tests pass under NetBSD-current. Changes: 3.5 years worth of development; too much to list here.
2008-04-12Convert to use PLIST_VARS instead of manually passing "@comment "jlam2-10/+7
through PLIST_SUBST to the plist module.
2008-04-02Fix extraneous semicolon in gtar-base which slipped into the patchtonnerre3-6/+6
before commit. This will unbrick archive/gtar-base. Approved-by: tnn
2008-03-31Add patch for gtar-base to fix a directory traversal vulnerabilitytonnerre3-3/+23
(CVE-2007-4131, pkgsrc-sec ticket #15481) Approved-by: joerg
2007-09-08Convert to use the features framework.jlam1-4/+2
2007-09-06Convert all libnbcompat/buildlink3.mk references to inplace.mk.jlam1-4/+2
2007-07-19Add DESTDIR support. From Blair Sadewitz by mail.joerg1-4/+5
2006-12-06added support for IRIX 5schwarz1-1/+6
2006-12-03Add Kees Cook's patch for CVE-2006-6097 taken from Ubuntu Linux.tron5-18/+75
Bump package revision.
2006-11-27Make build on Interix - security fix was assuming that SIZE_MAX is defined;tv2-12/+23
copy #ifndef...#define...#endif block used in other source files.
2006-09-03Fix for CVE-2006-0300 via RedHatadrianp3-3/+127
2006-06-18Fixed pkglint warnings.rillig1-2/+2
2006-04-17Strip ${PKGLOCALEDIR} from PLISTs of packages that already obeyjlam1-32/+32
PKGLOCALEDIR and which install their locale files directly under ${PREFIX}/${PKGLOCALEDIR} and sort the PLIST file entries. From now on, pkgsrc/mk/plist/plist-locale.awk will automatically handle transforming the PLIST to refer to the correct locale directory.
2006-04-13BUILD_USE_MSGFMT and USE_MSGFMT_PLURALS are obsolete. Replace withjlam1-3/+2
USE_TOOLS+=msgfmt.
2006-03-20Add CONFLICT with gcpio (libexec/rmt). Bump PKGREVISION to 2.jlam1-2/+4
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-15Use INSTALLATION_DIRS instead of INSTALL_MAN_DIR.reed1-3/+3
Use PKGMANDIR instead of hardcoded "man". (No changes to defaults.)
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-1/+2
2006-01-28Added a patch to support MIPSpro.rillig2-1/+23
2005-12-05Ran "pkglint --autofix", which corrected some of the quoting issues inrillig1-2/+2
CONFIGURE_ARGS.
2005-12-01Fixed some pkglint warnings of the form:rillig1-2/+2
- WARN: archivers/bzip2/Makefile:15: Please use ${CC:Q} instead of "${CC}".
2005-11-04Replaced the use of PLIST_SRC with PLIST_SUBST. Provided uniform names forrillig2-9/+9
the PLIST conditionals.
2005-10-23Fixed pkglint warning by including gtar in quotes.rillig1-2/+2
2005-10-19Remove long gone configure options. PR#31863 by Sergey Svishchev.cube1-2/+1
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-23Add RMD160 digests in addition to SHA1 ones.agc1-1/+2
2005-02-09Skip autotest 15 (gzip.at), as different platforms output differenttv2-1/+15
strerror messages that will not match the test's expected output.
2005-01-16The make rule worked and then didn't work, so make this work again ontv1-4/+4
NetBSD et al by putting the dynamic PLIST component in post-install.
2005-01-16Make this build on Interix. (Apparently the sysexits.h override operationtv4-4/+28
in configure.ac was a little backwards....)
2005-01-09update to gtar 1.15.1recht9-84/+78
changes: - enable installation of grmt changes in gtar: version 1.15.1 - Sergey Poznyakoff, 2004-12-21 This version fixes a bug introduced in 1.15 which caused tar to refuse to extract files from standard input. version 1.15 - Sergey Poznyakoff, 2004-12-20 * Compressed archives are recognised automatically, it is no longer necessary to specify -Z, -z, or -j options to read them. Thus, you can now run `tar tf archive.tar.gz'. * When restoring incremental dumps, --one-file-system option prevents directory hierarchies residing on different devices from being purged. With the previous versions of tar it was dangerous to create incremental dumps with --one-file-system option, since they would recursively remove mount points when restoring from the back up. This change fixes the bug. * Renamed --strip-path to --strip-components for consistency with the GNU convention. * Skipping archive members is sped up if the archive media supports seeks. * Restore script starts restoring only if it is given --all (-a) option, or some patterns. This is to prevent accidental restores. * `tar --verify' prints a warning if during archive creation some of the file names had their prefixes stripped off. * New option --exclude-caches instructs tar to exclude cache directories automatically on archive creation. Cache directories are those containing a standardized tag file, as specified at: http://www.brynosaurus.com/cachedir/spec.html * New configure option --with-rmt allows to specify full path name to the `rmt' utility. This supercedes DEFAULT_RMT_COMMAND variable introduced in version 1.14 * New configure variable DEFAULT_RMT_DIR allows to specify the directory where to install `rmt' utility. This is necessary since modifying --libexecdir as was suggested for version 1.14 produced a side effect: it also modified installation prefix for backup scripts (if --enable-backup-scripts was given). * Bugfixes: ** Fixed flow in recognizing files to be included in incremental dumps. ** Correctly recognize sparse archive members when used with -T option. ** GNU multivolume headers cannot store filenames longer than 100 characters. Do not allow multivolume archives to begin with such filenames. ** If a member with link count > 2 was stored in the archive twice, previous versions of tar were not able to extract it, since they were trying to link the file to itself, which always failed and lead to removing the already extracted copy. Preserve the first extracted copy in such cases. ** Restore script was passing improper argument to tar --listed option (which didn't affect the functionality, but was logically incorrect). ** Fixed verification of created archives. ** Fixed unquoting of file names containing backslash escapes (previous versions failed to recognize \a and \v). ** When attempting to delete a non-existing member from the archive, previous versions of tar used to overwrite last archive block with zeroes.
2004-10-02Add dependency on gettext-lib to fix the build on Darwin.recht1-1/+2
2004-10-02remove a really really crufty darwin patch noticed by wiz. (thedanw3-23/+1
package doesn't currently build on darwin with or without the patch, but darwin has gtar in the base OS anyway.)
2004-09-27Update gtar packages to 1.14:wiz10-146/+82
XXX: man page not updated (didn't find new version of suse gtar man page which we're using in the package) version 1.14 - Sergey Poznyakoff, 2004-05-11 * Added support for POSIX.1-2001 and ustar archive formats. * New option --format allows to select the output archive format * The default output format can be selected at configuration time by presetting the environment variable DEFAULT_ARCHIVE_FORMAT. Allowed values are GNU, V7, OLDGNU and POSIX. * New option --strip-path allows to cut off a given number of path elements from the name of the file being extracted. * New options --index-file, --no-overwrite-dir. The --overwrite-dir option is now the default; use --no-overwrite-dir if you prefer the previous default behavior. * The semantics of -o option is changed. When extracting, it does the same as --no-same-owner GNU tar option. This is compatible with UNIX98 tar. Otherwise, its effect is the same as that of --old-archive option. This latter is deprecated and will be removed in future. * New option --check-links prints a message if not all links are dumped for a file being archived. This corresponds to the UNIX98 -l option. The current semantics of the -l option is retained for compatibility with previous releases, however such usage is strongly deprecated as the option will change to its UNIX98 semantics in the future releases. * New option --occurrence[=N] can be used in conjunction with one of the subcommands --delete, --diff, --extract or --list when a list of files is given either on the command line or via -T option. This option instructs tar to process only the Nth occurrence of each named file. N defaults to 1, so `tar -x -f archive --occurrence filename' extracts the first occurrence of `filename' from `archive' and terminates without scanning to the end of the archive. * New option --pax-option allows to control the handling of POSIX keywords in `pax' extended headers. It is equivalent to `pax' -o option. * --incremental and --listed-incremental options work correctly on individual files, as well as on directories. * New scripts: backup (replaces old level-0 and level-1) and restore. The scripts are compiled and installed if --enable-backup-scripts option is given to configure. * By default tar searches "rmt" utility in "$prefix/libexec/rmt", which is consistent with the location where the version of "rmt" included in the package is installed. Previous versions of tar used "/etc/rmt". To install "rmt" to its traditional location, run configure with option --libexecdir=/etc. Otherwise, if you already have rmt installed and wish to use it, instead of the shipped in version, set the variable DEFAULT_RMT_COMMAND to the full path name of the utility, e.g. ./configure DEFAULT_RMT_COMMAND=/etc/rmt. Notice also that the full path name of the "rmt" utility to use can be set at runtime, by giving option --rmt-command to tar. * Removed obsolete command line options: ** --absolute-paths superseded by --absolute-names ** --block-compress is not needed any longer ** --block-size superseded by --blocking-factor ** --modification-time superseded by --touch ** --read-full-blocks superseded by --read-full-records ** --record-number superseded by --block-number ** --version-control superseded by --backup * New message translations fi (Finnish), gl (Galician), hr (Croatian), hu (Hungarian), ms (Malaysian), nb (Norwegian), ro (Romanian), sk (Slovak), zh_CN (Chinese simplified), zh_TW (Chinese traditional). The code 'no' for Norwegian (Bokmål) has been withdrawn; use 'nb' instead.
2004-06-02Add TEST_TARGETheinz1-1/+3
2004-05-18Enable pkgviews installation.recht1-1/+3
2004-04-24Missed this in commit of patch-ac (thanks wiz).tv1-1/+2
2004-04-24Make work on Interix. It has a mkdev() but not a makedev(), so definetv1-0/+14
makedev() in terms of mkdev() in that case.
2004-04-05If GNU_PROGRAM_PREFIX is not "g" or not set, then still installreed3-15/+26
with "g" prefix. Allow this to be optionally forced by defining GTAR_PROGRAM_PREFIX. If GTAR_PROGRAM_PREFIX is set to nothing, then conflict with pax, because both install a "tar". So now the default is to install as "gtar" even if GNU_PROGRAM_PREFIX is set to "". Bump package revision for this. This is for part of my PR #22693.
2004-03-11bl3ifyxtraeme1-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-05-23Add BUILD_USES_MSGFMT, noted missing by Jeremy C. Reed in PR 20916.wiz1-1/+3
2003-05-06Drop trailing whitespace. Ok'ed by wiz.jmmv1-1/+1
2003-04-22Use ${LN} -sf to create symlinks.wiz1-2/+2
Closes PR 21263 by Jeremy C. Reed.
2003-02-13- remove unnecessary if(OPSYS == Darwin), as this is handledgrant1-7/+2
automatically. - use ${TOUCH} to create empty file, not ${ECHO} '' > filename...
2003-01-21Bump PKGREVISION for last change.wiz1-1/+2
2003-01-20As suggested by wiz:jschauma2-2/+12
Make sure a ${PREFIX}/bin/gtar exists independent of ${GNU_PROGRAM_PREFIX}, since it's needed for pkgsrc, and make pkgsrc use ${PREFIX}/bin/gtar.
2002-12-22'files/gtar.1' does not change name depending on GNU_PROGRAM_PREFIX;wiz1-2/+2
noted by Jeremy C. Reed.
2002-12-22Use GNU_PROGRAM_PREFIX. Based on patch by Jeremy C. Reed.wiz3-11/+16