blob: 6bd7c545518bfc7493150b7c0b32db7bca135c7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# 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.5a-r1.ebuild,v 1.3 2000/09/15 20:08:49 drobbins Exp $
P=openssl-0.9.5a
A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="Toolkit for SSL v2/v3 and TLS v1"
SRC_URI="http://www.openssl.org/source/openssl-0.9.5a.tar.gz"
HOMEPAGE="http://www.opensl.org/"
src_compile() {
./config --prefix=/usr --openssldir=/usr/ssl threads
cp Makefile Makefile.orig
sed -e "s/-O3/$CFLAGS/" -e "s/-m486//" Makefile.orig > Makefile
try make
}
src_install() {
try make INSTALL_PREFIX=${D} install
mv ${D}/usr/ssl/man ${D}/usr
prepman
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
}
|