From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B9DB9139083 for ; Wed, 20 Dec 2017 22:54:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 33D7FE100C; Wed, 20 Dec 2017 22:54:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 153D6E100C for ; Wed, 20 Dec 2017 22:54:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D2F1233BF24 for ; Wed, 20 Dec 2017 22:54:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 96D89AE70 for ; Wed, 20 Dec 2017 22:54:11 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1513810395.091370ab89714574974f0de3dba57a63e205a9f5.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/cryptmount/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/cryptmount/cryptmount-5.2.2-r1.ebuild X-VCS-Directories: sys-fs/cryptmount/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: 091370ab89714574974f0de3dba57a63e205a9f5 X-VCS-Branch: master Date: Wed, 20 Dec 2017 22:54:11 +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: 027fd9af-f732-4b0f-a9e6-050d66971994 X-Archives-Hash: 4b795f507b27b6fd2a70e958fefee7ab commit: 091370ab89714574974f0de3dba57a63e205a9f5 Author: Igor Savlook alzari pw> AuthorDate: Sun Aug 13 19:44:54 2017 +0000 Commit: Craig Andrews gentoo org> CommitDate: Wed Dec 20 22:53:15 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=091370ab sys-fs/cryptmount: lvm2 package is needed to compile Also fix email in metadata.xml Closes: https://bugs.gentoo.org/625550 sys-fs/cryptmount/cryptmount-5.2.2-r1.ebuild | 52 ++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/sys-fs/cryptmount/cryptmount-5.2.2-r1.ebuild b/sys-fs/cryptmount/cryptmount-5.2.2-r1.ebuild new file mode 100644 index 00000000000..690f70da85b --- /dev/null +++ b/sys-fs/cryptmount/cryptmount-5.2.2-r1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit linux-info systemd + +DESCRIPTION="A utility for management and user-mode mounting of encrypted filesystems" +HOMEPAGE="http://cryptmount.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="nls +ssl systemd" + +DOCS=( AUTHORS ChangeLog NEWS README RELNOTES ToDo ) + +RDEPEND=" + dev-libs/libgcrypt:0= + sys-fs/lvm2:0= + nls? ( virtual/libintl ) + ssl? ( dev-libs/openssl:0= ) + systemd? ( sys-apps/systemd )" + +DEPEND=" + ${RDEPEND} + nls? ( sys-devel/gettext )" + +CONFIG_CHECK="BLK_DEV_DM" +ERROR_BLK_DEV_DM="Please enable Device mapper support in your kernel config + -> Device Drivers + -> Multi-device support (RAID and LVM) + -> Multiple devices driver support (RAID and LVM) (MD) + Device mapper support" + +src_configure() { + econf \ + --enable-cswap \ + --enable-delegation \ + --enable-fsck \ + --enable-luks \ + --with-libgcrypt \ + $(use_enable nls) \ + $(use_enable ssl openssl-compat) \ + $(use_with systemd) +} + +src_install() { + default +}