mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-22 23:19:14 +02:00
* Make tests run (`check` target does nothing, use `test`) * Add --with-bash-completion-dir= (would've been automagic before but we were installing them manually) * Add --with-zsh-completion-dir= (not installed at all before) Signed-off-by: Sam James <sam@gentoo.org>
64 lines
1.4 KiB
Bash
64 lines
1.4 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs shell-completion
|
|
|
|
DESCRIPTION="Online backups for the truly paranoid"
|
|
HOMEPAGE="https://www.tarsnap.com/"
|
|
SRC_URI="https://www.tarsnap.com/download/${PN}-autoconf-${PV}.tgz"
|
|
S="${WORKDIR}"/${PN}-autoconf-${PV}
|
|
|
|
LICENSE="tarsnap BSD BSD-2 MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="acl bzip2 lzma xattr"
|
|
# The tarsnap license allows redistribution only without modification.
|
|
# Commented out because patches apply only to files with a free license.
|
|
#RESTRICT="bindist"
|
|
|
|
RDEPEND="
|
|
app-arch/bzip2
|
|
dev-libs/openssl:=
|
|
sys-fs/e2fsprogs
|
|
sys-libs/zlib
|
|
acl? ( sys-apps/acl )
|
|
lzma? ( app-arch/xz-utils )
|
|
xattr? ( sys-apps/attr )
|
|
"
|
|
# Required for "magic.h"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
virtual/os-headers
|
|
"
|
|
|
|
QA_CONFIG_IMPL_DECL_SKIP=(
|
|
# false positive due to outdated autoconf, bug #900124
|
|
# release tarballs don't contain configure.ac!!!
|
|
makedev
|
|
)
|
|
|
|
src_configure() {
|
|
local myeconfargs=(
|
|
$(use_enable xattr)
|
|
$(use_enable acl)
|
|
# The bundled libarchive (ancient copy) always builds
|
|
# the bzip2 bits.
|
|
--with-bz2lib
|
|
--without-lzmadec
|
|
$(use_with lzma)
|
|
--with-bash-completion-dir="$(get_bashcompdir)"
|
|
--with-zsh-completion-dir="$(get_zshcompdir)"
|
|
)
|
|
|
|
econf "${myeconfargs[@]}"
|
|
}
|
|
|
|
src_compile() {
|
|
emake AR="$(tc-getAR)"
|
|
}
|
|
|
|
src_test() {
|
|
emake test
|
|
}
|