diff options
author | juanfra <juanfra@cvs.openbsd.org> | 2013-11-07 01:25:28 +0000 |
---|---|---|
committer | juanfra <juanfra@cvs.openbsd.org> | 2013-11-07 01:25:28 +0000 |
commit | 13926800f421be49f79f29a3cb569f61138a2dea (patch) | |
tree | c3d14742b691e3274dad213a0e4999022fbaf983 /share/man/man5 | |
parent | 286d0f17ad10f6f710816740e5cf038a6e2615a7 (diff) |
Add the documentation related to the lzip change.
ok espie@ sthen@
Diffstat (limited to 'share/man/man5')
-rw-r--r-- | share/man/man5/bsd.port.mk.5 | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/share/man/man5/bsd.port.mk.5 b/share/man/man5/bsd.port.mk.5 index c2df79574c4..831585e8d01 100644 --- a/share/man/man5/bsd.port.mk.5 +++ b/share/man/man5/bsd.port.mk.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: bsd.port.mk.5,v 1.385 2013/08/14 08:39:28 jmc Exp $ +.\" $OpenBSD: bsd.port.mk.5,v 1.386 2013/11/07 01:25:27 juanfra Exp $ .\" .\" Copyright (c) 2000-2008 Marc Espie .\" @@ -24,7 +24,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: August 14 2013 $ +.Dd $Mdocdate: November 7 2013 $ .Dt BSD.PORT.MK 5 .Os .Sh NAME @@ -1518,6 +1518,8 @@ do case $$archive in *.tar.xz) xzcat ${FULLDISTDIR}/$$archive| tar xf -;; + *.tar.lz) + lunzip -c ${FULLDISTDIR}/$$archive| tar xf -;; *.zip) unzip -q ${FULLDISTDIR}/$$archive -d ${WRKDIR};; *.tar.bz2) @@ -2103,7 +2105,7 @@ In the normal distpatch stage (when .Ev PATCHFILES is not empty), this is the contents of a case statement, used to apply distribution patches. -Fragments are automatically appended to handle gzip'ed and bzip'ed +Fragments are automatically appended to handle gzip'ed, bzip'ed and lzip'ed patches, so that the default case is more or less equivalent to the following shell fragment: .Bd -literal @@ -2114,6 +2116,8 @@ do case $$patchfile in *.bz2) bzip2 -dc $$patchfile | ${PATCH} ${PATCH_DIST_ARGS};; + *.lz) + lunzip -c $$patchfile | ${PATCH} ${PATCH_DIST_ARGS};; *.Z|*.gz) gzcat $$patchfile | ${PATCH} ${PATCH_DIST_ARGS};; *) |