summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAgostino Sarubbo <ago@gentoo.org>2012-05-10 14:50:08 +0000
committerAgostino Sarubbo <ago@gentoo.org>2012-05-10 14:50:08 +0000
commit3410632ccdc4551762f79dc8e52057fa00a41fa3 (patch)
treefca94d0f3847b65ca385fe338f109ad321ddf3d8 /app-crypt
parentRemove old (diff)
downloadgentoo-2-3410632ccdc4551762f79dc8e52057fa00a41fa3.tar.gz
gentoo-2-3410632ccdc4551762f79dc8e52057fa00a41fa3.tar.bz2
gentoo-2-3410632ccdc4551762f79dc8e52057fa00a41fa3.zip
Remove old
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/keynote/ChangeLog5
-rw-r--r--app-crypt/keynote/keynote-2.3-r1.ebuild50
2 files changed, 4 insertions, 51 deletions
diff --git a/app-crypt/keynote/ChangeLog b/app-crypt/keynote/ChangeLog
index db34bc0322f9..6892d2619270 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.14 2012/01/29 02:51:40 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/keynote/ChangeLog,v 1.15 2012/05/10 14:50:08 ago Exp $
+
+ 10 May 2012; Agostino Sarubbo <ago@gentoo.org> -keynote-2.3-r1.ebuild:
+ Remove old
29 Jan 2012; Michael Weber <xmw@gentoo.org> keynote-2.3-r2.ebuild:
Add yacc dependency (thanks bay, bug 399341), EAPI-4
diff --git a/app-crypt/keynote/keynote-2.3-r1.ebuild b/app-crypt/keynote/keynote-2.3-r1.ebuild
deleted file mode 100644
index d7ffe8789880..000000000000
--- a/app-crypt/keynote/keynote-2.3-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/keynote/keynote-2.3-r1.ebuild,v 1.1 2010/09/20 22:36:24 jer Exp $
-
-EAPI="2"
-
-inherit eutils 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 )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-cp -av Makefile.in{,.orig}
- epatch "${FILESDIR}"/${P}-make.patch
-}
-
-src_configure() {
- tc-export AR CC RANLIB
- econf
-}
-
-src_compile() {
- # bug #298669
- if use ssl; then
- emake -j1 || die
- else
- emake -j1 nocrypto || die
- fi
-}
-
-src_install() {
- dobin keynote || die
-
- dolib.a libkeynote.a
-
- insinto /usr/include
- doins keynote.h
-
- doman man/keynote.[1345]
- dodoc README HOWTO.add.crypto TODO
-}