summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-12-07 07:06:53 +0000
committerSam James <sam@gentoo.org>2021-12-07 07:06:57 +0000
commitce1702840be1c3cb5fdb8adc28c0804f42df2f8d (patch)
treea5c7dc76a46531606b443255545d180483081dd4 /sys-fs
parentsys-fs/encfs: install libencfs, link dynamically (diff)
downloadgentoo-ce1702840be1c3cb5fdb8adc28c0804f42df2f8d.tar.gz
gentoo-ce1702840be1c3cb5fdb8adc28c0804f42df2f8d.tar.bz2
gentoo-ce1702840be1c3cb5fdb8adc28c0804f42df2f8d.zip
sys-fs/encfs: drop 1.9.5 (cmake-utils--, EAPI 6--)
Bug: https://bugs.gentoo.org/701698 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/encfs/encfs-1.9.5.ebuild39
1 files changed, 0 insertions, 39 deletions
diff --git a/sys-fs/encfs/encfs-1.9.5.ebuild b/sys-fs/encfs/encfs-1.9.5.ebuild
deleted file mode 100644
index 70d05c10d13e..000000000000
--- a/sys-fs/encfs/encfs-1.9.5.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# 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 ~ppc64 ~sparc x86"
-IUSE="nls"
-
-RDEPEND="
- dev-libs/openssl:0=
- 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
- -DBUILD_UNIT_TESTS=OFF
- )
- cmake-utils_src_configure
-}