summaryrefslogtreecommitdiff
blob: 00990f18f17f81ccce56f44d60c7e7ef31c6264d (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
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit toolchain-funcs

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_unpack() {
	unpack ${A}
	cd "${S}"
	sed -i -e '/upx/d' -e '/strip/d' Makefile \
		|| die "sed failed in Makefile"
	for i in Makefile util/Makefile ; do
		sed -i -e "/^CXXFLAGS +=/s:-O3::" \
			-e "/OPTIM +=/s:-O3::" ${i} \
		|| die "sed failed in ${i}"
	done
	for i in Makefile.sets util/Makefile.sets ; do
		sed -i -e "/^CC=/s:gcc:$(tc-getCC):" \
			-e "/^CPP=/s:g++:$(tc-getCPP):" \
			-e "/^CXX=/s:g++:$(tc-getCXX):" \
			-e "/^CPPFLAGS=/s:-pipe -g::" \
			-e "/^OPTIM/s:=.*:=${CXXFLAGS}:" \
			-e "/^LDFLAGS/s:=.*:+=:" ${i} \
		|| die "sed failed in ${i}"
	done
}

src_compile() {
	emake -j1 || die "emake failed"
}

src_install() {
	use static && dobin cromfs-driver-static
	dobin cromfs-driver util/{mkcromfs,unmkcromfs,cvcromfs}

	dodoc doc/*.txt doc/{FORMAT,ChangeLog}
	dohtml doc/*.{html,png}
}