diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-10-23 10:13:29 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-10-23 10:13:59 +0200 |
commit | bbcdd7edd9ed3e4d2c2d945088acf77f3afa7ac2 (patch) | |
tree | 569cd35dfd3e198e40a73af49a9eb8d1b37a236c /app-crypt/argon2 | |
parent | app-crypt/argon2: Bump to 20190702 (diff) | |
download | gentoo-bbcdd7edd9ed3e4d2c2d945088acf77f3afa7ac2.tar.gz gentoo-bbcdd7edd9ed3e4d2c2d945088acf77f3afa7ac2.tar.bz2 gentoo-bbcdd7edd9ed3e4d2c2d945088acf77f3afa7ac2.zip |
app-crypt/argon2: Drop old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-crypt/argon2')
-rw-r--r-- | app-crypt/argon2/argon2-20171227.ebuild | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/app-crypt/argon2/argon2-20171227.ebuild b/app-crypt/argon2/argon2-20171227.ebuild deleted file mode 100644 index 8ce2715a64d2..000000000000 --- a/app-crypt/argon2/argon2-20171227.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="Password hashing software that won the Password Hashing Competition (PHC)" -HOMEPAGE="https://github.com/P-H-C/phc-winner-argon2" -SRC_URI="https://github.com/P-H-C/phc-winner-argon2/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="|| ( Apache-2.0 CC0-1.0 )" -SLOT="0/1" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86" -IUSE="static-libs" - -S="${WORKDIR}/phc-winner-${P}" - -src_prepare() { - default - if ! use static-libs; then - sed -i -e 's/LIBRARIES = \$(LIB_SH) \$(LIB_ST)/LIBRARIES = \$(LIB_SH)/' Makefile || die "sed failed!" - fi - sed -i -e 's/-O3 //' -e 's/-g //' -e "s/-march=\$(OPTTARGET) /${CFLAGS} /" -e 's/CFLAGS += -march=\$(OPTTARGET)//' Makefile || die "sed failed" -} - -src_install() { - emake DESTDIR="${ED}" LIBRARY_REL="$(get_libdir)" install || die -} |