diff options
author | joerg <joerg@pkgsrc.org> | 2010-02-09 23:02:13 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2010-02-09 23:02:13 +0000 |
commit | 4eb979470c7ba82b0263eba1b63ab27bb7901e2c (patch) | |
tree | 894706273b3108475d818aa8e52c326abcb69fec /mk/defaults/mk.conf | |
parent | dad1b96dbcf1d0076668d863b50e4e7ccdc0c98a (diff) | |
download | pkgsrc-4eb979470c7ba82b0263eba1b63ab27bb7901e2c.tar.gz |
Start removal of PKG_SUFX as option by making selection of compression
format a separate new option (PKG_COMPRESSION).
Diffstat (limited to 'mk/defaults/mk.conf')
-rw-r--r-- | mk/defaults/mk.conf | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/mk/defaults/mk.conf b/mk/defaults/mk.conf index 9dfc783c483..9b1acefdd30 100644 --- a/mk/defaults/mk.conf +++ b/mk/defaults/mk.conf @@ -1,4 +1,4 @@ -# $NetBSD: mk.conf,v 1.186 2009/09/13 13:28:46 tron Exp $ +# $NetBSD: mk.conf,v 1.187 2010/02/09 23:02:13 joerg Exp $ # # This file provides default values for variables that may be overridden @@ -79,10 +79,11 @@ GZIP?= -9 # Possible: defined, not defined # Default: not defined -#PKG_SUFX= .tbz -# Create binary packages with bzip2(1) or gzip(1). -# Possible: .tbz, .tgz -# Default: .tgz +PKG_COMPRESSION?= gzip +# Compression algorithm for binary packages. +# Possible: gzip, bzip2, none +# Default: gzip +# Supersedes the PKG_SUFX option and keeps the name consistent. PKGSRC_LOCKTYPE?= none # The type of locking that will be done if competing processes |