diff options
Diffstat (limited to 'sys-fs/vzquota/vzquota-3.0.0.7.ebuild')
-rw-r--r-- | sys-fs/vzquota/vzquota-3.0.0.7.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/sys-fs/vzquota/vzquota-3.0.0.7.ebuild b/sys-fs/vzquota/vzquota-3.0.0.7.ebuild new file mode 100644 index 000000000000..7f4d0f6c13cf --- /dev/null +++ b/sys-fs/vzquota/vzquota-3.0.0.7.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/vzquota/vzquota-3.0.0.7.ebuild,v 1.1 2006/04/24 14:56:05 phreak Exp $ + +inherit eutils toolchain-funcs versionator + +VVER="$(get_version_component_range 1-3 ${PV})" +VREL="$(get_version_component_range 4 ${PV})" +MY_PV="${VVER}-${VREL}" +MY_P="${PN}-${MY_PV}" + +DESCRIPTION="OpenVZ VPS disk quota utility" +HOMEPAGE="http://openvz.org/" +SRC_URI="http://download.openvz.org/utils/${PN}/${MY_PV}/src/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +S="${WORKDIR}/${MY_P}" + +src_compile() { + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" +} |