blob: 4a127400973366110ae53b6a15405b48f20ed9c9 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="Fuse-based httpfs file system"
HOMEPAGE="http://httpfs.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/httpfs_with_static_binaries_${PV}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
IUSE=""
DEPEND="sys-fs/fuse"
RDEPEND=${DEPEND}
S=${WORKDIR}
src_unpack() {
unpack ${A}
# The script doesn't accept custom CFLAGS. Fix it.
sed -i \
-e 's:^gcc -c -O2 -g -Wall \(.*\)$:gcc -c ${CFLAGS} \1:' \
-e 's:^gcc -s \(.*\):gcc ${CFLAGS} \1:' \
make_httpfs || die "sed make_httpfs failed"
}
src_compile() {
./make_httpfs || die "make_httpfs failed"
}
src_install() {
dobin httpfs
newdoc readme.2 readme
}
|