app-backup/tarsnap: always build w/ bzip2

The bundled libarchive (ancient copy) always builds the bzip2 bits.

Closes: https://bugs.gentoo.org/905748
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2023-05-05 11:22:36 +01:00
parent ef02f180eb
commit 7dcb5e4f21

View File

@@ -16,11 +16,11 @@ KEYWORDS="~amd64 ~x86"
IUSE="acl bzip2 lzma xattr"
RDEPEND="
app-arch/bzip2
dev-libs/openssl:=
sys-fs/e2fsprogs
sys-libs/zlib
acl? ( sys-apps/acl )
bzip2? ( app-arch/bzip2 )
lzma? ( app-arch/xz-utils )
xattr? ( sys-apps/attr )
"
@@ -39,7 +39,9 @@ src_configure() {
local myeconfargs=(
$(use_enable xattr)
$(use_enable acl)
$(use_with bzip2 bz2lib)
# The bundled libarchive (ancient copy) always builds
# the bzip2 bits.
--with-bz2lib
--without-lzmadec
$(use_with lzma)
)