blob: ae11d1fd3e0a5f44c4bd1a2d164cdd7408433e18 (
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
37
38
39
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
inherit cmake-utils
DESCRIPTION="An implementation of encrypted filesystem in user-space using FUSE"
HOMEPAGE="https://vgough.github.io/encfs/"
SRC_URI="https://github.com/vgough/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3 LGPL-3"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE="libressl nls"
RDEPEND="
!libressl? ( dev-libs/openssl:= )
libressl? ( dev-libs/libressl:= )
dev-libs/tinyxml2:0=
sys-fs/fuse:=
sys-libs/zlib"
DEPEND="
${RDEPEND}
dev-lang/perl
sys-devel/gettext
virtual/pkgconfig"
# Build dir is hardcoded in test suite, but we restrict them
# because they can lead to false negatives, bug #630486
RESTRICT="test"
BUILD_DIR="${S}/build"
src_configure() {
local mycmakeargs=(
-DENABLE_NLS="$(usex nls)"
-DUSE_INTERNAL_TINYXML=OFF
)
cmake-utils_src_configure
}
|