Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/lufis/
Date: Sat, 12 Jan 2019 10:59:14
Message-Id: 1547287917.873570d4d401f31d46ce7d080226c20ac5e41a8f.pacho@gentoo
1 commit: 873570d4d401f31d46ce7d080226c20ac5e41a8f
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 12 10:11:57 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 12 10:11:57 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=873570d4
7
8 sys-fs/lufis: Use proper fuse slot
9
10 Closes: https://bugs.gentoo.org/673646
11 Package-Manager: Portage-2.3.53, Repoman-2.3.12
12 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
13
14 sys-fs/lufis/lufis-0.3-r1.ebuild | 36 ++++++++++++++++++++++++++++++++++++
15 1 file changed, 36 insertions(+)
16
17 diff --git a/sys-fs/lufis/lufis-0.3-r1.ebuild b/sys-fs/lufis/lufis-0.3-r1.ebuild
18 new file mode 100644
19 index 00000000000..5f2f2645949
20 --- /dev/null
21 +++ b/sys-fs/lufis/lufis-0.3-r1.ebuild
22 @@ -0,0 +1,36 @@
23 +# Copyright 1999-2019 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +inherit toolchain-funcs
28 +
29 +DESCRIPTION="Wrapper to use lufs modules with fuse kernel support"
30 +HOMEPAGE="http://fuse.sourceforge.net/"
31 +SRC_URI="mirror://sourceforge/fuse/${P}.tar.gz"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~ppc ~x86"
36 +IUSE=""
37 +
38 +RDEPEND="
39 + !<sys-fs/lufs-0.9.7-r3
40 + >=sys-fs/fuse-1.3:0=
41 +"
42 +DEPEND="${RDEPEND}"
43 +
44 +PATCHES=(
45 + "${FILESDIR}"/lufis-allow-uid-and-gid-addon.patch
46 +)
47 +
48 +src_compile() {
49 + emake CC="$(tc-getCC)"
50 +}
51 +
52 +src_install() {
53 + dobin lufis
54 + einstalldocs
55 +
56 + insinto /usr/include/lufs/
57 + doins fs.h proto.h
58 +}