diff options
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/quotatool/ChangeLog | 9 | ||||
-rw-r--r-- | sys-fs/quotatool/quotatool-1.4.12.ebuild | 32 |
2 files changed, 39 insertions, 2 deletions
diff --git a/sys-fs/quotatool/ChangeLog b/sys-fs/quotatool/ChangeLog index c9bda171bfe1..ef245e8880d7 100644 --- a/sys-fs/quotatool/ChangeLog +++ b/sys-fs/quotatool/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-fs/quotatool -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/quotatool/ChangeLog,v 1.9 2011/01/13 13:51:25 flameeyes Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/quotatool/ChangeLog,v 1.10 2012/02/23 07:09:01 radhermit Exp $ + +*quotatool-1.4.12 (23 Feb 2012) + + 23 Feb 2012; Tim Harder <radhermit@gentoo.org> +quotatool-1.4.12.ebuild: + Version bump. *quotatool-1.4.11 (13 Jan 2011) diff --git a/sys-fs/quotatool/quotatool-1.4.12.ebuild b/sys-fs/quotatool/quotatool-1.4.12.ebuild new file mode 100644 index 000000000000..90b164ea515f --- /dev/null +++ b/sys-fs/quotatool/quotatool-1.4.12.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/quotatool/quotatool-1.4.12.ebuild,v 1.1 2012/02/23 07:09:01 radhermit Exp $ + +EAPI=4 + +inherit autotools eutils + +DESCRIPTION="command-line utility for filesystem quotas" +HOMEPAGE="http://quotatool.ekenberg.se/" +SRC_URI="http://quotatool.ekenberg.se/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="sys-fs/quota" + +src_prepare() { + epatch "${FILESDIR}/${PN}-1.4.11-ldflags.patch" + + # rebuild autotools since it uses symlinked copies of support files + # that we can't rely on. + eautoreconf +} + +src_install () { + dobin quotatool + doman man/quotatool.8 + dodoc AUTHORS ChangeLog README TODO +} |