summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2021-05-07 21:44:25 +0200
committerThomas Deutschmann <whissi@gentoo.org>2021-05-07 21:44:51 +0200
commitdc218ed738e5ff64db68df32f42e3940fddc8d7d (patch)
tree28d65176a32f7ac68ba0ca109467a930cf22f00e /app-backup/tarsnap/tarsnap-1.0.37.ebuild
parentdev-perl/Crypt-OpenSSL-Bignum: Remove old (diff)
downloadgentoo-dc218ed738e5ff64db68df32f42e3940fddc8d7d.tar.gz
gentoo-dc218ed738e5ff64db68df32f42e3940fddc8d7d.tar.bz2
gentoo-dc218ed738e5ff64db68df32f42e3940fddc8d7d.zip
app-backup/tarsnap: drop old
Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'app-backup/tarsnap/tarsnap-1.0.37.ebuild')
-rw-r--r--app-backup/tarsnap/tarsnap-1.0.37.ebuild42
1 files changed, 0 insertions, 42 deletions
diff --git a/app-backup/tarsnap/tarsnap-1.0.37.ebuild b/app-backup/tarsnap/tarsnap-1.0.37.ebuild
deleted file mode 100644
index 129029b4b85a..000000000000
--- a/app-backup/tarsnap/tarsnap-1.0.37.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-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 lzma xattr"
-
-RDEPEND="
- dev-libs/openssl: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/*
-}