diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2015-12-23 11:30:36 +0200 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2015-12-23 13:15:38 +0200 |
commit | 9daa04e38d22410e302bea82953c61b33a79dfc7 (patch) | |
tree | 6a6b7f21da20e6f1383aa67bd970263ad20a612b /app-crypt/aespipe | |
parent | dev-cpp/gtkmm-utils: Fix building with latest glibmm/libsigc++ (diff) | |
download | gentoo-9daa04e38d22410e302bea82953c61b33a79dfc7.tar.gz gentoo-9daa04e38d22410e302bea82953c61b33a79dfc7.tar.bz2 gentoo-9daa04e38d22410e302bea82953c61b33a79dfc7.zip |
app-crypt/aespipe: version bump
Package-Manager: portage-2.2.24
Diffstat (limited to 'app-crypt/aespipe')
-rw-r--r-- | app-crypt/aespipe/Manifest | 1 | ||||
-rw-r--r-- | app-crypt/aespipe/aespipe-2.4d.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/app-crypt/aespipe/Manifest b/app-crypt/aespipe/Manifest index 8816155839ec..8e7ad2ab5271 100644 --- a/app-crypt/aespipe/Manifest +++ b/app-crypt/aespipe/Manifest @@ -1,2 +1,3 @@ DIST aespipe-v2.3e.tar.bz2 91752 SHA256 4e63a5709fdd0bffdb555582f9fd7a0bd1842e429420159accaf7f60c5d3c70f SHA512 e62f1f7a8f595066142f626dfd928106b4057c3e5f129bb31057af4e4a9412b4def60afffac72083621334449d627424fb661ef11a426015b0b0c232aa3ce648 WHIRLPOOL 3564aedeeb7e16a9cf10ceb13d15aaf3350b39ff8eb771d23d59029c8676b27bccee4098644d7e3d457af6866e045bec1cdfdf16f3941a831c0ec0b90897d08a DIST aespipe-v2.4c.tar.bz2 106608 SHA256 260190beea911190a839e711f610ec3454a9b13985d35479775b7e26ad4c845e SHA512 6738c019e4c1e5377650f9a982b328ce38e127ebe838cfe61c7d3fad878eaf0a4fd051d32897eb4c2ff33f94669203ccba25fc246405b50f9ac24fdf5d2831cf WHIRLPOOL a9c99f45313fa427e3a4227a3a8b8035c031937851e30fb5a31e8409bef25990497ce3f1b32e0e93c184a6d5549fa2a5e31185790a531350d6774df041c6f5e9 +DIST aespipe-v2.4d.tar.bz2 106703 SHA256 c5ce656e0ade49b93e1163ec7b35450721d5743d8d804ad3a9e39add0389e50f SHA512 3c48facedf2e57978e9762ca1bfaa7c435897d75ab127697e20fa935a4797fde1d88e31db1b46f35968626e1bda3f2d2251d1b3f171cd27ee3cfc7a3d0193248 WHIRLPOOL 4b41b97b50e29fb4d567368684e50f7c6dc13dc9f783e17e8da2355f6aeaa7ec38d266942b1597897f579079674b34275d1bec2af68adfaf212766beb30680d7 diff --git a/app-crypt/aespipe/aespipe-2.4d.ebuild b/app-crypt/aespipe/aespipe-2.4d.ebuild new file mode 100644 index 000000000000..62ceb09ad12c --- /dev/null +++ b/app-crypt/aespipe/aespipe-2.4d.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit flag-o-matic + +DESCRIPTION="Encrypts data from stdin to stdout" +HOMEPAGE="http://loop-aes.sourceforge.net" +SRC_URI="http://loop-aes.sourceforge.net/aespipe/${PN}-v${PV}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris" +IUSE="+asm cpu_flags_x86_aes cpu_flags_x86_padlock static" +DEPEND="" +RDEPEND="app-arch/sharutils + app-crypt/gnupg" + +S="${WORKDIR}/${PN}-v${PV}" + +src_configure() { + use static && append-ldflags -static + econf \ + $(use_enable asm) \ + $(use_enable cpu_flags_x86_aes intelaes) \ + $(use_enable cpu_flags_x86_padlock padlock) +} |