Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/f2fs-tools/
Date: Thu, 20 Sep 2018 08:53:18
Message-Id: 1537433545.3b95c8ba216b7652da47c654ee058a754df58b0f.zlogene@gentoo
1 commit: 3b95c8ba216b7652da47c654ee058a754df58b0f
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 20 08:52:25 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 20 08:52:25 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b95c8ba
7
8 sys-fs/f2fs-tools: revbump (new slot)
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11
12 sys-fs/f2fs-tools/f2fs-tools-1.11.0-r1.ebuild | 36 +++++++++++++++++++++++++++
13 1 file changed, 36 insertions(+)
14
15 diff --git a/sys-fs/f2fs-tools/f2fs-tools-1.11.0-r1.ebuild b/sys-fs/f2fs-tools/f2fs-tools-1.11.0-r1.ebuild
16 new file mode 100644
17 index 00000000000..700844feff8
18 --- /dev/null
19 +++ b/sys-fs/f2fs-tools/f2fs-tools-1.11.0-r1.ebuild
20 @@ -0,0 +1,36 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +inherit autotools
27 +
28 +DESCRIPTION="Tools for Flash-Friendly File System (F2FS)"
29 +HOMEPAGE="https://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/about/"
30 +SRC_URI="https://dev.gentoo.org/~zlogene/distfiles/${CATEGORY}/${PN}/${P}.tar.gz"
31 +
32 +LICENSE="GPL-2"
33 +SLOT="0/5"
34 +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86"
35 +IUSE="selinux"
36 +
37 +RDEPEND="selinux? ( sys-libs/libselinux )"
38 +DEPEND="${RDEPEND}"
39 +
40 +src_prepare() {
41 + default
42 + eautoreconf
43 +}
44 +
45 +src_configure() {
46 + #This is required to install to /sbin, bug #481110
47 + econf \
48 + --bindir="${EPREFIX}"/sbin \
49 + --disable-static \
50 + $(use_with selinux)
51 +}
52 +
53 +src_install() {
54 + default
55 + find "${D}" -name "*.la" -delete || die
56 +}