summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2017-07-25 15:45:51 -0400
committerAnthony G. Basile <blueness@gentoo.org>2017-07-25 15:47:36 -0400
commitc7389b01cef43942c27e64eef3140b0362f9a571 (patch)
tree4aa7da63f91bd219fcaa9999830335131cbcac52 /sys-fs/encfs/encfs-1.9.ebuild
parentsys-fs/encfs: add slot dependency for sys-fs/fuse (diff)
downloadgentoo-c7389b01cef43942c27e64eef3140b0362f9a571.tar.gz
gentoo-c7389b01cef43942c27e64eef3140b0362f9a571.tar.bz2
gentoo-c7389b01cef43942c27e64eef3140b0362f9a571.zip
sys-fs/encfs: remove older unstable versions
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'sys-fs/encfs/encfs-1.9.ebuild')
-rw-r--r--sys-fs/encfs/encfs-1.9.ebuild34
1 files changed, 0 insertions, 34 deletions
diff --git a/sys-fs/encfs/encfs-1.9.ebuild b/sys-fs/encfs/encfs-1.9.ebuild
deleted file mode 100644
index 3f2e1af64708..000000000000
--- a/sys-fs/encfs/encfs-1.9.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2016 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"
-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
-}