blob: 23442a49ef1b8b63974f3bff76d49102fac6c6ff (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/aufs2/aufs2-0_p20100405.ebuild,v 1.1 2010/04/05 12:37:30 tommy Exp $
EAPI="2"
inherit linux-mod multilib toolchain-funcs
DESCRIPTION="An entirely re-designed and re-implemented Unionfs"
HOMEPAGE="http://aufs.sourceforge.net"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug inotify kernel-patch nfs ramfs"
DEPEND="dev-vcs/git"
RDEPEND="!sys-fs/aufs"
S=${WORKDIR}/${PN}-standalone
MODULE_NAMES="aufs(misc:${S})"
pkg_setup() {
get_version
kernel_is lt 2 6 27 && die "kernel too old"
kernel_is gt 2 6 33 && die "kernel too new"
if ! ( patch -p1 --dry-run --force -R -d ${KV_DIR} < "${FILESDIR}"/aufs2-standalone-${KV_PATCH}.patch >/dev/null && \
patch -p1 --dry-run --force -R -d ${KV_DIR} < "${FILESDIR}"/aufs2-base-${KV_PATCH}.patch >/dev/null ); then
if use kernel-patch; then
cd ${KV_DIR}
ewarn "Patching your kernel..."
patch --no-backup-if-mismatch --force -p1 -R -d ${KV_DIR} < "${FILESDIR}"/aufs2-standalone-${KV_PATCH}.patch >/dev/null
patch --no-backup-if-mismatch --force -p1 -R -d ${KV_DIR} < "${FILESDIR}"/aufs2-base-${KV_PATCH}.patch >/dev/null
epatch "${FILESDIR}"/aufs2-{base,standalone}-${KV_PATCH}.patch
elog "You need to compile your kernel with the applied patch"
elog "to be able to load and use the aufs kernel module"
else
eerror "You need to apply a patch to your kernel to compile and run the aufs2 module"
eerror "Either enable the kernel-patch useflag to do it with this ebuild"
eerror "or apply ${FILESDIR}/aufs2-base-${KV_PATCH}.patch and"
eerror "${FILESDIR}/aufs2-standalone-${KV_PATCH}.patch by hand"
die "missing kernel patch, please apply it first"
fi
fi
linux-mod_pkg_setup
}
src_prepare() {
local branch=origin/aufs2-${KV_PATCH}
git checkout -q $branch || die
if ! use debug; then
sed -i "s:DEBUG = y:DEBUG =:g" config.mk || die
fi
if use inotify; then
sed -i "s:HINOTIFY =:HINOTIFY = y:g" config.mk || die
fi
if use ramfs; then
sed -i "s:RAMFS =:RAMFS = y:g" config.mk || die
fi
cd "${WORKDIR}"/${PN}-util
sed -i "/LDFLAGS += -static -s/d" Makefile || die
sed -i -e "s:m 644 -s:m 644:g" -e "s:/usr/lib:/usr/$(get_libdir):g" libau/Makefile || die
}
src_compile() {
local myargs="" ARCH=x86
use nfs && myargs="CONFIG_EXPORTFS=y CONFIG_AUFS_EXPORT=y "
use nfs && use amd64 && myargs+="CONFIG_AUFS_INO_T_64=y"
emake CC=$(tc-getCC) CONFIG_AUFS_FS=m ${myargs} KDIR=${KV_DIR} || die
cd "${WORKDIR}"/${PN}-util
emake CC=$(tc-getCC) AR=$(tc-getAR) KDIR=${KV_DIR} C_INCLUDE_PATH="${S}"/include || die
}
src_install() {
linux-mod_src_install
dodoc README || die
docinto design
dodoc design/*.txt || die
cd "${WORKDIR}"/${PN}-util
emake DESTDIR="${D}" install || die
docinto
newdoc README README-utils || die
}
|