diff options
author | Pacho Ramos <pacho@gentoo.org> | 2011-07-20 17:13:55 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2011-07-20 17:13:55 +0000 |
commit | 0346012afc6274bd7bba153c62b720dd305fe7f4 (patch) | |
tree | 4a834bf1d28cb9619486a4d5d6eb12677c35b295 /app-crypt | |
parent | Drop maintainer due retirement, bug #118937 (diff) | |
download | gentoo-2-0346012afc6274bd7bba153c62b720dd305fe7f4.tar.gz gentoo-2-0346012afc6274bd7bba153c62b720dd305fe7f4.tar.bz2 gentoo-2-0346012afc6274bd7bba153c62b720dd305fe7f4.zip |
Drop maintainer due retirement, bug #118937; remove old.
(Portage version: 2.1.10.6/cvs/Linux x86_64)
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/nistp224/ChangeLog | 8 | ||||
-rw-r--r-- | app-crypt/nistp224/metadata.xml | 2 | ||||
-rw-r--r-- | app-crypt/nistp224/nistp224-0.75.ebuild | 49 |
3 files changed, 7 insertions, 52 deletions
diff --git a/app-crypt/nistp224/ChangeLog b/app-crypt/nistp224/ChangeLog index 67c09216ca36..9366462e025e 100644 --- a/app-crypt/nistp224/ChangeLog +++ b/app-crypt/nistp224/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-crypt/nistp224 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/nistp224/ChangeLog,v 1.3 2009/03/16 11:14:03 bangert Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/nistp224/ChangeLog,v 1.4 2011/07/20 17:13:55 pacho Exp $ + + 20 Jul 2011; Pacho Ramos <pacho@gentoo.org> -nistp224-0.75.ebuild, + metadata.xml: + Drop maintainer due retirement, bug #118937; remove old. *nistp224-0.75-r1 (16 Mar 2009) diff --git a/app-crypt/nistp224/metadata.xml b/app-crypt/nistp224/metadata.xml index c327e6246f2f..8c7efc975b20 100644 --- a/app-crypt/nistp224/metadata.xml +++ b/app-crypt/nistp224/metadata.xml @@ -3,7 +3,7 @@ <pkgmetadata> <herd>no-herd</herd> <maintainer> - <email>bangert@gentoo.org</email> + <email>maintainer-needed@gentoo.org</email> </maintainer> <longdescription lang="en"> nistp224 performs compressed Diffie-Hellman key exchange on the NIST P-224 diff --git a/app-crypt/nistp224/nistp224-0.75.ebuild b/app-crypt/nistp224/nistp224-0.75.ebuild deleted file mode 100644 index 9f59a3e2c592..000000000000 --- a/app-crypt/nistp224/nistp224-0.75.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/nistp224/nistp224-0.75.ebuild,v 1.2 2008/06/26 07:57:55 bangert Exp $ - -inherit toolchain-funcs flag-o-matic fixheadtails - -DESCRIPTION="nistp224 performs compressed Diffie-Hellman key exchange on the NIST P-224 elliptic curve" -HOMEPAGE="http://cr.yp.to/nistp224.html" -SRC_URI="http://cr.yp.to/${PN}/${P}.tar.gz" -LICENSE="as-is" -SLOT="0" -KEYWORDS="~x86" -IUSE="" -DEPEND="" -RDEPEND=${DEPEND} -S=${WORKDIR}/math/${P}/src - -src_unpack() { - unpack ${A} - epatch "${FILESDIR}"/${P}-asmfix.patch - epatch "${FILESDIR}"/${P}-declare-exit.patch - cd "${S}" - ht_fix_file Makefile print*.sh - append-flags -fPIC - echo -n "$(tc-getCC) ${CFLAGS}" > conf-cc - echo -n "$(tc-getCC) ${LDFLAGS}" > conf-ld - if use ppc; then - # untested - echo -n "powerpc" > conf-opt - elif use sparc; then - # untested - echo -n "sparc" > conf-opt - else - # optiminations for ppro and pentium fail - echo -n "idea64" > conf-opt - fi -} - -src_compile() { - emake || die "emake failed" -} - -src_install() { - dobin nistp224 nistp224-56 - mv nistp224.a libnistp224.a - dolib.a libnistp224.a - insinto /usr/include - doins nistp224.h -} |