blob: 65864406c1908a350972a440acfb6db7390f93f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Quota/Quota-1.6.7.ebuild,v 1.1 2013/01/11 10:41:37 dev-zero Exp $
EAPI=4
MODULE_AUTHOR=TOMZO
MODULE_VERSION=1.6.7
inherit perl-module
DESCRIPTION="Quota - Perl interface to file system quotas"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=""
RDEPEND=""
# Tests need real FS access/root permissions and are interactive
SRC_TEST="skip"
src_prepare() {
# disable AFS completely for now, need somebody who can really test it
sed -i -e 's|-d "/afs"|0|' Makefile.PL || die "sed failed"
}
|