blob: 7305dfbcbbafa806269fb00e258682e48d46772d (
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
35
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/sslwrap/sslwrap-2.0.5-r1.ebuild,v 1.12 2002/12/09 04:33:19 manson Exp $
S=${WORKDIR}/${PN}${PV/.0./0}
DESCRIPTION="TSL/SSL - Port Wrapper"
SRC_URI="http://www.rickk.com/sslwrap/${PN}.tar.gz"
HOMEPAGE="http://www.rickk.com/sslwrap/"
KEYWORDS="x86 sparc "
LICENSE="sslwrap"
SLOT="0"
DEPEND=">=sys-libs/glibc-2.1.3
>=dev-libs/openssl-0.9.6"
src_unpack () {
unpack ${A}
cd ${S}
cp Makefile Makefile.orig
sed -e "s/-O2/${CFLAGS}/" \
-e "s:/usr/local/ssl/include:/usr/include/openssl:" Makefile.orig > Makefile
cp ${FILESDIR}/*.c ${S}
}
src_compile() {
emake || die
}
src_install() {
cd ${S}
into /usr
dosbin sslwrap
dodoc README
dohtml -r ./
}
|