Files
@ b7eb29aa4049
Branch filter:
Location: portage-overlay.git/app-backup/vzdump/vzdump-2011.09.13.ebuild - annotation
b7eb29aa4049
996 B
application/vnd.gentoo.ebuild
update gst-plugins-* to EAPI 4
3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 3d8228355825 | # Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-backup/vzdump/vzdump-1.2.ebuild,v 1.2 2009/12/16 20:09:18 bangert Exp $
EAPI="2"
inherit versionator
MY_PV=$(replace_all_version_separators '-')
MY_P="${PN}_${MY_PV}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="A utility to make consistent snapshots of running OpenVZ containers."
HOMEPAGE="http://www.proxmox.com/cms_proxmox/en/virtualization/openvz/vzdump/"
SRC_URI="http://download.proxmox.com/sources/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
RDEPEND="dev-lang/perl
dev-perl/LockFile-Simple
virtual/perl-Getopt-Long
sys-cluster/vzctl
net-misc/rsync
app-misc/cstream
virtual/mta
sys-fs/lvm2"
src_compile() {
:;
}
src_install() {
local installvendorlib
eval "$(perl -V:installvendorlib )"
make PERLLIBDIR="${installvendorlib}/PVE" DESTDIR="${D}" install || die "make install failed"
dodoc ChangeLog TODO
}
|