blob: 69e3722615fdb44b9d85f73e10fec25018aa3736 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit git linux-info
DESCRIPTION="Userspace utilities for Aufs2"
HOMEPAGE="http://aufs.sourceforge.net/"
SRC_URI=""
EGIT_REPO_URI="git://aufs.git.sourceforge.net/gitroot/aufs/aufs2-util.git"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=""
RDEPEND=""
CONFIG_CHECK="AUFS_FS"
src_compile() {
emake KDIR="${KERNEL_DIR}" || die 'emake failed'
}
src_install() {
dodir /sbin /usr/bin /etc/default
emake DESTDIR="${D}" install || die 'emake install failed'
dodoc README || die 'dodoc failed'
}
|