blob: 61ef452d354a1cf7aa5021917074b0c9c5c3f3a7 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header $
EAPI="4"
EHG_REPO_URI="http://podgorny.cz/~bernd/hg/hgwebdir.cgi/0.25"
S="${WORKDIR}/0.25"
inherit eutils mercurial flag-o-matic
DESCRIPTION="Self-syncing tree-merging file system based on FUSE"
HOMEPAGE="http://podgorny.cz/moin/UnionFsFuse"
SRC_URI=""
LICENSE="BSD"
SLOT="0"
KEYWORDS=""
IUSE=""
PROPERTIES="live"
DEPEND="sys-fs/fuse"
RDEPEND="${DEPEND}"
src_prepare() {
epatch_user
}
src_configure() {
filter-flags -flto -fuse-linkerplugin -fwhole-program -fno-common
}
src_compile() {
emake PREFIX="${EPREFIX}/usr" BINDIR=/sbin
}
src_install() {
dodir /usr/sbin /usr/share/man/man8
emake PREFIX="${EPREFIX}/usr" BINDIR=/sbin DESTDIR="${ED}" install
}
|