diff options
Diffstat (limited to 'dev-libs/openssl/openssl-0.9.6-r1.ebuild')
-rw-r--r-- | dev-libs/openssl/openssl-0.9.6-r1.ebuild | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/dev-libs/openssl/openssl-0.9.6-r1.ebuild b/dev-libs/openssl/openssl-0.9.6-r1.ebuild deleted file mode 100644 index 9a053c4be21d..000000000000 --- a/dev-libs/openssl/openssl-0.9.6-r1.ebuild +++ /dev/null @@ -1,49 +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> -# $Header: /var/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 threads - try make shlib -} - -src_install() { - dodir /usr/ssl - try make INSTALL_PREFIX=${D} install - - dolib.so shlib_dir/libcrypto.so.0.9.4 - dolib.so shlib_dir/libssl.so.0.9.4 - preplib /usr - 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 -} - - - |