diff options
author | jlam <jlam@pkgsrc.org> | 2005-05-16 04:22:40 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-05-16 04:22:40 +0000 |
commit | ed2ba77faaa5b8fdca68f33703b319e4a86ac315 (patch) | |
tree | 7909612a6431157d1b7048dbd55374c137a97bbc /mk | |
parent | 25f8d3548eb607510bd94301937dc33707f8eb09 (diff) | |
download | pkgsrc-ed2ba77faaa5b8fdca68f33703b319e4a86ac315.tar.gz |
Document EXTRACT_USING in bsd.pkg.extract.mk where it is used.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.extract.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mk/bsd.pkg.extract.mk b/mk/bsd.pkg.extract.mk index e6854f857b8..0fd6f6e82c8 100644 --- a/mk/bsd.pkg.extract.mk +++ b/mk/bsd.pkg.extract.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.extract.mk,v 1.4 2005/05/16 03:04:45 jlam Exp $ +# $NetBSD: bsd.pkg.extract.mk,v 1.5 2005/05/16 04:22:40 jlam Exp $ # # This Makefile fragment is included to bsd.pkg.mk and defines the # relevant variables and targets for the "extract" phase. @@ -21,6 +21,10 @@ # contents of an archive named by the shell variable "extract_file" # that ends in <sufx>. # +# EXTRACT_USING specifies the tool used to extract tar/ustar-format +# archives. The possible values are "pax" and "gtar". By +# default, we use the "pax" tool. +# # EXTRACT_ELEMENTS is a list of files within the distfile to extract. # This variable only takes effect for distfiles that are tarballs. # By default, this is empty, which causes all files within the @@ -34,6 +38,7 @@ EXTRACT_ONLY?= ${DISTFILES} EXTRACT_SUFX?= .tar.gz +EXTRACT_USING?= pax _EXTRACT_SUFFIXES= .tar.gz .tgz .tar.bz2 .tbz .tar.Z .tar _tar.gz _EXTRACT_SUFFIXES+= .shar.gz .shar.bz2 .shar.Z .shar |