blob: 6b43efd04c146a47d7195321ec7615b84a958fb7 (
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
|
# Copyright 1999-2004 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.0_p2.ebuild,v 1.3 2004/12/15 19:40:59 wolf31o2 Exp $
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="x86 ppc sparc ~mips ~alpha arm hppa amd64 ia64 ppc64 s390"
IUSE=""
DEPEND="virtual/libc
sys-libs/zlib
>=sys-apps/sed-4"
RDEPEND="virtual/libc
sys-libs/zlib"
S=${WORKDIR}/squashfs${PV/_p/r}/squashfs-tools
src_unpack() {
unpack ${A}
cd ${S}
sed -i "s:-O2:${CFLAGS}:" Makefile
}
src_compile() {
emake || 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 README-AMD64
}
|