From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5A3E5138334 for ; Sat, 12 Jan 2019 10:59:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4970BE089E; Sat, 12 Jan 2019 10:59:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 26795E0882 for ; Sat, 12 Jan 2019 10:59:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1FEBD335CF5 for ; Sat, 12 Jan 2019 10:59:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6126A463 for ; Sat, 12 Jan 2019 10:59:09 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1547287917.873570d4d401f31d46ce7d080226c20ac5e41a8f.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/lufis/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/lufis/lufis-0.3-r1.ebuild X-VCS-Directories: sys-fs/lufis/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 873570d4d401f31d46ce7d080226c20ac5e41a8f X-VCS-Branch: master Date: Sat, 12 Jan 2019 10:59:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fe22d5db-4c4a-46d3-90a3-1921f672678c X-Archives-Hash: 36a507e70485e50f2cd63ec262116b85 commit: 873570d4d401f31d46ce7d080226c20ac5e41a8f Author: Pacho Ramos gentoo org> AuthorDate: Sat Jan 12 10:11:57 2019 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sat Jan 12 10:11:57 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=873570d4 sys-fs/lufis: Use proper fuse slot Closes: https://bugs.gentoo.org/673646 Package-Manager: Portage-2.3.53, Repoman-2.3.12 Signed-off-by: Pacho Ramos gentoo.org> sys-fs/lufis/lufis-0.3-r1.ebuild | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/sys-fs/lufis/lufis-0.3-r1.ebuild b/sys-fs/lufis/lufis-0.3-r1.ebuild new file mode 100644 index 00000000000..5f2f2645949 --- /dev/null +++ b/sys-fs/lufis/lufis-0.3-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit toolchain-funcs + +DESCRIPTION="Wrapper to use lufs modules with fuse kernel support" +HOMEPAGE="http://fuse.sourceforge.net/" +SRC_URI="mirror://sourceforge/fuse/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND=" + !=sys-fs/fuse-1.3:0= +" +DEPEND="${RDEPEND}" + +PATCHES=( + "${FILESDIR}"/lufis-allow-uid-and-gid-addon.patch +) + +src_compile() { + emake CC="$(tc-getCC)" +} + +src_install() { + dobin lufis + einstalldocs + + insinto /usr/include/lufs/ + doins fs.h proto.h +}