blob: 1beef6f639de62f503f17edd9e97b1756bd9fb16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>bsd</herd>
<maintainer>
<email>ferringb@gentoo.org</email>
</maintainer>
<longdescription lang="en">
The bsdtar program creates and manipulates streaming archive files.
It has a number of advantages over previous tar implementations.
</longdescription>
<use>
<flag name="static">
Build bsdtar and bsdcpio as static archives, removing
dependencies over the enabled compression libraries (lzma,
lzmadec, libbz2, zlib).
</flag>
<flag name="zlib">
Allow accessing gzip-compressed archives through
<pkg>sys-libs/zlib</pkg>. This only affects libarchive's native
support: bsdtar will keep using gunzip as a filter if that's not
built-in. It's also needed for supporting extraction of ZIP
files.
</flag>
<flag name="bzip2">
Allow accessing bzip2-compressed archives through libbz2 (which
comes with <pkg>app-arch/bzip2</pkg>). This only affects
libarchive's native support: bsdtar will keep using bunzip2 as a
filter if that's not built-in.
</flag>
<flag name="lzma" restrict="<app-arch/libarchive-2.7.1">
Allow accessing lzma-compressed archives through the lzmadec
library (<pkg>app-arch/lzma-utils</pkg>). This only affects
libarchive's native support: bsdtar will keep using unlzma as a
filter if that's not built-in.
</flag>
<flag name="lzma" restrict=">=app-arch/libarchive-2.7.1">
Allow accessing lzma-compressed archives through the lzma
library (<pkg>app-arch/xz-utils</pkg>). This only affects
libarchive's native support: bsdtar will keep using unlzma as a
filter if that's not built-in.
</flag>
</use>
</pkgmetadata>
|