summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonny Davies <woodchip@gentoo.org>2001-08-28 05:48:01 +0000
committerDonny Davies <woodchip@gentoo.org>2001-08-28 05:48:01 +0000
commit99ca106d836d81bb3fe2bab50b0ffca257f242d9 (patch)
treea521ce3d15175763eabd5df9b0d03c97d1bf5db0 /net-www/lynx
parentAdded the latest version with native SSL support. Fantastic program! (diff)
downloadhistorical-99ca106d836d81bb3fe2bab50b0ffca257f242d9.tar.gz
historical-99ca106d836d81bb3fe2bab50b0ffca257f242d9.tar.bz2
historical-99ca106d836d81bb3fe2bab50b0ffca257f242d9.zip
Removed old, stale version. New version 2.8.4a is available in the tree
Diffstat (limited to 'net-www/lynx')
-rw-r--r--net-www/lynx/files/digest-lynx-2.8.3-r12
-rw-r--r--net-www/lynx/files/fr.po.gzbin64312 -> 0 bytes
-rw-r--r--net-www/lynx/lynx-2.8.3-r1.ebuild80
3 files changed, 0 insertions, 82 deletions
diff --git a/net-www/lynx/files/digest-lynx-2.8.3-r1 b/net-www/lynx/files/digest-lynx-2.8.3-r1
deleted file mode 100644
index 8a61c8f3ff48..000000000000
--- a/net-www/lynx/files/digest-lynx-2.8.3-r1
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 fb0dda3883fe2f0d016632019dd09adf lynx-2.8.3.tar.gz
-MD5 c48607b33f493284ba60c8a431a13b03 lynx-283-ssl.patch.gz
diff --git a/net-www/lynx/files/fr.po.gz b/net-www/lynx/files/fr.po.gz
deleted file mode 100644
index e7ef63af1346..000000000000
--- a/net-www/lynx/files/fr.po.gz
+++ /dev/null
Binary files differ
diff --git a/net-www/lynx/lynx-2.8.3-r1.ebuild b/net-www/lynx/lynx-2.8.3-r1.ebuild
deleted file mode 100644
index 26d92ac3eec9..000000000000
--- a/net-www/lynx/lynx-2.8.3-r1.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# 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.3-r1.ebuild,v 1.5 2001/06/01 14:00:14 achim Exp $
-
-# NOW HAS SSLeay Support (so it will use the SSLeay library if found to
-# do SSL connections :)
-
-P=lynx-2.8.3
-A="lynx-2.8.3.tar.gz lynx-283-ssl.patch.gz"
-S=${WORKDIR}/lynx-2.8.3.rel1
-SRC_URI="ftp://lynx.isc.org/lynx-2.8.3/lynx-2.8.3.tar.gz
- http://www.moxienet.com/lynx/lynx-283-ssl.patch.gz"
-
-HOMEPAGE="http://lynx.browser.org/"
-
-DESCRIPTION="An excellent console-based web browser"
-
-DEPEND="virtual/glibc nls? ( sys-devel/gettext )
- >=sys-libs/ncurses-5.1
- >=sys-libs/zlib-1.1.3
- ssl? ( >=dev-libs/openssl-0.9.6 )"
-
-RDEPEND="virtual/glibc
- >=sys-libs/ncurses-5.1
- >=sys-libs/zlib-1.1.3
- ssl? ( >=dev-libs/openssl-0.9.6 )"
-
-src_unpack() {
- unpack lynx-2.8.3.tar.gz
- cd ${S}
- if [ "`use ssl`" ] ; then
- gzip -dc ${DISTDIR}/lynx-283-ssl.patch.gz | patch -p1
- fi
- zcat ${O}/files/fr.po.gz > ${S}/po/fr.po
-}
-
-src_compile() {
- local myconf
- if [ "`use nls`" ] ; then
- myconf="--enable-nls"
- fi
- if [ "`use ssl`" ] ; then
- export CFLAGS="${CFLAGS} -I/usr/include/openssl"
- fi
- try ./configure --prefix=/usr --mandir=/usr/share/man --datadir=/usr/share \
- --libdir=/etc/lynx --enable-cgi-links \
- --enable-nsl-fork --libdir=/etc/lynx --enable-file-upload \
- --enable-libjs --enable-color-style --enable-scrollbar \
- --enable-included-msgs --with-zlib $myconf
-
- try make
-}
-
-
-src_install() {
-
- into /
- dodir /usr/bin
- dodir /usr/share
- dodir /etc/lynx
- try make prefix=${D}/usr datadir=${D}/usr/share \
- mandir=${D}/usr/share/man libdir=${D}/etc/lynx install
-
-
- dodoc CHANGES COPYHEADER COPYING INSTALLATION PROBLEMS README
- docinto docs
- dodoc docs/*
- docinto lynx_help
- dodoc lynx_help/*.txt
- docinto html
- dodoc lynx_help/*.html
- docinto html/keystrokes
- dodoc lynx_help/keystrokes/*.html
-}
-
-
-
-
-