diff options
author | Sam James <sam@gentoo.org> | 2021-06-30 19:37:43 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-06-30 19:37:44 +0100 |
commit | a7c951dbf202ddca762544aff5d1725f01a8e9c4 (patch) | |
tree | ae50d3f844348b0d05aef94ceb613b991140f85f /app-crypt/ccrypt | |
parent | app-crypt/johntheripper: add missing libcrypt dependency (diff) | |
download | gentoo-a7c951dbf202ddca762544aff5d1725f01a8e9c4.tar.gz gentoo-a7c951dbf202ddca762544aff5d1725f01a8e9c4.tar.bz2 gentoo-a7c951dbf202ddca762544aff5d1725f01a8e9c4.zip |
app-crypt/ccrypt: add missing libcrypt dependency
Closes: https://bugs.gentoo.org/799167
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-crypt/ccrypt')
-rw-r--r-- | app-crypt/ccrypt/ccrypt-1.11-r2.ebuild (renamed from app-crypt/ccrypt/ccrypt-1.11.ebuild) | 4 | ||||
-rw-r--r-- | app-crypt/ccrypt/ccrypt-1.11-r3.ebuild (renamed from app-crypt/ccrypt/ccrypt-1.11-r1.ebuild) | 7 |
2 files changed, 9 insertions, 2 deletions
diff --git a/app-crypt/ccrypt/ccrypt-1.11.ebuild b/app-crypt/ccrypt/ccrypt-1.11-r2.ebuild index 18b8e11e62d4..aed93c8e1a10 100644 --- a/app-crypt/ccrypt/ccrypt-1.11.ebuild +++ b/app-crypt/ccrypt/ccrypt-1.11-r2.ebuild @@ -6,6 +6,10 @@ EAPI="7" DESCRIPTION="Encryption and decryption" HOMEPAGE="https://sourceforge.net/projects/ccrypt/" SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}.tar.gz" + LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos" + +RDEPEND="virtual/libcrypt:=" +DEPEND="${RDEPEND}" diff --git a/app-crypt/ccrypt/ccrypt-1.11-r1.ebuild b/app-crypt/ccrypt/ccrypt-1.11-r3.ebuild index 62799051740e..76e2a655467b 100644 --- a/app-crypt/ccrypt/ccrypt-1.11-r1.ebuild +++ b/app-crypt/ccrypt/ccrypt-1.11-r3.ebuild @@ -6,12 +6,15 @@ 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" +IUSE="emacs" -DEPEND="emacs? ( >=app-editors/emacs-23.1:* )" +RDEPEND="virtual/libcrypt:=" +DEPEND="${RDEPEND} + emacs? ( >=app-editors/emacs-23.1:* )" src_configure() { econf \ |