summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-libs/openssl/openssl-0.9.6a.ebuild')
-rw-r--r--dev-libs/openssl/openssl-0.9.6a.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-libs/openssl/openssl-0.9.6a.ebuild b/dev-libs/openssl/openssl-0.9.6a.ebuild
deleted file mode 100644
index 201dd455dcd0..000000000000
--- a/dev-libs/openssl/openssl-0.9.6a.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2000 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author Achim Gottinger <achim@gentoo.org>
-# /home/cvsroot/gentoo-x86/dev-libs/openssl/openssl-0.9.6-r1.ebuild,v 1.1 2001/03/09 10:26:59 achim Exp
-
-A=${P}.tar.gz
-S=${WORKDIR}/${P}
-DESCRIPTION="Toolkit for SSL v2/v3 and TLS v1"
-SRC_URI="http://www.openssl.org/source/${A}"
-HOMEPAGE="http://www.opensl.org/"
-
-DEPEND="virtual/glibc >=sys-devel/perl-5"
-
-
-RDEPEND="virtual/glibc "
-src_unpack() {
-
- unpack ${A}
- cd ${S}
- patch -p0 < ${FILESDIR}/${P}-Makefile.org-gentoo.diff
- cp Configure Configure.orig
- sed -e "s/-O3/$CFLAGS/" -e "s/-m486//" \
- Configure.orig > Configure
-
-}
-
-src_compile() {
-
- ./config --prefix=/usr --openssldir=/usr/ssl shared threads
- try make all
-}
-
-src_install() {
- dodir /usr/ssl
- try make INSTALL_PREFIX=${D} install
-
- dodoc CHANGES* FAQ LICENSE NEWS README
- dodoc doc/*.txt
- docinto html
- dodoc doc/*.gif doc/*.html
- insinto /usr/share/emacs/site-lisp
- doins doc/c-indentation.el
-}
-
-
-