blob: 0222ec008c008b648069536ab32cc04efa7b62e8 (
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
27
28
29
30
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils cvs
DESCRIPTION="Userspace utilities for aufs."
HOMEPAGE="http://aufs.sourceforge.net/"
SRC_URI=""
ECVS_SERVER="aufs.cvs.sourceforge.net:/cvsroot/aufs"
ECVS_MODULE="aufs"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""
S=${WORKDIR}/aufs
src_compile() {
emake -j1 -f local.mk aufs.5 mount.aufs auplink aulchown umount.aufs \
|| die "emake failed"
}
src_install() {
exeinto /sbin
exeopts -m0500
doexe mount.aufs umount.aufs auplink aulchown
doman aufs.5
}
|