summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2019-07-28 23:09:10 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2019-07-28 23:20:48 +0200
commit786a9741693dc00d41517625585ba6e374433905 (patch)
treea5ff21038c95d8b81161535f0fdb3a38fbd37a71 /sys-fs/encfs/encfs-1.9.2.ebuild
parentnet-libs/libvncserver: Drop 0.9.11-r1 and 0.9.12 (r0) (diff)
downloadgentoo-786a9741693dc00d41517625585ba6e374433905.tar.gz
gentoo-786a9741693dc00d41517625585ba6e374433905.tar.bz2
gentoo-786a9741693dc00d41517625585ba6e374433905.zip
sys-fs/encfs: Drop 1.9.2 and 1.9.4
Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sys-fs/encfs/encfs-1.9.2.ebuild')
-rw-r--r--sys-fs/encfs/encfs-1.9.2.ebuild39
1 files changed, 0 insertions, 39 deletions
diff --git a/sys-fs/encfs/encfs-1.9.2.ebuild b/sys-fs/encfs/encfs-1.9.2.ebuild
deleted file mode 100644
index 3fd739dd5bd8..000000000000
--- a/sys-fs/encfs/encfs-1.9.2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# 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 ~arm sparc ~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
-}