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 67D30138335 for ; Thu, 20 Sep 2018 08:53:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB48DE094A; Thu, 20 Sep 2018 08:53:16 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C27FBE094A for ; Thu, 20 Sep 2018 08:53:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 28044335D22 for ; Thu, 20 Sep 2018 08:53:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D5ACC3C3 for ; Thu, 20 Sep 2018 08:53:12 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1537433545.3b95c8ba216b7652da47c654ee058a754df58b0f.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/f2fs-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/f2fs-tools/f2fs-tools-1.11.0-r1.ebuild X-VCS-Directories: sys-fs/f2fs-tools/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 3b95c8ba216b7652da47c654ee058a754df58b0f X-VCS-Branch: master Date: Thu, 20 Sep 2018 08:53:12 +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-Archives-Salt: 416a6b85-d536-4f0b-bc88-2c758621368a X-Archives-Hash: b99f802bd730237ea2d37ac454c95f67 commit: 3b95c8ba216b7652da47c654ee058a754df58b0f Author: Mikle Kolyada gentoo org> AuthorDate: Thu Sep 20 08:52:25 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Thu Sep 20 08:52:25 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b95c8ba sys-fs/f2fs-tools: revbump (new slot) Package-Manager: Portage-2.3.49, Repoman-2.3.10 sys-fs/f2fs-tools/f2fs-tools-1.11.0-r1.ebuild | 36 +++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) 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 new file mode 100644 index 00000000000..700844feff8 --- /dev/null +++ b/sys-fs/f2fs-tools/f2fs-tools-1.11.0-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Tools for Flash-Friendly File System (F2FS)" +HOMEPAGE="https://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/about/" +SRC_URI="https://dev.gentoo.org/~zlogene/distfiles/${CATEGORY}/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0/5" +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86" +IUSE="selinux" + +RDEPEND="selinux? ( sys-libs/libselinux )" +DEPEND="${RDEPEND}" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + #This is required to install to /sbin, bug #481110 + econf \ + --bindir="${EPREFIX}"/sbin \ + --disable-static \ + $(use_with selinux) +} + +src_install() { + default + find "${D}" -name "*.la" -delete || die +}