blob: 3bc5bea5f79d9319f7af28deb65735fd3e7f4dd3 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/squashfs-tools/squashfs-tools-2.1_p2-r1.ebuild,v 1.1 2005/02/23 15:36:29 wolf31o2 Exp $
inherit toolchain-funcs
MY_PV=${PV/_p/-r}
DESCRIPTION="Tool for creating compressed filesystem type squashfs"
HOMEPAGE="http://squashfs.sourceforge.net/"
SRC_URI="mirror://sourceforge/squashfs/squashfs${MY_PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sparc x86"
IUSE=""
RDEPEND="virtual/libc
sys-libs/zlib"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
S=${WORKDIR}/squashfs${PV/_p/-r}/squashfs-tools
src_unpack() {
unpack ${A}
cd ${S}
sed -i "s:-O2:${CFLAGS}:" Makefile
}
src_compile() {
emake CC="$(tc-getCC)" || die
}
src_test() {
./mksquashfs *.c *.h ${T}/squashfs \
&& einfo "sucessfully created filesystem" \
|| die "failed to create filesystem"
if ! fgrep -q squashfs ${ROOT}/proc/filesystems ; then
modprobe squashfs || ewarn "no squashfs modules - test not completed"
touch ${T}/modprobe
fgrep -q squashfs ${ROOT}/proc/filesystems || \
ewarn "no squashfs failsystem available in this kernel - tests not completed"
fi
if hasq userpriv ${FEATURES};
then
ewarn "FEATURES userpriv hinders testing. Restricts the ability to mount filesystems."
ewarn "Further testing skipped"
else
if fgrep -q squashfs ${ROOT}/proc/filesystems;
then
mkdir ${T}/squashfs_dir
mount -n -o loop,ro ${T}/squashfs ${T}/squashfs_dir -t squashfs || die "mount failed"
diff squashfs_fs.h ${T}/squashfs_dir/squashfs_fs.h && einfo "test suceeded" \
|| die "test failed"
fi
umount ${T}/squashfs_dir
fi
# clean up
if [ -f ${T}/modprobe ];
then
rmmod squashfs
fi
}
src_install() {
dobin mksquashfs || die
cd ..
dodoc README ACKNOWLEDGEMENTS CHANGES README-2.{0,1} README-AMD64 \
PERFORMANCE.README
}
|