| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
|
| 7 |
inherit autotools eutils
|
| 8 |
|
| 9 |
DESCRIPTION="command-line utility for filesystem quotas"
|
| 10 |
HOMEPAGE="http://quotatool.ekenberg.se/"
|
| 11 |
SRC_URI="http://quotatool.ekenberg.se/${P}.tar.gz"
|
| 12 |
|
| 13 |
LICENSE="GPL-2"
|
| 14 |
SLOT="0"
|
| 15 |
KEYWORDS="~amd64 ~ppc ~x86"
|
| 16 |
IUSE=""
|
| 17 |
|
| 18 |
RDEPEND="sys-fs/quota"
|
| 19 |
|
| 20 |
src_prepare() {
|
| 21 |
epatch "${FILESDIR}/${PN}-1.4.11-ldflags.patch"
|
| 22 |
|
| 23 |
# rebuild autotools since it uses symlinked copies of support files
|
| 24 |
# that we can't rely on.
|
| 25 |
eautoreconf
|
| 26 |
}
|
| 27 |
|
| 28 |
src_install () {
|
| 29 |
dobin quotatool
|
| 30 |
doman man/quotatool.8
|
| 31 |
dodoc AUTHORS ChangeLog README TODO
|
| 32 |
}
|