summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2012-02-23 07:09:01 +0000
committerTim Harder <radhermit@gentoo.org>2012-02-23 07:09:01 +0000
commitd3055210620bb262cc5ac938a82f0b4ef7c01f79 (patch)
tree0bc0f534517f79366b1b69379afacf68bd9151f2 /sys-fs
parentRemove old. (diff)
downloadgentoo-2-d3055210620bb262cc5ac938a82f0b4ef7c01f79.tar.gz
gentoo-2-d3055210620bb262cc5ac938a82f0b4ef7c01f79.tar.bz2
gentoo-2-d3055210620bb262cc5ac938a82f0b4ef7c01f79.zip
Version bump.
(Portage version: 2.2.0_alpha87/cvs/Linux x86_64)
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/quotatool/ChangeLog9
-rw-r--r--sys-fs/quotatool/quotatool-1.4.12.ebuild32
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
+}