blob: cf02e7e2abf09c251d260767872b7bef6eb7e14b (
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
31
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/redirfs/redirfs-0.8.ebuild,v 1.1 2010/01/19 11:26:21 cla Exp $
inherit linux-mod
DESCRIPTION="The RedirFS or redirecting file system is a new layer between virtual file system switch (VFS) and file system drivers."
HOMEPAGE="http://www.redirfs.org"
SRC_URI="http://www.redirfs.org/packages/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND=""
pkg_setup() {
linux-mod_pkg_setup
MODULE_NAMES="redirfs(misc:)"
BUILD_TARGETS="redirfs.ko"
BUILD_PARAMS="-C ${KERNEL_DIR} M=${S} modules"
}
src_install() {
dodoc CHANGELOG INSTALL README TODO
linux-mod_src_install
insinto /usr/include
doins redirfs.h
}
|