You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-ftp/tlswrap/tlswrap-1.02.ebuild

35 lines
828 B

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/tlswrap/tlswrap-1.02.ebuild,v 1.4 2012/07/12 08:42:03 voyageur Exp $
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"
# GPL-2 for Gentoo init script
LICENSE="BSD GPL-2"
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
}