diff options
author | 2006-07-11 14:16:26 +0000 | |
---|---|---|
committer | 2006-07-11 14:16:26 +0000 | |
commit | 4c0db1087304327a05649d268804e8f766f9edaf (patch) | |
tree | 8d7fd85b8ae39373e196d14bdf8fefd6c3182f38 /net-ftp/tlswrap/tlswrap-1.02.ebuild | |
parent | Mark 1.4.0-r1 stable on ia64, mark 1.4.1 ~ia64 (diff) | |
download | gentoo-2-4c0db1087304327a05649d268804e8f766f9edaf.tar.gz gentoo-2-4c0db1087304327a05649d268804e8f766f9edaf.tar.bz2 gentoo-2-4c0db1087304327a05649d268804e8f766f9edaf.zip |
Initial import
(Portage version: 2.1.1_pre2-r6)
Diffstat (limited to 'net-ftp/tlswrap/tlswrap-1.02.ebuild')
-rw-r--r-- | net-ftp/tlswrap/tlswrap-1.02.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/net-ftp/tlswrap/tlswrap-1.02.ebuild b/net-ftp/tlswrap/tlswrap-1.02.ebuild new file mode 100644 index 000000000000..54a591eeff8a --- /dev/null +++ b/net-ftp/tlswrap/tlswrap-1.02.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header $ + +inherit eutils + +DESCRIPTION="TLSWRAP is a TLS/SSL FTP wrapper/proxy which allows to use TLS with every FTP client" +HOMEPAGE="http://tlswrap.sunsite.dk" +SRC_URI="http://tlswrap.sunsite.dk/${P}.tar.gz" + +LICENSE="tlswrap" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND=">=dev-libs/openssl-0.9.7" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${P}-quiet-stderr.patch" +} + +src_compile() { + econf || die "econf failed" + emake || die "emake failed" +} + +src_install() { + dodoc ChangeLog README + einstall || die "einstall failed" + newinitd "${FILESDIR}/tlswrap.init" tlswrap +} |