blob: 1813266b1059c5b31b127f7e6d270847e872f519 (
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
36
37
38
39
40
41
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/sslwrap/sslwrap-2.0.6.ebuild,v 1.12 2006/11/22 20:25:43 beandog Exp $
inherit eutils
DESCRIPTION="TSL/SSL - Port Wrapper"
HOMEPAGE="http://quiltaholic.com/rickk/sslwrap/"
SRC_URI="http://quiltaholic.com/rickk/sslwrap/${PN}${PV/.0./0}.tar.gz
mirror://gentoo/${PN}-gentoo.tar.bz2"
LICENSE="sslwrap"
SLOT="0"
KEYWORDS="x86 sparc"
IUSE=""
DEPEND=">=dev-libs/openssl-0.9.6"
S=${WORKDIR}/${PN}${PV//.}
src_unpack () {
unpack ${A}
cd ${S}
sed -i \
-e "s:-O2:${CFLAGS}:" \
-e "s:/usr/local/ssl/include:/usr/include/openssl:" \
Makefile
cp ${WORKDIR}/${PN}-gentoo/*.c ${S}
has_version '=dev-libs/openssl-0.9.7*' \
&& epatch ${FILESDIR}/${PV}-openssl-0.9.7.patch
sed -i \
-e "s:OPENSSL\":\"openssl\/:g" \
*.h *.c
}
src_install() {
dosbin sslwrap
dodoc README
dohtml -r ./
}
|