Gentoo Archives: gentoo-commits

From: Amy Liffey <amynka@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/xor-analyze/
Date: Fri, 11 Aug 2017 20:40:30
Message-Id: 1502483498.184e42f322411aa7d7e4b98667a28a0d6bc6a90a.amynka@gentoo
1 commit: 184e42f322411aa7d7e4b98667a28a0d6bc6a90a
2 Author: Amy Liffey <amynka <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 11 20:31:38 2017 +0000
4 Commit: Amy Liffey <amynka <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 11 20:31:38 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=184e42f3
7
8 app-crypt/xor-analyze: EAPI 6 bump
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 app-crypt/xor-analyze/xor-analyze-0.5-r1.ebuild | 26 +++++++++++++++++++++++++
13 1 file changed, 26 insertions(+)
14
15 diff --git a/app-crypt/xor-analyze/xor-analyze-0.5-r1.ebuild b/app-crypt/xor-analyze/xor-analyze-0.5-r1.ebuild
16 new file mode 100644
17 index 00000000000..379db39defb
18 --- /dev/null
19 +++ b/app-crypt/xor-analyze/xor-analyze-0.5-r1.ebuild
20 @@ -0,0 +1,26 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +inherit toolchain-funcs
27 +
28 +DESCRIPTION="program for cryptanalyzing xor 'encryption' with variable key length"
29 +HOMEPAGE="http://www.habets.pp.se/synscan/programs.php?prog=xor-analyze"
30 +SRC_URI="http://www.habets.pp.se/synscan/files/${P}.tar.gz"
31 +
32 +LICENSE="GPL-2"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~x86"
35 +IUSE=""
36 +
37 +src_compile() {
38 + rm -f Makefile || die
39 + emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" xor-analyze xor-enc
40 +}
41 +
42 +src_install() {
43 + dobin xor-analyze xor-enc
44 + dosym xor-enc /usr/bin/xor-dec
45 + dodoc README TODO
46 +}