You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-fs/nilfs-utils/nilfs-utils-2.2.2-r1.ebuild

36 lines
739 B

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit linux-info
DESCRIPTION="A New Implementation of a Log-structured File System for Linux"
HOMEPAGE="http://nilfs.sourceforge.net/"
SRC_URI="http://nilfs.sourceforge.net/download/${P}.tar.bz2"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ppc ppc64 x86"
IUSE="static-libs"
RDEPEND="
sys-fs/e2fsprogs
sys-apps/util-linux"
DEPEND="${RDEPEND}
sys-kernel/linux-headers"
CONFIG_CHECK="~POSIX_MQUEUE"
src_configure() {
econf \
$(use_enable static-libs static) \
--libdir="${EPREFIX}"/$(get_libdir) \
--enable-libmount
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
}