diff options
author | Christian Heim <phreak@gentoo.org> | 2006-06-14 11:42:46 +0000 |
---|---|---|
committer | Christian Heim <phreak@gentoo.org> | 2006-06-14 11:42:46 +0000 |
commit | caa4290f66ca01ce880db7de430744ac21eb63a4 (patch) | |
tree | 1fa5636fc2cf951949c68918bfdb261b748cd26d /sys-fs | |
parent | Fix breakage due to CVS keyword expansion. (diff) | |
download | gentoo-2-caa4290f66ca01ce880db7de430744ac21eb63a4.tar.gz gentoo-2-caa4290f66ca01ce880db7de430744ac21eb63a4.tar.bz2 gentoo-2-caa4290f66ca01ce880db7de430744ac21eb63a4.zip |
Version bump, the OpenVZ finally decided to use a sane version scheme, reworked the ebuild (no inherit calls needed anymore). For a detailed ChangeLog see http://openvz.org/news/updates/vzquota-3.0.8-1!
(Portage version: 2.1)
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/vzquota/ChangeLog | 9 | ||||
-rw-r--r-- | sys-fs/vzquota/files/digest-vzquota-3.0.8 | 3 | ||||
-rw-r--r-- | sys-fs/vzquota/vzquota-3.0.8.ebuild | 28 |
3 files changed, 39 insertions, 1 deletions
diff --git a/sys-fs/vzquota/ChangeLog b/sys-fs/vzquota/ChangeLog index 3e63398e8b99..1ff5dcb6b869 100644 --- a/sys-fs/vzquota/ChangeLog +++ b/sys-fs/vzquota/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sys-fs/vzquota # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/vzquota/ChangeLog,v 1.14 2006/04/27 23:09:37 antarus Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/vzquota/ChangeLog,v 1.15 2006/06/14 11:42:46 phreak Exp $ + +*vzquota-3.0.8 (14 Jun 2006) + + 14 Jun 2006; Christian Heim <phreak@gentoo.org> +vzquota-3.0.8.ebuild: + Version bump, the OpenVZ finally decided to use a sane version scheme, + reworked the ebuild (no inherit calls needed anymore). For a detailed + ChangeLog see http://openvz.org/news/updates/vzquota-3.0.8-1! 27 Apr 2006; Alec Warner <antarus@gentoo.org> Manifest: Fixing SHA256 digest, pass four diff --git a/sys-fs/vzquota/files/digest-vzquota-3.0.8 b/sys-fs/vzquota/files/digest-vzquota-3.0.8 new file mode 100644 index 000000000000..0882c6eb815a --- /dev/null +++ b/sys-fs/vzquota/files/digest-vzquota-3.0.8 @@ -0,0 +1,3 @@ +MD5 3c1289661b5f103b77fdfd85d74befcb vzquota-3.0.8.tar.bz2 95424 +RMD160 547f9fedb520e0e1862d4d6e9bf3bdd446da24bd vzquota-3.0.8.tar.bz2 95424 +SHA256 3d131ae7f430b4eaaec150550ff3dabc83e7d3cb014d9a04d8da929e70407297 vzquota-3.0.8.tar.bz2 95424 diff --git a/sys-fs/vzquota/vzquota-3.0.8.ebuild b/sys-fs/vzquota/vzquota-3.0.8.ebuild new file mode 100644 index 000000000000..18d1d3b3888d --- /dev/null +++ b/sys-fs/vzquota/vzquota-3.0.8.ebuild @@ -0,0 +1,28 @@ +# 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.8.ebuild,v 1.1 2006/06/14 11:42:46 phreak Exp $ + +DESCRIPTION="OpenVZ VPS disk quota utility" +HOMEPAGE="http://openvz.org/download/utils/vzquota/" +SRC_URI="http://download.openvz.org/utils/${PN}/${PV}/src/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" + +DEPEND="" +RDEPEND="" + +src_unpack() { + unpack ${A} + # Prevent the Makefile from stripping the binaries, since portage does that + # already with prestrip + ebegin "Applying ${P}-Makefile-stripping.patch" + sed -i 's,$(INSTALL) -s -m,$(INSTALL) -m,' "${S}"/src/Makefile + eend $? +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" +} |