diff options
author | Christian Heim <phreak@gentoo.org> | 2007-08-16 09:40:26 +0000 |
---|---|---|
committer | Christian Heim <phreak@gentoo.org> | 2007-08-16 09:40:26 +0000 |
commit | ee620c348945b910ca21a28bf8e09c2732ffd046 (patch) | |
tree | fbe25d94bb2c739e5f37aa7ac238920eeb3b49fd /sys-fs/vzquota | |
parent | version bump (diff) | |
download | gentoo-2-ee620c348945b910ca21a28bf8e09c2732ffd046.tar.gz gentoo-2-ee620c348945b910ca21a28bf8e09c2732ffd046.tar.bz2 gentoo-2-ee620c348945b910ca21a28bf8e09c2732ffd046.zip |
Version bump, thanks to Kir Kolyshkin <kir at openvz.org> for notifying us.
(Portage version: 2.1.3.5)
Diffstat (limited to 'sys-fs/vzquota')
-rw-r--r-- | sys-fs/vzquota/ChangeLog | 7 | ||||
-rw-r--r-- | sys-fs/vzquota/files/digest-vzquota-3.0.11 | 3 | ||||
-rw-r--r-- | sys-fs/vzquota/vzquota-3.0.11.ebuild | 28 |
3 files changed, 37 insertions, 1 deletions
diff --git a/sys-fs/vzquota/ChangeLog b/sys-fs/vzquota/ChangeLog index 44b282a1b17a..5a7c5c80beb6 100644 --- a/sys-fs/vzquota/ChangeLog +++ b/sys-fs/vzquota/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-fs/vzquota # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/vzquota/ChangeLog,v 1.19 2007/01/18 14:51:48 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/vzquota/ChangeLog,v 1.20 2007/08/16 09:40:26 phreak Exp $ + +*vzquota-3.0.11 (16 Aug 2007) + + 16 Aug 2007; Christian Heim <phreak@gentoo.org> +vzquota-3.0.11.ebuild: + Version bump, thanks to Kir Kolyshkin <kir at openvz.org> for notifying us. 18 Jan 2007; Christian Heim <phreak@gentoo.org> vzquota-3.0.9.ebuild: Adding ~ia64 to the KEYWORDS. diff --git a/sys-fs/vzquota/files/digest-vzquota-3.0.11 b/sys-fs/vzquota/files/digest-vzquota-3.0.11 new file mode 100644 index 000000000000..ace3189cda64 --- /dev/null +++ b/sys-fs/vzquota/files/digest-vzquota-3.0.11 @@ -0,0 +1,3 @@ +MD5 66e79d4531a1fe104d4447c005367162 vzquota-3.0.11.tar.bz2 43541 +RMD160 baa1849b0988f19de4437c7307012562db58ac72 vzquota-3.0.11.tar.bz2 43541 +SHA256 8ca35a7f282124ef9a75df57d2d63c77337964ac85e6b35c2eaa1ad369a5d190 vzquota-3.0.11.tar.bz2 43541 diff --git a/sys-fs/vzquota/vzquota-3.0.11.ebuild b/sys-fs/vzquota/vzquota-3.0.11.ebuild new file mode 100644 index 000000000000..756a1706b035 --- /dev/null +++ b/sys-fs/vzquota/vzquota-3.0.11.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/vzquota/vzquota-3.0.11.ebuild,v 1.1 2007/08/16 09:40:26 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="~amd64 ~ia64 ~ppc64 ~sparc ~x86" +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" +} |