blob: f6195b97319855f7bde7d97c2b5434907cb242e4 (
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
42
43
44
45
46
47
48
49
|
# Copyright 2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-4.02.ebuild,v 1.1 2002/10/26 23:42:32 aliz Exp $
S=${WORKDIR}/${P}
DESCRIPTION="TSL/SSL - Port Wrapper"
SRC_URI="http://www.stunnel.org/download/stunnel/src/${P}.tar.gz"
HOMEPAGE="http://stunnel.mirt.net"
DEPEND="virtual/glibc >=dev-libs/openssl-0.9.6c"
RDEPEND=">=dev-libs/openssl-0.9.6c"
KEYWORDS="~x86 ~sparc ~sparc64"
LICENSE="GPL-2"
SLOT="0"
src_unpack() {
unpack ${A}; cd ${S}
patch -p0 < ${FILESDIR}/${PF}-gentoo.diff
}
src_compile() {
./configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man || die
emake || die
}
src_install() {
into /usr
dosbin src/stunnel
dodoc AUTHORS BUGS COPYING COPYRIGHT.GPL CREDITS INSTALL NEWS PORTS README TODO
dodoc doc/en/transproxy.txt
dohtml doc/stunnel.html doc/en/VNC_StunnelHOWTO.html tools/ca.html tools/importCA.html
doman doc/stunnel.8
insinto /usr/share/doc/${PF}
doins tools/ca.pl tools/importCA.sh
insinto /etc/init.d
newins ${FILESDIR}/stunnel.rc6 stunnel
dolib src/.libs/libstunnel.la
dolib.so src/.libs/libstunnel.so
insinto /etc
doins ${FILESDIR}/stunnel.conf
}
pkg_postinst() {
einfo "Starting from version 4 stunnel now uses a configuration file for setting up stunnels."
einfo "Stunnel can now also be run as a daemon"
}
|