diff options
author | Preston A. Elder <prez@gentoo.org> | 2002-05-29 23:24:18 +0000 |
---|---|---|
committer | Preston A. Elder <prez@gentoo.org> | 2002-05-29 23:24:18 +0000 |
commit | 3767f238bcf6edd980c6ebd75d81ea4fdd370ce1 (patch) | |
tree | 402a6c0c7ae717b7b5c6e589ce6e8d051fab6bc9 /net-www/lynx | |
parent | fixing a xml bug in xscreensaver (diff) | |
download | historical-3767f238bcf6edd980c6ebd75d81ea4fdd370ce1.tar.gz historical-3767f238bcf6edd980c6ebd75d81ea4fdd370ce1.tar.bz2 historical-3767f238bcf6edd980c6ebd75d81ea4fdd370ce1.zip |
Fixed so the configure script does the right thing when ssl is used.
Diffstat (limited to 'net-www/lynx')
-rw-r--r-- | net-www/lynx/ChangeLog | 12 | ||||
-rw-r--r-- | net-www/lynx/lynx-2.8.4a-r3.ebuild | 4 |
2 files changed, 12 insertions, 4 deletions
diff --git a/net-www/lynx/ChangeLog b/net-www/lynx/ChangeLog index 1808775bf4b6..d60f40be6279 100644 --- a/net-www/lynx/ChangeLog +++ b/net-www/lynx/ChangeLog @@ -1,9 +1,17 @@ # ChangeLog for net-www/lynx # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-www/lynx/ChangeLog,v 1.3 2002/05/08 23:29:54 edolnx Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/lynx/ChangeLog,v 1.4 2002/05/29 23:24:18 prez Exp $ + +*lynx-2.8.4a-r3 (29 May 2002) + + 29 May 2002; Preston A. Elder <prez@gentoo.org> lynx-2.8.4a-r3.ebuild : + + Fixed the ebuild to just pass --with-ssl=yes, not --with-ssl=/usr. + The configure fails to do the right thing with the path version. *lynx-2.8.4a-r3 (08 May 2002) - 08 May 2002; Carl Perry <edolnx@gentoo.org> lynx-2.8.4ar3.ebuild : + + 08 May 2002; Carl Perry <edolnx@gentoo.org> lynx-2.8.4a-r3.ebuild : Fixed the alternate SRC_URI link so that it works. Found during ibiblio.org outage yesterday. diff --git a/net-www/lynx/lynx-2.8.4a-r3.ebuild b/net-www/lynx/lynx-2.8.4a-r3.ebuild index 97861594fc68..e145c2a70a11 100644 --- a/net-www/lynx/lynx-2.8.4a-r3.ebuild +++ b/net-www/lynx/lynx-2.8.4a-r3.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-www/lynx/lynx-2.8.4a-r3.ebuild,v 1.2 2002/05/08 23:29:54 edolnx Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/lynx/lynx-2.8.4a-r3.ebuild,v 1.3 2002/05/29 23:24:18 prez Exp $ S=${WORKDIR}/lynx2-8-4 HOMEPAGE="http://lynx.browser.org/" @@ -24,7 +24,7 @@ src_unpack() { src_compile() { local myconf use nls && myconf="${myconf} --enable-nls" - use ssl && myconf="${myconf} --with-ssl=/usr" + use ssl && myconf="${myconf} --with-ssl=yes" use ipv6 && myconf="${myconf} --enable-ipv6" ./configure --prefix=/usr --mandir=/usr/share/man --datadir=/usr/share \ |