summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-crypt/keynote/keynote-2.3-r2.ebuild')
-rw-r--r--app-crypt/keynote/keynote-2.3-r2.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/app-crypt/keynote/keynote-2.3-r2.ebuild b/app-crypt/keynote/keynote-2.3-r2.ebuild
deleted file mode 100644
index 2fa88323f88b..000000000000
--- a/app-crypt/keynote/keynote-2.3-r2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/keynote/keynote-2.3-r2.ebuild,v 1.4 2012/06/07 21:14:38 johu Exp $
-
-EAPI="4"
-
-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"
-
-RDEPEND="ssl? ( dev-libs/openssl )"
-DEPEND="${RDEPEND}
- virtual/yacc"
-
-src_prepare() {
- cp -av Makefile.in{,.orig} || die
- epatch "${FILESDIR}"/${P}-make.patch
- epatch "${FILESDIR}"/$P-parallel-build.patch
-}
-
-src_configure() {
- tc-export AR CC RANLIB
- econf
-}
-
-src_compile() {
- if use ssl; then
- emake
- else
- emake nocrypto
- fi
-}
-
-src_install() {
- dobin keynote
-
- dolib.a libkeynote.a
-
- insinto /usr/include
- doins keynote.h
-
- doman man/keynote.[1345]
- dodoc README HOWTO.add.crypto TODO
-}