gentoo-ebuilds/app-backup/vzdump/vzdump-1.2-r1.ebuild
Sam James 40050014c1
app-backup/vzdump: update EAPI 6 -> 8
Signed-off-by: Sam James <sam@gentoo.org>
2022-07-02 23:45:32 +01:00

37 lines
751 B
Bash

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit perl-functions
DESCRIPTION="A utility to make consistent snapshots of running OpenVZ containers"
HOMEPAGE="http://pve.proxmox.com/wiki/VZDump"
SRC_URI="http://www.proxmox.com/cms_proxmox/cms/upload/vzdump/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="dev-lang/perl:="
RDEPEND="${DEPEND}
app-misc/cstream
dev-perl/LockFile-Simple
net-misc/rsync
sys-cluster/vzctl
sys-fs/lvm2
virtual/mta
virtual/perl-Getopt-Long"
PATCHES=(
"${FILESDIR}"/${PN}-1.2-no-compress.patch
)
src_compile() {
return
}
src_install() {
emake PERLLIBDIR="$(perl_get_vendorlib)/PVE" DESTDIR="${D}" install
einstalldocs
}