aboutsummaryrefslogtreecommitdiff
path: root/archivers/gtar
Commit message (Collapse)AuthorAgeFilesLines
* Install texinfo files (GNU info) into ${PREFIX}/share/infoBaptiste Daroussin2018-11-101-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | After a discussion on the mailing list on moving manpages to ${PREFIX}/share/man for consistency with base where it is installed in usr/share/man, it appeared the same should happen to GNU info files which were installed under share in base and not in ports. Now texinfo is not in base on any of the supported version of FreeBSD it is possible to proceed to this move and it is easier to do than the manpage change. Other benefit than consistency are less patching: all build tools but cmake are expecting info files to be under share/info and cmake (patched here) was having an exception for BSD so the patch makes FreeBSD case less specific for them Bump revision of all impacted ports PR: 232907 exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D17816 Notes: svn path=/head/; revision=484628
* Update to 1.30. Noteworthy changes:Christian Weisgerber2018-05-027-23/+60
| | | | | | | | | | | | | * Member names containing '..' components are now skipped when extracting. * Report erroneous use of position-sensitive options. * --numeric-owner now affects private headers too. * Fixed the --delay-directory-restore option * The --warnings=failed-read option * The --warnings=none option now suppresses all warnings * Fix reporting of hardlink mismatches during compare Notes: svn path=/head/; revision=468822
* Most commonly used build systems support silent builds, when theyDmitry Marakasov2016-09-091-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | hide actual commands executed and only show short summary line (like "CC foo.c"). CMake and ninja enable this by default, some autotools using ports do as well. This is unacceptable because we need complete build logs at any time, so we now switch to verbose build logs unconditionally. Note that this change deliberately affects ALL builds and not only package builds on cluster, because we need to be sure that user experiencing failure can always provide informative build log regardless of settings and without rerunning the build. Change summary: - Always do verbose builds for cmake, ninja and GNU configure (the latter includes check if --disable-silent-rules is actually supported by the configure script; there are isolated cases when it's not true) - Remove CMAKE_VERBOSE, NINJA_VERBOSE and CONFIGURE_ARGS=--disable-silent-rules from all ports which set them for this is no longer needed - Revert hacks for --disable-silent-rules support priorly committed to biology/ncbi-blast+ and net-p2p/mldonkey - no longer needed as well Submitted by: amdmi3 Reviewed by: mat Exp-run by: antoine Approved by: portmgr (mat, antoine) Differential Revision: D7534 Notes: svn path=/head/; revision=421635
* - Fix licenseDmitry Marakasov2016-06-291-5/+4
| | | | | | | | | | | - Switch to USES=localbase - Switch to ${TOUCH} PR: 210637 Approved by: naddy@FreeBSD.org (maintainer) Notes: svn path=/head/; revision=417776
* Work around a bug in FreeBSD 9 make(1).Christian Weisgerber2016-06-091-0/+13
| | | | | | | | | | http://docs.freebsd.org/cgi/mid.cgi?slrnmvro62.94q.naddy PR: 210100 Reported by: vas@mpeks.tomsk.su Notes: svn path=/head/; revision=416591
* Do not attempt to rebuild tar.info after patching configure.Christian Weisgerber2016-06-051-0/+4
| | | | | | | | | | I can't reproduce this on 10.3, but have a report from 9.3. Differences in make(1)? Reported by: Rob Levandowski <robl@macwhiz.com> Notes: svn path=/head/; revision=416416
* Update to 1.29. User-visible changes:Christian Weisgerber2016-06-034-10/+33
| | | | | | | | | | | * New options: --verbatim-files-from, --no-verbatim-files-from * --null option reads file names verbatim * New options: --owner-map=FILE and --group-map=FILE * New option --clamp-mtime * Deprecated --preserve option removed Notes: svn path=/head/; revision=416332
* Use the new test framework in my ports, if applicable.Christian Weisgerber2015-10-131-6/+4
| | | | | | | While here, also strip more libraries. Notes: svn path=/head/; revision=399214
* - Switch to options helpersDmitry Marakasov2015-09-251-7/+2
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=397815
* Remove $FreeBSD$ from patches files in categories a-j.Mathieu Arnold2015-05-221-2/+0
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=387021
* Add CPE information.Christian Weisgerber2015-03-031-2/+3
| | | | Notes: svn path=/head/; revision=380396
* Split devel/gettext in devel/gettext-runtime and devel/gettext-tools. TheTijl Coosemans2014-11-291-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | first contains runtime libraries such as libintl and the latter contains developer tools such as msgfmt. Ports that use gettext will usually need a LIB_DEPENDS on gettext-runtime and a BUILD_DEPENDS on gettext-tools. USES=gettext-runtime can be used to set a LIB/BUILD/RUN_DEPENDS on devel/gettext-runtime and USES=gettext-tools can be used to set a BUILD/RUN_DEPENDS on devel/gettext-tools. USES=gettext is now the same as "USES=gettext-runtime gettext-tools" meaning a LIB_DEPENDS on devel/gettext-runtime and a BUILD_DEPENDS on devel/gettext-tools. Update gettext to 0.19.3. Remove :oldver from converters/libiconv and devel/gettext-runtime. Leave symlinks with the old library versions to avoid the need to bump PORTREVISION on a large number of dependent ports. When most of the dependent ports have had normal version updates, PORTREVISION can be bumped on the remaining ones (low number) and the links can be removed. Fix some ports that installed files in lib/locale instead of share/locale. PR: 194038 Reviewed by: bapt Exp-run: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=373636
* Clean up plistBaptiste Daroussin2014-10-191-2/+0
| | | | Notes: svn path=/head/; revision=371222
* Update to 1.28. Noteworthy changes in this release:Christian Weisgerber2014-08-064-5/+11
| | | | | | | | | | | | * New checkpoint action: totals * Extended checkpoint format specification. * New option --one-top-level * New option --sort * New exclusion options * Manpages Notes: svn path=/head/; revision=364215
* Allow to build with texinfo from portsBaptiste Daroussin2014-06-251-1/+1
| | | | Notes: svn path=/head/; revision=359292
* Add USES=charsetfixBaptiste Daroussin2014-06-241-1/+1
| | | | Notes: svn path=/head/; revision=359107
* Update to 1.27.1. Bug fixes:Christian Weisgerber2014-05-122-5/+4
| | | | | | | | | | | | * Fix unquoting of file names obtained via the -T option. * Fix GNU long link header timestamp (backward compatibility). * Fix extracting sparse members from star archives. PR: 189675 Submitted by: Jason Harris <jharris@widomaker.com> Notes: svn path=/head/; revision=353898
* USE_BZIP2 -> USES+=tar:bzip2Christian Weisgerber2014-03-131-2/+1
| | | | | | | USE_XZ -> USES+=tar:xz Notes: svn path=/head/; revision=348096
* Fix properties on pkg-plistBaptiste Daroussin2014-01-211-1/+0
| | | | Notes: svn path=/head/; revision=340670
* Use MAKE_CMD to run regression tests.Christian Weisgerber2013-12-171-1/+1
| | | | Notes: svn path=/head/; revision=336736
* * Regenerate patch to fix harmless but confusing warning.Christian Weisgerber2013-11-182-3/+5
| | | | | | | | | | * Add license information. PR: 183987 Submitted by: Rodrigo Osorio <rodrigo@bebik.net> Notes: svn path=/head/; revision=334222
* Update to 1.27.Christian Weisgerber2013-10-075-33/+14
| | | | | | | Fix dependencies for STATIC option. Notes: svn path=/head/; revision=329714
* Convert to stage and option helpers.Christian Weisgerber2013-09-242-18/+23
| | | | | | | Fix combination of NLS and STATIC options. Notes: svn path=/head/; revision=328143
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | archivers) Notes: svn path=/head/; revision=327699
* Simplify by dropping workarounds for unsupported FreeBSD versions.Christian Weisgerber2013-08-191-17/+3
| | | | Notes: svn path=/head/; revision=325019
* For all my portsChristian Weisgerber2013-08-011-2/+1
| | | | | | | | * remove MAKE_JOBS_SAFE (default now) * change USE_GMAKE=yes to USES=gmake Notes: svn path=/head/; revision=324122
* - Convert USE_ICONV=yes to USES=iconvMarcus von Appen2013-04-271-1/+1
| | | | | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here Reviewed by: bapt, kwm Notes: svn path=/head/; revision=316654
* - Convert USE_GETTEXT to USES (part 3)Alex Kozlov2013-04-241-1/+1
| | | | | | | Approved by: portmgr (bapt) Notes: svn path=/head/; revision=316464
* Convert to OptionsNG and trim Makefile headers.Christian Weisgerber2012-12-181-7/+7
| | | | Notes: svn path=/head/; revision=309200
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-4/+4
| | | | | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav Notes: svn path=/head/; revision=282282
* Update to bugfix release 1.26.Christian Weisgerber2011-03-157-76/+16
| | | | Notes: svn path=/head/; revision=270975
* Allow building as root.Christian Weisgerber2011-03-151-0/+7
| | | | | | | PR: 155553 Notes: svn path=/head/; revision=270959
* Fix bug with --one-file-system and --listed-incremental.Christian Weisgerber2010-11-275-3/+62
| | | | | | | | | | This is important for at least misc/amanda-client. Submitted by: John Hein <jhein@symmetricom.com> Obtained from: upstream Notes: svn path=/head/; revision=265294
* Update to 1.25, which mostly brings miscellaneous bug fixes.Christian Weisgerber2010-11-247-208/+16
| | | | Notes: svn path=/head/; revision=265098
* Punt autoconf267->autoconf268Ade Lovett2010-10-161-1/+1
| | | | Notes: svn path=/head/; revision=263089
* Autotools update. Read ports/UPDATING 20100915 for details.Ade Lovett2010-09-151-2/+2
| | | | | | | | Approved by: portmgr (for Mk/bsd.port.mk part) Tested by: Multiple -exp runs Notes: svn path=/head/; revision=261230
* Fix dead loop on extracting existing symlinks with the -k option.Christian Weisgerber2010-06-112-1/+160
| | | | | | | | Submitted by: John Hein <jhein@symmetricom.com> Obtained from: upstream Notes: svn path=/head/; revision=256402
* Bounce PORTREVISION for gettext-related ports. Have fun, ya'll.Ade Lovett2010-05-311-0/+1
| | | | Notes: svn path=/head/; revision=255371
* The xz utils and lzma library have been imported into base, so makeChristian Weisgerber2010-05-211-2/+8
| | | | | | | the dependency on the archivers/xz port conditional on OSVERSION. Notes: svn path=/head/; revision=254738
* Update to 1.23: miscellaneous bug fixes and minor additions.Christian Weisgerber2010-03-2910-102/+60
| | | | Notes: svn path=/head/; revision=251743
* Fix a buffer overflow in the rmt client functionality.Christian Weisgerber2010-03-242-1/+29
| | | | | | | | | From upstream. Security: c175d72f-3773-11df-8bb8-0211d880e350 Notes: svn path=/head/; revision=251453
* Fix a geline() segfault on 8.0 when using --listed-incremental.Christian Weisgerber2010-01-212-1/+24
| | | | | | | Submitted by: Dennis Noordsij <noordsij@cs.helsinki.fi> Notes: svn path=/head/; revision=248274
* You can now use -J to (un)compress xz format files (.tar.xz, .txz).Christian Weisgerber2009-09-211-3/+3
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=241878
* Mark MAKE_JOBS_SAFE for SMP compilation.Christian Weisgerber2009-03-241-0/+1
| | | | | | | | PR: 133014 Submitted by: mm Notes: svn path=/head/; revision=230891
* Update to 1.22 which adds --xz/-J support for xz compression.Christian Weisgerber2009-03-105-99/+7
| | | | | | | | However, xz itself does not have a stable release yet, so don't force a runtime dependency. Notes: svn path=/head/; revision=229838
* * Update to 1.21. Notable changes:Christian Weisgerber2008-12-307-30/+108
| | | | | | | | | | | - Some new flags, e.g. -J for lzma compression and --lzop. - transformation scope flags Testsuite fixes from upstream CVS. * Drop workarounds for no longer supported FreeBSD releases. Notes: svn path=/head/; revision=225012
* Conversion from (now defunct) autoconf-2.61 to autoconf-2.62Ade Lovett2008-08-201-1/+1
| | | | | | | Tested by: exp build run (erwin) Notes: svn path=/head/; revision=218886
* Rename manual "test" target to "regression-test" so that it willChristian Weisgerber2008-06-201-2/+2
| | | | | | | | | be automatically run on the package build cluster. Suggested by Pedro <pfgshield-freebsd@yahoo.com>. Notes: svn path=/head/; revision=215367
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-0/+1
| | | | | | | | | | | | | The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav) Notes: svn path=/head/; revision=214428
* - Revert previous workaround, 8.0-CURRENT has grown fdopendir(3).Christian Weisgerber2008-04-214-28/+9
| | | | | | | | | | - Update to 1.20. Notable changes: This release adds support for lzma compression and the -a option to select the compression algorithm based on the suffix of the archive file name. Notes: svn path=/head/; revision=211722