summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLance Albertson <ramereth@gentoo.org>2005-06-22 04:28:25 +0000
committerLance Albertson <ramereth@gentoo.org>2005-06-22 04:28:25 +0000
commit2967016ebb989fc174933976a9541bf632d06e0b (patch)
treec26012f3cd2e677523132c13dae668e5d480bb91 /net-misc/stunnel/stunnel-3.26.ebuild
parentRevision bump to fix Bug 90407 (diff)
downloadgentoo-2-2967016ebb989fc174933976a9541bf632d06e0b.tar.gz
gentoo-2-2967016ebb989fc174933976a9541bf632d06e0b.tar.bz2
gentoo-2-2967016ebb989fc174933976a9541bf632d06e0b.zip
cleaning out old stuff, adding 4.10 for testing
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-misc/stunnel/stunnel-3.26.ebuild')
-rw-r--r--net-misc/stunnel/stunnel-3.26.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/net-misc/stunnel/stunnel-3.26.ebuild b/net-misc/stunnel/stunnel-3.26.ebuild
deleted file mode 100644
index 87a69f092513..000000000000
--- a/net-misc/stunnel/stunnel-3.26.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-3.26.ebuild,v 1.10 2005/02/11 20:58:27 kaiowas Exp $
-
-inherit eutils
-
-DESCRIPTION="TLS/SSL - Port Wrapper"
-HOMEPAGE="http://www.stunnel.org/"
-SRC_URI="http://www.stunnel.org/download/stunnel/src/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 sparc alpha ppc ~amd64 ~ppc-macos"
-IUSE="selinux"
-
-RDEPEND=">=dev-libs/openssl-0.9.6j
- selinux? ( sec-policy/selinux-stunnel )"
-DEPEND="${RDEPEND}
- virtual/libc"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${P}-gentoo.diff
- if use ppc-macos ; then
- sed -i -e "s,-shared,-dynamic -flat_namespace -bundle -undefined suppress,g" \
- -e "s,stunnel.so,stunnel.dylib,g" \
- Makefile.in || die "sed failed"
- fi
-}
-
-src_compile() {
- econf || die
- emake || die
-}
-
-src_install() {
- dosbin stunnel
- dodoc FAQ README HISTORY COPYING BUGS PORTS TODO transproxy.txt
- doman stunnel.8
- if use ppc-macos ; then
- dolib.so stunnel.dylib
- else
- dolib.so stunnel.so
- fi
-}