blob: 9f9ebcde1558fba898789b5d06a932ccef3121db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit multilib 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-libs/e2fsprogs-libs
sys-apps/util-linux"
DEPEND="${RDEPEND}
sys-kernel/linux-headers"
CONFIG_CHECK="~POSIX_MQUEUE"
DOCS=( AUTHORS ChangeLog NEWS README )
src_configure() {
econf \
$(use_enable static-libs static) \
--libdir=/$(get_libdir) \
--enable-libmount
}
src_install() {
default
rm -f "${ED}"/$(get_libdir)/*.la || die
}
|