summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Hadaway <raker@gentoo.org>2002-12-09 00:54:03 +0000
committerNick Hadaway <raker@gentoo.org>2002-12-09 00:54:03 +0000
commit41dba83f074561a646c02b14b5d6d54a28c57eb9 (patch)
treeeb6c745a3cc9d921eaea17a9c5aa85bf6dd5f726 /net-ftp
parentFixed deps (diff)
downloadgentoo-2-41dba83f074561a646c02b14b5d6d54a28c57eb9.tar.gz
gentoo-2-41dba83f074561a646c02b14b5d6d54a28c57eb9.tar.bz2
gentoo-2-41dba83f074561a646c02b14b5d6d54a28c57eb9.zip
Changed to econf. Removed unneeded compile flags.
Diffstat (limited to 'net-ftp')
-rw-r--r--net-ftp/lftp/ChangeLog6
-rw-r--r--net-ftp/lftp/lftp-2.6.3.ebuild11
2 files changed, 7 insertions, 10 deletions
diff --git a/net-ftp/lftp/ChangeLog b/net-ftp/lftp/ChangeLog
index 6df108c5c0ed..7c0064b0e71b 100644
--- a/net-ftp/lftp/ChangeLog
+++ b/net-ftp/lftp/ChangeLog
@@ -1,15 +1,17 @@
# ChangeLog for net-ftp/lftp
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.14 2002/12/02 18:49:05 spider Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/ChangeLog,v 1.15 2002/12/09 00:54:03 raker Exp $
*lftp-2.6.3 (02 Dec 2002)
+
+ 08 Dec 2002; Nick Hadaway <raker@gentoo.org> lftp-2.6.3.ebuild :
+ Changed to econf. Removed unneeded compile flags setting.
02 Dec 2002; Spider <spider@gentoo.org> lftp-2.6.3.ebuild :
in my quest to get my suddenly broken ftp-ssl to work I'm updating this
ebuild to the latest version avaiable. KEWORDS set to ~ where not -
-
*lftp-2.6.2 (11 Sep 2002)
17 Sep 2002; Nick Hadaway <raker@gentoo.org> lftp-2.6.2.ebuild :
diff --git a/net-ftp/lftp/lftp-2.6.3.ebuild b/net-ftp/lftp/lftp-2.6.3.ebuild
index f001697a809c..10d2251d7596 100644
--- a/net-ftp/lftp/lftp-2.6.3.ebuild
+++ b/net-ftp/lftp/lftp-2.6.3.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-2.6.3.ebuild,v 1.1 2002/12/02 18:49:05 spider Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-2.6.3.ebuild,v 1.2 2002/12/09 00:54:03 raker Exp $
IUSE="ssl socks5 nls"
@@ -42,15 +42,10 @@ src_compile() {
use socks5 && myconf="${myconf} --with-socksdante=/usr" \
|| myconf="${myconf} --without-socksdante"
- export CFLAGS="-fno-exceptions -fno-rtti ${CFLAGS}"
- export CXXFLAGS="-fno-exceptions -fno-rtti ${CXXFLAGS}"
-
- ./configure \
- --prefix=/usr \
+ econf \
--sysconfdir=/etc/lftp \
--without-modules \
- --mandir=/usr/share/man \
- --host=${CHOST} ${myconf} || die "bad ./configure"
+ ${myconf} || die "bad ./configure"
make || die "compile problem"
}