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 21A57138334 for ; Sun, 28 Apr 2019 14:16:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D6DDE0883; Sun, 28 Apr 2019 14:16:51 +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 00503E0883 for ; Sun, 28 Apr 2019 14:16:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 1161F342B16 for ; Sun, 28 Apr 2019 14:16:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 93254503 for ; Sun, 28 Apr 2019 14:16:46 +0000 (UTC) From: "Alon Bar-Lev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" Message-ID: <1556460980.748f56f90516847cb4c787f522593ebe1d95ae65.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/ccrypt/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/ccrypt/ccrypt-1.11-r1.ebuild X-VCS-Directories: app-crypt/ccrypt/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: 748f56f90516847cb4c787f522593ebe1d95ae65 X-VCS-Branch: master Date: Sun, 28 Apr 2019 14:16:46 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3156503a-cb22-4dcf-ad3f-cf18c5de1a20 X-Archives-Hash: 47229175db59c16ec19a87a9001b8934 commit: 748f56f90516847cb4c787f522593ebe1d95ae65 Author: Alon Bar-Lev gentoo org> AuthorDate: Sun Apr 28 14:14:12 2019 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Sun Apr 28 14:16:20 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=748f56f9 app-crypt/ccrypt: add emacs USE Bug: https://bugs.gentoo.org/show_bug.cgi?id=684542 Signed-off-by: Alon Bar-Lev gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 app-crypt/ccrypt/ccrypt-1.11-r1.ebuild | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/app-crypt/ccrypt/ccrypt-1.11-r1.ebuild b/app-crypt/ccrypt/ccrypt-1.11-r1.ebuild new file mode 100644 index 00000000000..c3c7458e6a6 --- /dev/null +++ b/app-crypt/ccrypt/ccrypt-1.11-r1.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +DESCRIPTION="Encryption and decryption" +HOMEPAGE="https://sourceforge.net/projects/ccrypt/" +SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}.tar.gz" +IUSE="emacs" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" + +BEPEND="emacs? ( virtual/emacs )" + +src_configure() { + econf \ + $(use_enable emacs) +}