blob: 23a6493e9cd899502c2a7640a9f9e5fde70327ee (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/cloop/cloop-1.0.ebuild,v 1.2 2003/08/26 14:17:05 stuart Exp $
inherit kernel-mod
MY_PV="${PV}-1"
MY_P="${PN}_${MY_PV}"
DESCRIPTION="Compressed filesystem loopback kernel module"
HOMEPAGE="http://www.knopper.net/knoppix/"
SRC_URI="http://developer.linuxtag.net/knoppix/sources/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
# Run-time dependencies, same as DEPEND if RDEPEND isn't defined:
#RDEPEND=""
S=${WORKDIR}/${PN}-${PV}
badversion () {
eerror "This version of cloop will only compile against Linux 2.4.x"
eerror "Please change where /usr/src/linux points to, or export the KERNEL_DIR"
eerror "environment variable like this:"
eerror
eerror " KERNEL_DIR=\"<dir>\" emerge cloop"
die "cloop ${PV} only works with Linux 2.4"
}
badconfig () {
eerror "You have not enabled the zlib compression and/or decompression options"
eerror "in your Linux kernel."
eerror
eerror "You must configure both options to be compiled into your kernel; cloop"
eerror "will not compile if the zlib options are compiled as modules"
die
}
src_compile() {
kernel-mod_getversion
[ "$KV_MAJOR" = "2" ] && [ "$KV_MINOR" != "4" ] && badversion
. ${KERNEL_DIR}/.config || die "kernel has not been configured yet"
[ "$CONFIG_ZLIB_INFLATE" != "y" ] && badconfig
[ "$CONFIG_ZLIB_DEFLATE" != "y" ] && badconfig
kernel-mod_src_compile
}
src_install() {
insinto /lib/modules/$KV_VERSION_FULL/misc
doins cloop.o
dobin create_compressed_fs compressloop
doman debian/create_compressed_fs.1
dodoc CHANGELOG README
}
pkg_postinst () {
einfo "Adding /dev/cloop device"
if [ -e /dev/cloop ] ; then
rm -f /dev/cloop
fi
mknod /dev/cloop b 240 0 || die
}
|