c3afd20f13
Update libarchive to 3.5.0 Relevant vendor changes: Issue #1258: add archive_read_support_filter_by_code() PR #1347: mtree digest reader support Issue #1381: skip hardlinks pointing to itself on extraction PR #1387: fix writing of cpio archives with hardlinks without file type PR #1388: fix rdev field in cpio format for device nodes PR #1389: completed support for UTF-8 encoding conversion PR #1405: more formats in archive_read_support_format_by_code() PR #1408: fix uninitialized size in rar5_read_data PR #1409: system extended attribute support PR #1435: support for decompression of symbolic links in zipx archives Issue #1456: memory leak after unsuccessful archive_write_open_filename MFC after: 1 week
41 lines
821 B
Makefile
41 lines
821 B
Makefile
# $FreeBSD$
|
|
.include <src.opts.mk>
|
|
|
|
_LIBARCHIVEDIR= ${SRCTOP}/contrib/libarchive
|
|
|
|
PACKAGE= runtime
|
|
PROG= bsdtar
|
|
BSDTAR_VERSION_STRING= 3.5.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=\"${SRCTOP}/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
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.prog.mk>
|