diff options
author | 2016-12-11 23:47:31 -0500 | |
---|---|---|
committer | 2016-12-11 23:47:31 -0500 | |
commit | f75be68ee3c68e3435f7068573643600015fe666 (patch) | |
tree | c56debc1eaebe1e473d10d99f6f1f3d3c424c599 /app-backup/tarsnap/tarsnap-1.0.37.ebuild | |
parent | app-backup/duplicity: add dev-python/pexpect test dep (bug #602380) (diff) | |
download | gentoo-f75be68ee3c68e3435f7068573643600015fe666.tar.gz gentoo-f75be68ee3c68e3435f7068573643600015fe666.tar.bz2 gentoo-f75be68ee3c68e3435f7068573643600015fe666.zip |
app-backup/tarsnap: version bump to 1.0.37
Diffstat (limited to 'app-backup/tarsnap/tarsnap-1.0.37.ebuild')
-rw-r--r-- | app-backup/tarsnap/tarsnap-1.0.37.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/app-backup/tarsnap/tarsnap-1.0.37.ebuild b/app-backup/tarsnap/tarsnap-1.0.37.ebuild new file mode 100644 index 000000000000..ced04c9ff3db --- /dev/null +++ b/app-backup/tarsnap/tarsnap-1.0.37.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit bash-completion-r1 + +DESCRIPTION="Online backups for the truly paranoid" +HOMEPAGE="http://www.tarsnap.com/" +SRC_URI="https://www.tarsnap.com/download/${PN}-autoconf-${PV}.tgz" + +LICENSE="tarsnap" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="acl bzip2 libressl lzma xattr" + +RDEPEND=" + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + sys-libs/e2fsprogs-libs + 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" + +S=${WORKDIR}/${PN}-autoconf-${PV} + +src_configure() { + econf \ + $(use_enable xattr) \ + $(use_enable acl) \ + $(use_with bzip2 bz2lib) \ + --without-lzmadec \ + $(use_with lzma) +} + +src_install() { + default + dobashcomp misc/bash_completion.d/* +} |