# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" inherit bash-completion-r1 toolchain-funcs DESCRIPTION="Online backups for the truly paranoid" HOMEPAGE="https://www.tarsnap.com/" SRC_URI="https://www.tarsnap.com/download/${PN}-autoconf-${PV}.tgz" LICENSE="tarsnap" SLOT="0" KEYWORDS="amd64 x86" IUSE="acl bzip2 lzma xattr" RDEPEND=" dev-libs/openssl:0= sys-fs/e2fsprogs sys-libs/zlib acl? ( sys-apps/acl ) bzip2? ( app-arch/bzip2 ) lzma? ( app-arch/xz-utils ) xattr? ( sys-apps/attr )" DEPEND="${RDEPEND} virtual/os-headers" # Required for "magic.h" PATCHES=( "${FILESDIR}"/${PN}-1.0.39-respect-AR.patch ) S=${WORKDIR}/${PN}-autoconf-${PV} src_configure() { econf \ $(use_enable xattr) \ $(use_enable acl) \ $(use_with bzip2 bz2lib) \ --without-lzmadec \ $(use_with lzma) } src_compile() { emake AR="$(tc-getAR)" } src_install() { default dobashcomp misc/bash_completion.d/* }