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/encfs/encfs-1.9.ebuild

36 lines
759 B

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
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"
IUSE="libressl nls"
RDEPEND="
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
dev-libs/tinyxml2:0/3
sys-fs/fuse
sys-libs/zlib"
DEPEND="
${RDEPEND}
dev-lang/perl
sys-devel/gettext
virtual/pkgconfig"
src_configure() {
local mycmakeargs=(
-DENABLE_NLS="$(usex nls)"
-DUSE_INTERNAL_TINYXML=OFF
)
cmake-utils_src_configure
}