cdf63a700c
Update libarchive to 3.2.0 New features: - new bsdcat command-line utility - LZ4 compression (in src only via external utility from ports) - Warc format support - 'Raw' format writer - Zip: Support archives >4GB, entries >4GB - Zip: Support encrypting and decrypting entries - Zip: Support experimental streaming extension - Identify encrypted entries in several formats - New --clear-nochange-flags option to bsdtar tries to remove noschg and similar flags before deleting files - New --ignore-zeros option to bsdtar to handle concatenated tar archives - Use multi-threaded LZMA decompression if liblzma supports it - Expose version info for libraries used by libarchive Patched files (fixed compiler warnings): contrib/libarchive/cat/bsdcat.c (vendor PR #702) contrib/libarchive/cat/bsdcat.h (vendor PR #702) contrib/libarchive/libarchive/archive_read_support_format_mtree.c (PR #701) contrib/libarchive/libarchive_fe/err.c (vendor PR #703) MFC after: 1 month Relnotes: yes
41 lines
826 B
Makefile
41 lines
826 B
Makefile
# $FreeBSD$
|
|
.include <src.opts.mk>
|
|
|
|
_LIBARCHIVEDIR= ${.CURDIR}/../../contrib/libarchive
|
|
|
|
PROG= bsdtar
|
|
BSDTAR_VERSION_STRING= 3.2.0
|
|
|
|
.PATH: ${_LIBARCHIVEDIR}/tar
|
|
SRCS= bsdtar.c \
|
|
cmdline.c \
|
|
creation_set.c \
|
|
read.c \
|
|
subst.c \
|
|
util.c \
|
|
write.c
|
|
|
|
.PATH: ${_LIBARCHIVEDIR}/libarchive_fe
|
|
SRCS+= err.c \
|
|
line_reader.c \
|
|
passphrase.c
|
|
|
|
LIBADD= archive
|
|
|
|
.if ${MK_ICONV} != "no"
|
|
CFLAGS+= -DHAVE_ICONV=1 -DHAVE_ICONV_H=1 -DICONV_CONST=const
|
|
.endif
|
|
|
|
CFLAGS+= -DBSDTAR_VERSION_STRING=\"${BSDTAR_VERSION_STRING}\"
|
|
CFLAGS+= -DPLATFORM_CONFIG_H=\"${.CURDIR}/../../lib/libarchive/config_freebsd.h\"
|
|
CFLAGS+= -I${_LIBARCHIVEDIR}/tar -I${_LIBARCHIVEDIR}/libarchive
|
|
CFLAGS+= -I${_LIBARCHIVEDIR}/libarchive_fe
|
|
SYMLINKS= bsdtar ${BINDIR}/tar
|
|
MLINKS= bsdtar.1 tar.1
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
SUBDIR+= tests
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|