diff options
author | Johannes Huber <johu@gentoo.org> | 2012-06-07 21:17:20 +0000 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2012-06-07 21:17:20 +0000 |
commit | fbb786dd0f405806a0c6a3e597b7ba8e4babae07 (patch) | |
tree | ac676dfab518e8083d40effaa71e81dd6a500978 /app-crypt/keynote | |
parent | Marking lib_users-0.5 ppc for bug 420039 (diff) | |
download | gentoo-2-fbb786dd0f405806a0c6a3e597b7ba8e4babae07.tar.gz gentoo-2-fbb786dd0f405806a0c6a3e597b7ba8e4babae07.tar.bz2 gentoo-2-fbb786dd0f405806a0c6a3e597b7ba8e4babae07.zip |
Remove old.
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Diffstat (limited to 'app-crypt/keynote')
-rw-r--r-- | app-crypt/keynote/ChangeLog | 5 | ||||
-rw-r--r-- | app-crypt/keynote/keynote-2.3.ebuild | 48 |
2 files changed, 4 insertions, 49 deletions
diff --git a/app-crypt/keynote/ChangeLog b/app-crypt/keynote/ChangeLog index c8bef4b5ff61..9dd0d876b7ad 100644 --- a/app-crypt/keynote/ChangeLog +++ b/app-crypt/keynote/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-crypt/keynote # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/keynote/ChangeLog,v 1.17 2012/06/07 21:14:38 johu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/keynote/ChangeLog,v 1.18 2012/06/07 21:17:19 johu Exp $ + + 07 Jun 2012; Johannes Huber <johu@gentoo.org> -keynote-2.3.ebuild: + Remove old. 07 Jun 2012; Johannes Huber <johu@gentoo.org> keynote-2.3-r2.ebuild: Stable for x86, wrt bug #418521 diff --git a/app-crypt/keynote/keynote-2.3.ebuild b/app-crypt/keynote/keynote-2.3.ebuild deleted file mode 100644 index 42270039c263..000000000000 --- a/app-crypt/keynote/keynote-2.3.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/keynote/keynote-2.3.ebuild,v 1.11 2009/12/28 11:59:51 flameeyes Exp $ - -inherit toolchain-funcs - -DESCRIPTION="The KeyNote Trust-Management System" -HOMEPAGE="http://www1.cs.columbia.edu/~angelos/keynote.html" -SRC_URI="http://www1.cs.columbia.edu/~angelos/Code/${P}.tar.gz" - -LICENSE="as-is" -SLOT="0" -KEYWORDS="~amd64 x86" -IUSE="ssl" - -DEPEND="ssl? ( dev-libs/openssl )" - -src_unpack() { - unpack ${A} - cd "${S}" - - sed -i -e "/^CFLAGS/s/-O2/${CFLAGS}/" \ - -e "/^AR/d" Makefile.in || die "sed failed" -} - -src_compile() { - tc-export AR CC RANLIB - econf - # bug #298669 - if use ssl; then - emake -j1 || die - else - emake -j1 nocrypto || die - fi -} - -src_install() { - dobin keynote || die - - doman man/keynote.[1345] - - dolib.a libkeynote.a - - insinto /usr/include - doins keynote.h - - dodoc README HOWTO.add.crypto TODO -} |