From b2fdc20dee75ceedd1bb744fe4a5d2dc5392e2b8 Mon Sep 17 00:00:00 2001 From: David Seifert Date: Mon, 13 Sep 2021 22:30:13 +0200 Subject: app-backup/tarsnap: e2fsprogs-libs → e2fsprogs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: https://bugs.gentoo.org/806875 Signed-off-by: David Seifert --- app-backup/tarsnap/tarsnap-1.0.39-r1.ebuild | 48 +++++++++++++++++++++++++++++ app-backup/tarsnap/tarsnap-1.0.39.ebuild | 48 ----------------------------- 2 files changed, 48 insertions(+), 48 deletions(-) create mode 100644 app-backup/tarsnap/tarsnap-1.0.39-r1.ebuild delete mode 100644 app-backup/tarsnap/tarsnap-1.0.39.ebuild (limited to 'app-backup') diff --git a/app-backup/tarsnap/tarsnap-1.0.39-r1.ebuild b/app-backup/tarsnap/tarsnap-1.0.39-r1.ebuild new file mode 100644 index 000000000000..86a9ffb2512d --- /dev/null +++ b/app-backup/tarsnap/tarsnap-1.0.39-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2021 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/* +} diff --git a/app-backup/tarsnap/tarsnap-1.0.39.ebuild b/app-backup/tarsnap/tarsnap-1.0.39.ebuild deleted file mode 100644 index c665e1765051..000000000000 --- a/app-backup/tarsnap/tarsnap-1.0.39.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2021 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-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" - -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/* -} -- cgit v1.2.3-65-gdbad