summaryrefslogtreecommitdiff
path: root/devel/libtar
AgeCommit message (Collapse)AuthorFilesLines
2008-08-23wip/vlc-devel wants to create a dlopen()-able module linked againstbjs5-5/+79
this library; unfortunately, this package was only making a static archive. This is bound to break on a fair number of platforms. Employ libtool, as this is what vlc (and possibly other packages) are using in the first place. PKGREVISION++
2008-07-14Mark as destdir ready.joerg1-1/+3
2007-11-13Add missing slash to URL. From Zafer Aydogan in private mail.wiz1-2/+2
2006-07-08Change the format of BUILDLINK_ORDER to contain depth information as well,jlam1-2/+2
and add a new helper target and script, "show-buildlink3", that outputs a listing of the buildlink3.mk files included as well as the depth at which they are included. For example, "make show-buildlink3" in fonts/Xft2 displays: zlib fontconfig iconv zlib freetype2 expat freetype2 Xrender renderproto
2006-07-08Track information in a new variable BUILDLINK_ORDER that informs usjlam1-1/+2
of the order in which buildlink3.mk files are (recursively) included by a package Makefile.
2006-04-12Aligned the last line of the buildlink3.mk files with the first line, sorillig1-2/+2
that they look nicer.
2006-04-06Over 1200 files touched but no revisions bumped :)reed1-2/+2
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
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.
2005-12-27Lower expectations, both others' and mine: relinquish stewardshipseb1-2/+2
2005-10-31Apply the same fix from gtar-base for Interix (makedev -> mkdev).tv2-1/+16
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-23Add RMD160 digests.agc1-1/+2
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-1/+2
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-07-08Update HOMEPAGE and MASTER_SITES.seb1-3/+3
2004-04-11No longer used.snj1-20/+0
2004-03-18Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properlyjlam1-3/+2
by moving the inclusion of buildlink3.mk files outside of the protected region. This bug would be seen by users that have set PREFER_PKGSRC or PREFER_NATIVE to non-default values. BUILDLINK_PACKAGES should be ordered so that for any package in the list, that package doesn't depend on any packages to the left of it in the list. This ordering property is used to check for builtin packages in the correct order. The problem was that including a buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed from BUILDLINK_PACKAGES and appended to the end. However, since the inclusion of any other buildlink3.mk files within that buildlink3.mk was in a region that was protected against multiple inclusion, those dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
2004-03-05Reorder location and setting of BUILDLINK_PACKAGES to match templatejlam1-6/+7
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-02-12Update to version 1.2.11.seb3-8/+28
While here bl3ify and provide a buildlink3.mk. Changes since last packaged version (1.2.5): libtar 1.2.11 - 3/2/03 - updated autoconf macros, compat code, and listhash code - fixed tar_extract_regfile() to pass mode argument to open() (caused EPERM on Solaris NFS clients) - updated README libtar 1.2.10 - 12/15/02 - updated README - minor Makefile fixes - fixed TH_ISREG() macro to not return true for hard links libtar 1.2.9 - 11/19/02 - fixed th_read() to return 1 on EOF (thanks to Yves Crespin <Crespin.Quartz@WANADOO.FR> for the bug report) - minor portability fixes (thanks to Yves Crespin <Crespin.Quartz@WANADOO.FR> for the bug report) - fixed segfault on extracting filenames with 8-bit ASCII characters (thanks to Per Liden <per@FUKT.BTH.SE> for the patch) - fixed TH_ISDIR() macro and th_get_mode() function to handle old archives that don't set the typeflag field right for directories - use 0777 instead of 0755 in mkdirhier() (thanks to Yves Crespin <Crespin.Quartz@WANADOO.FR> for the bug report) libtar 1.2.8 - 9/13/02 - added "-I../listhash" to CPPFLAGS in libtar/Makefile.in (thanks to Kris Warkentin <kewarken@QNX.COM> for the bug report) - added .PHONY target to Makefile.in (thanks to Steven Engelhardt <sengelha@YAHOO.COM> for the bug report) libtar 1.2.7 - 9/12/02 - fixed minor bugs in listhash code (thanks to Jim Knoble <jmknoble@pobox.com> for the bug reports) libtar 1.2.6 - 9/10/02 - updated COPYRIGHT file - do not check magic field by default (replaced TAR_IGNORE_MAGIC option with TAR_CHECK_MAGIC to enable check) - fixed th_get_mode() not to modify S_IFMT bits if they were already set - fixed TH_IS*() macros to check the S_IFMT mode bits in addition to typeflag (this allows us to handle old tar archives that set mode bits but not typeflag field for directories and other special files) - updated to autoconf-2.53 - restructured autoconf macros - added "b" to gzoflags in gzopen_frontend() for win32 compatibility (thanks to Kris Eric Warkentin <kewarken@QNX.COM> for reporting this) - if O_BINARY is defined (as on win32), set that bit in oflags in tar_open() (thanks to Kris Eric Warkentin <kewarken@QNX.COM> for reporting this) - also use O_BINARY in when calling open() from tar_extract_regfile() (based on patch from Graeme Peterson <gp@qnx.com>) - added COMPAT_FUNC_MAKEDEV macro to handle 3-arg version of makedev() (based on patch from Graeme Peterson <gp@qnx.com>)
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-05-06Drop trailing whitespace. Ok'ed by wiz.jmmv1-1/+1
2002-10-10buildlink1 -> buildlink2.wiz1-3/+3
2002-10-08Unused.wiz1-35/+0
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam2-1/+21
buildlink2.mk files back into the main trunk.
2002-07-02Add RCS Id.wiz1-0/+1
2002-04-22Initial import of Libtar, version 1.2.5, into the NetBSD Packages Collection.seb5-0/+139
Libtar is a library for manipulating tar files from within C programs. Key features: - Handles both POSIX 1003.1-1990 tar file format and the GNU extensions. - API provides functions for easy use, such as tar_extract_all(). - Also provides functions for more granular use, such as tar_append_regfile(). - Support compressed tar file by way of zlib.