diff options
author | Daniel Black <dragonheart@gentoo.org> | 2005-06-19 06:54:05 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2005-06-19 06:54:05 +0000 |
commit | c73ea046b5f665f403981276b508cd2e2ecabe2f (patch) | |
tree | 8e99a211f0b2845c4cdfe8541e3550357a476d8d /net-ftp/lftp | |
parent | Gave r16 its own conf-smtpd (diff) | |
download | gentoo-2-c73ea046b5f665f403981276b508cd2e2ecabe2f.tar.gz gentoo-2-c73ea046b5f665f403981276b508cd2e2ecabe2f.tar.bz2 gentoo-2-c73ea046b5f665f403981276b508cd2e2ecabe2f.zip |
syntax errors
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'net-ftp/lftp')
-rw-r--r-- | net-ftp/lftp/lftp-3.2.1.ebuild | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/net-ftp/lftp/lftp-3.2.1.ebuild b/net-ftp/lftp/lftp-3.2.1.ebuild index f86303ab4006..5d2133ae9fcb 100644 --- a/net-ftp/lftp/lftp-3.2.1.ebuild +++ b/net-ftp/lftp/lftp-3.2.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-3.2.1.ebuild,v 1.1 2005/06/19 06:46:38 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-3.2.1.ebuild,v 1.2 2005/06/19 06:54:05 dragonheart Exp $ DESCRIPTION="A sophisticated ftp/http client, file transfer program" HOMEPAGE="http://ftp.yars.free.net/projects/lftp/" @@ -18,8 +18,8 @@ DEPEND=">=sys-libs/ncurses-5.1 nls? ( sys-devel/gettext ) socks5? ( >=net-misc/dante-1.1.12 ) socks5? ( virtual/pam ) - ssl? ( - gnutls? ( >=net-libs/gnutls-1.2.3 ) + ssl? ( + gnutls? ( >=net-libs/gnutls-1.2.3 ) !gnutls? ( >=dev-libs/openssl-0.9.6 ) ) sys-libs/readline @@ -39,30 +39,30 @@ src_compile() { if use ssl && use gnutls ; then myconf="${myconf} --without-openssl" elif use ssl && ! use gnutls ; then - myconf="${myconf} --without-gnutls --with-openssl=/usr" - else - myconf="${myconf} --without-gnutls --without-openssl" - fi + myconf="${myconf} --without-gnutls --with-openssl=/usr" + else + myconf="${myconf} --without-gnutls --without-openssl" + fi - use socks5 && myconf="${myconf} --with-socksdante=/usr" \ - || myconf="${myconf} --without-socksdante" + use socks5 && myconf="${myconf} --with-socksdante=/usr" \ + || myconf="${myconf} --without-socksdante" - use ppc-macos && myconf="${myconf} --with-included-readline" + use ppc-macos && myconf="${myconf} --with-included-readline" - econf \ - --sysconfdir=/etc/lftp \ - --without-modules \ - ${myconf} || die "econf failed" + econf \ + --sysconfdir=/etc/lftp \ + --without-modules \ + ${myconf} || die "econf failed" - emake || die "compile problem" + emake || die "compile problem" } src_install() { - emake install DESTDIR=${D} || die + emake install DESTDIR=${D} || die - # hrmph, empty.. - rm -rf ${D}/usr/lib + # hrmph, empty.. + rm -rf ${D}/usr/lib - dodoc BUGS COPYING ChangeLog FAQ FEATURES MIRRORS \ - NEWS README* THANKS TODO + dodoc BUGS COPYING ChangeLog FAQ FEATURES MIRRORS \ + NEWS README* THANKS TODO } |