diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2017-02-04 23:00:32 +0200 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2017-02-04 23:40:20 +0200 |
commit | ecfb9287910ae8c158862a227abb7dfcda3f7219 (patch) | |
tree | 9bf96a05ee5ba1da03c039795273a0cd2c01ab99 /app-crypt/rainbowcrack | |
parent | app-crypt/aescrypt: eapi bump (diff) | |
download | gentoo-ecfb9287910ae8c158862a227abb7dfcda3f7219.tar.gz gentoo-ecfb9287910ae8c158862a227abb7dfcda3f7219.tar.bz2 gentoo-ecfb9287910ae8c158862a227abb7dfcda3f7219.zip |
app-crypt/rainbowcrack: eapi bump
Package-Manager: portage-2.3.3
Diffstat (limited to 'app-crypt/rainbowcrack')
-rw-r--r-- | app-crypt/rainbowcrack/rainbowcrack-1.6.1.ebuild | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/app-crypt/rainbowcrack/rainbowcrack-1.6.1.ebuild b/app-crypt/rainbowcrack/rainbowcrack-1.6.1.ebuild index 6bde29f8e1d3..315a8d059f40 100644 --- a/app-crypt/rainbowcrack/rainbowcrack-1.6.1.ebuild +++ b/app-crypt/rainbowcrack/rainbowcrack-1.6.1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit eutils DESCRIPTION="Hash cracker that precomputes plaintext - ciphertext pairs in advance" @@ -24,12 +24,18 @@ QA_PRESTRIPPED="${RAINBOW_DESTDIR}/.*" DEPEND="app-arch/unzip" +DOCS=( + readme.txt +) + src_unpack() { unpack ${A} mv ${P}-linux* "${S}" } src_install() { + einstalldocs + local bin bins="rcrack rt2rtc rtc2rt rtgen rtsort" exeinto "/${RAINBOW_DESTDIR}" @@ -41,6 +47,4 @@ src_install() { insinto "/${RAINBOW_DESTDIR}" doins charset.txt - - dodoc readme.txt } |