From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2FCC359CA9 for ; Tue, 29 Mar 2016 23:56:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5703C21C001; Tue, 29 Mar 2016 23:56:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E98E721C001 for ; Tue, 29 Mar 2016 23:56:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2475F340CD8 for ; Tue, 29 Mar 2016 23:56:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D869E226 for ; Tue, 29 Mar 2016 23:56:19 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1459296180.42d370f628d41c3297c2efaaae197cef74fe80d8.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/encfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/encfs/encfs-1.8.1-r1.ebuild X-VCS-Directories: sys-fs/encfs/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 42d370f628d41c3297c2efaaae197cef74fe80d8 X-VCS-Branch: master Date: Tue, 29 Mar 2016 23:56:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9e26f9d1-e44b-4575-9a58-2296f8307c63 X-Archives-Hash: d0bf26471d39eaf64995faeab269fc69 commit: 42d370f628d41c3297c2efaaae197cef74fe80d8 Author: Anthony G. Basile gentoo org> AuthorDate: Wed Mar 30 00:01:32 2016 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Wed Mar 30 00:03:00 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42d370f6 sys-fs/encfs: add libressl support Package-Manager: portage-2.2.26 sys-fs/encfs/encfs-1.8.1-r1.ebuild | 51 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/sys-fs/encfs/encfs-1.8.1-r1.ebuild b/sys-fs/encfs/encfs-1.8.1-r1.ebuild new file mode 100644 index 0000000..de939a3 --- /dev/null +++ b/sys-fs/encfs/encfs-1.8.1-r1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +inherit autotools eutils multilib + +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" +SLOT="0" +KEYWORDS="~amd64 ~arm ~sparc ~x86" +IUSE="xattr nls libressl" + +RDEPEND="dev-libs/boost:= + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + dev-libs/rlog + sys-fs/fuse + sys-libs/zlib" +# Your libc probably provides xattrs, but to be safe +# we'll dep on sys-apps/attr. This should be fixed +# if we ever create a virtual/attr. +DEPEND="${RDEPEND} + dev-lang/perl + virtual/pkgconfig + xattr? ( sys-apps/attr ) + nls? ( sys-devel/gettext )" + +src_prepare() { + eautoreconf +} + +src_configure() { + # configure searches for either attr/xattr.h or sys/xattr.h + use xattr || export ac_cv_header_{attr,sys}_xattr_h=no + + econf \ + $(use_enable nls) \ + --disable-valgrind \ + --enable-openssl \ + --disable-dependency-tracking +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog README.md + find "${D}" -name '*.la' -delete +}