summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lutgens <lamer@gentoo.org>2001-08-16 23:19:35 +0000
committerBen Lutgens <lamer@gentoo.org>2001-08-16 23:19:35 +0000
commit05ee33a76dae209c02e9f0e5a4bb4f3eb3603ed2 (patch)
treebd0ddfcd0224fac0874dfaf7209297953823a91a /dev-libs
parent*** empty log message *** (diff)
downloadgentoo-2-05ee33a76dae209c02e9f0e5a4bb4f3eb3603ed2.tar.gz
gentoo-2-05ee33a76dae209c02e9f0e5a4bb4f3eb3603ed2.tar.bz2
gentoo-2-05ee33a76dae209c02e9f0e5a4bb4f3eb3603ed2.zip
this is the 4th or 5th time I've tried to commit, I just ntpdated to sync my time, and I'm still off.
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/openssl/openssl-0.9.6a.ebuild46
-rw-r--r--dev-libs/openssl/openssl-0.9.6b.ebuild2
2 files changed, 2 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
-}
-
-
-
diff --git a/dev-libs/openssl/openssl-0.9.6b.ebuild b/dev-libs/openssl/openssl-0.9.6b.ebuild
index 062dd7c8ec11..c0276f5c6e74 100644
--- a/dev-libs/openssl/openssl-0.9.6b.ebuild
+++ b/dev-libs/openssl/openssl-0.9.6b.ebuild
@@ -21,6 +21,8 @@ src_unpack() {
cp Configure Configure.orig
sed -e "s/-O3/$CFLAGS/" -e "s/-m486//" \
Configure.orig > Configure
+# Makefile borkage. The MANDIR is set to ${OPENSSLDIR}/man which is lame
+ sed -e 's:MANDIR=$(OPENSSLDIR)/man:MANDIR=/usr/share/man:g' Makefile | cat > Makefile
}
src_compile() {