blob: 9256c990ba24013fbd4bd532ce159e157b9e3e3c (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="Cromfs is a FUSE based compressed read-only filesystem for Linux."
HOMEPAGE="http://bisqwit.iki.fi/source/cromfs.html"
SRC_URI="http://bisqwit.iki.fi/src/arch/cromfs-1.2.3.tar.bz2"
LICENSE="GPL-1"
SLOT="0"
KEYWORDS="~x86"
IUSE="static"
DEPEND=">=sys-fs/fuse-2.5.2"
RDEPEND="${DEPEND}"
src_compile() {
sed -i -e '/upx/d' -e '/strip/d' Makefile
emake -j1
}
src_install() {
exeinto /usr/bin
if use static; then
doexe cromfs-driver-static
fi
doexe cromfs-driver util/mkcromfs util/unmkcromfs util/cvcromfs
dodoc doc/*.txt doc/FORMAT doc/ChangeLog COPYING
insinto /usr/share/doc/${PF}
doins doc/*.html doc/*.png
}
|