Blame SPECS/lynx.spec

85fd1a
%global devrel 15
85fd1a
85fd1a
Summary: A text-based Web browser
85fd1a
Name: lynx
85fd1a
Version: 2.8.8
b2e5d2
Release: 0.3.dev%{devrel}%{?dist}
85fd1a
License: GPLv2
85fd1a
Group: Applications/Internet
85fd1a
Source: http://lynx.isc.org/current/lynx%{version}dev.%{devrel}.tar.bz2
85fd1a
URL: http://lynx.isc.org/
85fd1a
85fd1a
# RH specific tweaks - directory layout, utf-8 by default, misc. configuration
85fd1a
Patch0: lynx-2.8.8-redhat.patch
85fd1a
85fd1a
# patch preparing upstream sources for rpmbuild, in particular for parallel make
85fd1a
Patch1: lynx-2.8.8-build.patch
85fd1a
85fd1a
# prompt user before executing command via a lynxcgi link even in advanced mode,
85fd1a
# as the actual URL may not be shown but hidden behind an HTTP redirect and set
85fd1a
# TRUSTED_LYNXCGI:none in lynx.cfg to disable all lynxcgi URLs by default
85fd1a
# [CVE-2008-4690]
85fd1a
Patch2: lynx-CVE-2008-4690.patch
85fd1a
85fd1a
# avoid build failure caused by mistakenly excluded <locale.h>
85fd1a
Patch3: lynx-2.8.8-locale.patch
85fd1a
85fd1a
Provides: webclient
85fd1a
Provides: text-www-browser
85fd1a
BuildRequires: gettext
85fd1a
BuildRequires: openssl-devel
85fd1a
BuildRequires: ncurses-devel
85fd1a
BuildRequires: rsh
85fd1a
BuildRequires: slang-devel
85fd1a
BuildRequires: telnet
85fd1a
BuildRequires: unzip
85fd1a
BuildRequires: zip
85fd1a
BuildRequires: zlib-devel
85fd1a
85fd1a
# provides /usr/share/doc/HTML/en-US/index.html used as STARTFILE on RHEL
85fd1a
%if 0%{?rhel}
85fd1a
Requires: redhat-indexhtml
85fd1a
%endif
85fd1a
85fd1a
%description
85fd1a
Lynx is a text-based Web browser. Lynx does not display any images,
85fd1a
but it does support frames, tables, and most other HTML tags. One
85fd1a
advantage Lynx has over graphical browsers is speed; Lynx starts and
85fd1a
exits quickly and swiftly displays web pages.
85fd1a
85fd1a
%prep
85fd1a
%setup -q -n lynx2-8-8
85fd1a
85fd1a
%patch0 -p1
85fd1a
%patch1 -p1
85fd1a
%patch2 -p1
85fd1a
%patch3 -p1
85fd1a
85fd1a
perl -pi -e "s,^HELPFILE:.*,HELPFILE:file://localhost/usr/share/doc/lynx-%{version}/lynx_help/lynx_help_main.html,g" lynx.cfg
85fd1a
perl -pi -e "s,^DEFAULT_INDEX_FILE:.*,DEFAULT_INDEX_FILE:http://www.google.com/,g" lynx.cfg
85fd1a
perl -pi -e 's,^#LOCALE_CHARSET:.*,LOCALE_CHARSET:TRUE,' lynx.cfg
85fd1a
%if 0%{?rhel}
85fd1a
perl -pi -e 's,^STARTFILE:.*,STARTFILE:file:/usr/share/doc/HTML/en-US/index.html,' lynx.cfg
85fd1a
%endif
85fd1a
85fd1a
%build
85fd1a
export PATH=`pwd`:$PATH
85fd1a
cat >gcc <
85fd1a
#!/bin/sh
85fd1a
ARGS=""
85fd1a
while [ \$# != 0 ]; do
85fd1a
    if [ \$1 != "-I/usr/include" -a \$1 != "-I/usr/include/" ]; then
85fd1a
        ARGS="\$ARGS \$1"
85fd1a
    fi
85fd1a
    shift
85fd1a
done
85fd1a
exec /usr/bin/gcc \$ARGS
85fd1a
EOF
85fd1a
chmod 0755 gcc
85fd1a
CFLAGS="-ggdb $RPM_OPT_FLAGS -DNCURSES -DNCURSES_MOUSE_VERSION" ; export CFLAGS
85fd1a
CXXFLAGS="-ggdb $RPM_OPT_FLAGS -DNCURSES -DNCURSES_MOUSE_VERSION" ; export CXXFLAGS
85fd1a
if pkg-config openssl ; then
85fd1a
    CPPFLAGS=`pkg-config --cflags openssl` ; export CPPFLAGS
85fd1a
    LDFLAGS=`pkg-config --libs-only-L openssl` ; export LDFLAGS
85fd1a
fi
85fd1a
%configure --libdir=/etc            \
85fd1a
    --disable-font-switch           \
85fd1a
    --enable-addrlist-page          \
85fd1a
    --enable-charset-choice         \
85fd1a
    --enable-cgi-links              \
85fd1a
    --enable-cjk                    \
85fd1a
    --enable-default-colors         \
85fd1a
    --enable-externs                \
85fd1a
    --enable-file-upload            \
85fd1a
    --enable-internal-links         \
85fd1a
    --enable-ipv6                   \
85fd1a
    --enable-japanese-utf8          \
85fd1a
    --enable-justify-elts           \
85fd1a
    --enable-locale-charset         \
85fd1a
    --enable-kbd-layout             \
85fd1a
    --enable-libjs                  \
85fd1a
    --enable-nls                    \
85fd1a
    --enable-nsl-fork               \
85fd1a
    --enable-persistent-cookies     \
85fd1a
    --enable-prettysrc              \
85fd1a
    --enable-read-eta               \
85fd1a
    --enable-scrollbar              \
85fd1a
    --enable-source-cache           \
85fd1a
    --enable-warnings               \
85fd1a
    --with-screen=ncursesw          \
85fd1a
    --with-ssl=%{_libdir}           \
85fd1a
    --with-zlib
85fd1a
85fd1a
# uncomment to turn off optimizations
85fd1a
#find -name makefile | xargs sed -i 's/-O2/-O0/'
85fd1a
85fd1a
make %{?_smp_mflags}
85fd1a
85fd1a
%install
85fd1a
chmod -x samples/mailto-form.pl
85fd1a
make install DESTDIR=$RPM_BUILD_ROOT
85fd1a
85fd1a
# Install Lang dependent resources
85fd1a
mkdir -p $RPM_BUILD_ROOT/usr/share/locale/ja/LC_MESSAGES/
85fd1a
85fd1a
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/X11/applnk/Internet
85fd1a
85fd1a
cat >$RPM_BUILD_ROOT%{_sysconfdir}/lynx-site.cfg <
85fd1a
# Place any local lynx configuration options (proxies etc.) here.
85fd1a
EOF
85fd1a
85fd1a
%find_lang %{name}
85fd1a
85fd1a
%files -f %{name}.lang
85fd1a
%doc docs README INSTALLATION samples
85fd1a
%doc test lynx.hlp lynx_help
85fd1a
%{_bindir}/lynx
85fd1a
%{_mandir}/*/*
85fd1a
%config(noreplace) %{_sysconfdir}/lynx.cfg
85fd1a
%config(noreplace) %{_sysconfdir}/lynx.lss
85fd1a
%config(noreplace,missingok) %{_sysconfdir}/lynx-site.cfg
85fd1a
85fd1a
%changelog
b2e5d2
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2.8.8-0.3.dev15
b2e5d2
- Mass rebuild 2014-01-24
b2e5d2
b2e5d2
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.8.8-0.2.dev15
b2e5d2
- Mass rebuild 2013-12-27
b2e5d2
85fd1a
* Wed Feb 13 2013 Kamil Dudka <kdudka@redhat.com> - 2.8.8-0.1.dev15
85fd1a
- update to the latest upstream pre-release
85fd1a
- drop applied patches
85fd1a
- drop lynx-2.8.6-backgrcolor.patch (#908449)
85fd1a
85fd1a
* Tue Sep 11 2012 Kamil Dudka <kdudka@redhat.com> - 2.8.7-12
85fd1a
- set STARTFILE to a local file when building for RHEL
85fd1a
85fd1a
* Fri Sep 07 2012 Kamil Dudka <kdudka@redhat.com> - 2.8.7-11
85fd1a
- fix typo in the man page (#854574)
85fd1a
85fd1a
* Tue Aug 28 2012 Kamil Dudka <kdudka@redhat.com> - 2.8.7-10
85fd1a
- sync the upstream tarball with the current upstream version
85fd1a
- fix specfile issues reported by the fedora-review script
85fd1a
85fd1a
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.7-9
85fd1a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
85fd1a
85fd1a
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.7-8
85fd1a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
85fd1a
85fd1a
* Fri May 27 2011 Kamil Dudka <kdudka@redhat.com> - 2.8.7-7
85fd1a
- include read-only text fields on form submission (#679266)
85fd1a
85fd1a
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.7-6
85fd1a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
85fd1a
85fd1a
* Wed Jul 07 2010 Kamil Dudka <kdudka@redhat.com> - 2.8.7-5
85fd1a
- upstream patch that limits length of parsed URIs (#605286)
85fd1a
85fd1a
* Thu Apr 08 2010 Kamil Dudka <kdudka@redhat.com> - 2.8.7-4
85fd1a
- allow IPv6 addresses without http:// prefix (#425879)
85fd1a
85fd1a
* Wed Apr 07 2010 Kamil Dudka <kdudka@redhat.com> - 2.8.7-3
85fd1a
- avoid build failure caused by mistakenly excluded <locale.h>
85fd1a
85fd1a
* Wed Jan 13 2010 Kamil Dudka <kdudka@redhat.com> - 2.8.7-2
85fd1a
- make it possible to delete a bookmark when ~/lynx_bookmarks.html is writable
85fd1a
  by group (#486070)
85fd1a
85fd1a
* Tue Jan 05 2010 Kamil Dudka <kdudka@redhat.com> - 2.8.7-1
85fd1a
- new upstream release
85fd1a
- dropped applied patches
85fd1a
- fixed regression from #533004
85fd1a
- cleanup in BuildRequires
85fd1a
85fd1a
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 2.8.6-22
85fd1a
- rebuilt with new openssl
85fd1a
85fd1a
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.6-21
85fd1a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
85fd1a
85fd1a
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8.6-20
85fd1a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
85fd1a
85fd1a
* Sat Jan 17 2009 Tomas Mraz <tmraz@redhat.com> - 2.8.6-19
85fd1a
- rebuild with new openssl
85fd1a
85fd1a
* Fri Nov  7 2008 Jiri Moskovcak <jmoskovc@redhat.com> - 2.8.6-18
85fd1a
- Fixed CVE-2008-4690 lynx: remote arbitrary command execution.
85fd1a
  via a crafted lynxcgi: URL (thoger)
85fd1a
85fd1a
* Thu Aug  7 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.8.6-17
85fd1a
- fix license tag
85fd1a
85fd1a
* Thu May 29 2008 Jiri Moskovcak <jmoskovc@redhat.com> - 2.8.6-16
85fd1a
- updated to latest stable version 2.8.6rel5
85fd1a
- Resolves: #214205
85fd1a
- added build patches from Dennis Gilmore
85fd1a
- skipped 2 releases to correct the NVR path
85fd1a
85fd1a
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.8.6-13
85fd1a
- Autorebuild for GCC 4.3
85fd1a
85fd1a
* Wed Jan 30 2008 Jiri Moskovcak <jmoskovc@redhat.com> - 2.8.6-12
85fd1a
- added telnet, rsh, zip and unzip to BuildRequires
85fd1a
- Resolves: #430508
85fd1a
85fd1a
* Tue Jan  8 2008 Jiri Moskovcak <jmoskovc@redhat.com> - 2.8.6-11
85fd1a
- fixed crash when using formatting character '$' in translation
85fd1a
- Resolves: #426449
85fd1a
85fd1a
* Tue Dec 11 2007 Ivana Varekova <varekova@redhat.com> - 2.8.6-10
85fd1a
- add default-colors option, change default setting (#409211)
85fd1a
85fd1a
* Wed Dec 05 2007 Release Engineering <rel-eng at fedoraproject dot org> - 2.8.6-9
b2e5d2
- Rebuild for openssl bump
85fd1a
85fd1a
* Wed Dec  5 2007 Ivana Varekova <varekova@redhat.com> - 2.8.6-8
85fd1a
- rebuild 
85fd1a
85fd1a
* Fri Oct 12 2007 Ivana Varekova <varekova@redhat.com> - 2.8.6-7
85fd1a
- add provides:text-www-browser flag
85fd1a
85fd1a
* Tue Oct  2 2007 Ivana Varekova <varekova@redhat.com> - 2.8.6-6
85fd1a
- fix 311031 - fix argument parsing
85fd1a
85fd1a
* Tue Aug 28 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.8.6-5
85fd1a
- Rebuild for selinux ppc32 issue.
85fd1a
85fd1a
* Tue Jul 17 2007 Ivana Varekova <varekova@redhat.com> - 2.8.6-4
85fd1a
- remove default-colors option
85fd1a
85fd1a
* Fri Feb 23 2007 Ivana Varekova <varekova@redhat.com> - 2.8.6-3
85fd1a
- incorporate package review feedback (#226113)
85fd1a
85fd1a
* Wed Oct 25 2006 Ivana Varekova <varekova@redhat.com> - 2.8.6-2
85fd1a
- add japanese unicode support (#143787)
85fd1a
85fd1a
* Tue Oct 24 2006 Ivana Varekova <varekova@redhat.com> - 2.8.6-1
85fd1a
- update to 2.8.6
85fd1a
85fd1a
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.8.5-28.1
85fd1a
- rebuild
85fd1a
85fd1a
* Tue May 30 2006 Ivana Varekova <varekova@redhat.com> - 2.8.5-28
85fd1a
- add buildreq gettext (#193515)
85fd1a
85fd1a
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.8.5-27.2.1
85fd1a
- bump again for double-long bug on ppc(64)
85fd1a
85fd1a
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.8.5-27.2
85fd1a
- rebuilt for new gcc4.1 snapshot and glibc changes
85fd1a
85fd1a
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
85fd1a
- rebuilt
85fd1a
85fd1a
* Sun Nov 13 2005 Tim Waugh <twaugh@redhat.com> 2.8.5-27
85fd1a
- Apply patch to fix CVE-2005-2929 (bug #172973).
85fd1a
85fd1a
* Thu Nov 10 2005 Tomas Mraz <tmraz@redhat.com> 2.8.5-26
85fd1a
- rebuilt against new openssl
85fd1a
85fd1a
* Wed Nov  9 2005 Tim Waugh <twaugh@redhat.com> 2.8.5-25
85fd1a
- Rebuild for new openssl.
85fd1a
85fd1a
* Mon Oct 17 2005 Tim Waugh <twaugh@redhat.com> 2.8.5-24
85fd1a
- Apply patch to fix CAN-2005-3120 (bug #170253).
85fd1a
85fd1a
* Tue Mar 29 2005 Tim Waugh <twaugh@redhat.com> 2.8.5-23
85fd1a
- Fixed fix for bug #90302 (bug #152146).
85fd1a
85fd1a
* Wed Mar  2 2005 Tim Waugh <twaugh@redhat.com> 2.8.5-22
85fd1a
- Rebuild for new GCC.
85fd1a
85fd1a
* Thu Jan  6 2005 Tim Waugh <twaugh@redhat.com> 2.8.5-21
85fd1a
- Fixed <option> handling (bug #90302).
85fd1a
85fd1a
* Thu Dec 30 2004 Tim Waugh <twaugh@redhat.com> 2.8.5-20
85fd1a
- Added --enable-locale-charset compilation option, set LOCALE_CHARSET
85fd1a
  on in the config file and removed i18ncfg patch (bug #124849).
85fd1a
85fd1a
* Fri Nov 19 2004 Tim Waugh <twaugh@redhat.com> 2.8.5-19
85fd1a
- 2.8.5rel1.  Fixes bug #139783.
85fd1a
85fd1a
* Thu Jul  8 2004 Tim Waugh <twaugh@redhat.com> 2.8.5-18
85fd1a
- Removed perl dependencies (bug #127423).
85fd1a
85fd1a
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
85fd1a
- rebuilt
85fd1a
85fd1a
* Tue May 25 2004 Tim Waugh <twaugh@redhat.com> 2.8.5-16
85fd1a
- No longer need lynx-284-ipv6-salen.patch.
85fd1a
- No longer need lynx2-8-2-telnet.patch.
85fd1a
85fd1a
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 2.8.5-15
85fd1a
- rebuilt
85fd1a
85fd1a
* Mon Dec  1 2003 Tim Waugh <twaugh@redhat.com> 2.8.5-14
85fd1a
- Updated to dev16, fixing bug #110196.
85fd1a
- No longer need crlf patch.
85fd1a
- Use shipped ja translations.
85fd1a
- Use %%find_lang.
85fd1a
- Default config file now sets UTF-8 (bug #110986).
85fd1a
85fd1a
* Fri Jun 06 2003 Adrian Havill <havill@redhat.com> 2.8.5-13
85fd1a
- use wide version of ncurses for UTF-8
85fd1a
85fd1a
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
85fd1a
- rebuilt
85fd1a
85fd1a
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
85fd1a
- rebuilt
85fd1a
85fd1a
* Wed Jan 22 2003 Tim Waugh <twaugh@redhat.com> 2.8.5-10
85fd1a
- Fix CRLF issue.
85fd1a
85fd1a
* Tue Jan  7 2003 Nalin Dahyabhai <nalin@redhat.com> 2.8.5-9
85fd1a
- rebuild
85fd1a
85fd1a
* Fri Dec 20 2002 Elliot Lee <sopwith@redhat.com> 2.8.5-8
85fd1a
- _smp_mflags
85fd1a
85fd1a
* Thu Dec 12 2002 Nalin Dahyabhai <nalin@redhat.com>
85fd1a
- use openssl pkg-config data, if available
85fd1a
85fd1a
* Wed Nov 20 2002 Tim Powers <timp@redhat.com>
85fd1a
- rebuild on all arches
85fd1a
85fd1a
* Thu Aug 08 2002 Karsten Hopp <karsten@redhat.de>
85fd1a
- remove menu entry (#69457)
85fd1a
85fd1a
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
85fd1a
- automated rebuild
85fd1a
85fd1a
* Thu May 23 2002 Tim Powers <timp@redhat.com>
85fd1a
- automated rebuild
85fd1a
85fd1a
* Mon May 13 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.8.5-3
85fd1a
- Fix build with current toolchain
85fd1a
85fd1a
* Thu Nov 22 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.8.5-2
85fd1a
- Update (dev5)
85fd1a
85fd1a
* Wed Oct 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.8.5-1
85fd1a
- Update (dev3)
85fd1a
- Use "display" as image viewer (#54184)
85fd1a
85fd1a
* Tue Jul 31 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.8.4-17
85fd1a
- 2.8.4 release - no need to ship prerelease code...
85fd1a
85fd1a
* Thu Jul 19 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.8.4-16
85fd1a
- update to 2.8.4p5 (bugfix release)
85fd1a
85fd1a
* Tue Jul 10 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.8.4-15
85fd1a
- Add site-cfg file (#43841)
85fd1a
85fd1a
* Sun Jun 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.8.4-14
85fd1a
- 2.8.4p2
85fd1a
85fd1a
* Thu Jun 07 2001 Florian La Roche <Florian.LaRoche@redhat.de>
85fd1a
- support newer gettext version
85fd1a
85fd1a
* Thu May  3 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.8.4-12
85fd1a
- --with-display=ncurses, fixes #37481
85fd1a
85fd1a
* Wed May  2 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.8.4-11
85fd1a
- Add Czech/Slovak patches from milan.kerslager@spsselib.hiedu.cz (RFE#38334)
85fd1a
85fd1a
* Sun Apr 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
85fd1a
- dev20
85fd1a
- Add ipv6 patches from Pekka Savola <pekkas@netcore.fi>:
85fd1a
  - enable ipv6, patch for missing sockaddr sa_len
85fd1a
  - buildrequires: slang-devel, zlib-devel
85fd1a
  (Bug #35644)
85fd1a
85fd1a
* Fri Mar  2 2001 Nalin Dahyabhai <nalin@redhat.com>
85fd1a
- rebuild in new environment
85fd1a
85fd1a
* Thu Jan  4 2001 Nalin Dahyabhai <nalin@redhat.com>
85fd1a
- Fix up more of the i18ncfg patch
85fd1a
85fd1a
* Wed Jan  3 2001 Bernhard Rosenkraenzer <bero@redhat.com>
85fd1a
- 2.8.4dev16
85fd1a
- Fix up the i18ncfg patch - segfaulting on startup is not exactly
85fd1a
  a nice feature.
85fd1a
- Mark locale related files as such
85fd1a
- Mark /etc/lynx.cfg.ja as %%lang(ja)
85fd1a
- Add BuildRequires
85fd1a
85fd1a
* Thu Dec 21 2000 Yukihiro Nakai <ynakai@redhat.com>
85fd1a
- Add -enable-nls --with-included-gettext
85fd1a
- Add i18ncfg patch
85fd1a
- Add Japanese resources
85fd1a
85fd1a
* Thu Oct  5 2000 Bernhard Rosenkraenzer <bero@redhat.com>
85fd1a
- Update build URL
85fd1a
- Fix help (Bug #18394)
85fd1a
- Replace the "index page link" (pointing to a Mosaic site with thousands
85fd1a
  of dead links) with a link to Google
85fd1a
85fd1a
* Sat Sep 23 2000 Bernhard Rosenkraenzer <bero@redhat.com>
85fd1a
- Add https:// support (#17554)
85fd1a
- Update to dev10
85fd1a
85fd1a
* Fri Aug  4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
85fd1a
- Add Swedish and German translations to desktop file, Bug 15322
85fd1a
85fd1a
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
85fd1a
- automatic rebuild
85fd1a
85fd1a
* Tue Jul 11 2000 Bernhard Rosenkraenzer <bero@redhat.com>
85fd1a
- 2.8.4.dev.4
85fd1a
85fd1a
* Mon Jul 10 2000 Bernhard Rosenkraenzer <bero@redhat.com>
85fd1a
- Fix up location of standard page and help page in lynx.cfg (still
85fd1a
  pointed at /usr/doc instead of /usr/share/doc, Bug #13227)
85fd1a
85fd1a
* Thu Jun 8 2000 Tim Powers <timp@redhat.com>
85fd1a
- fixed man page lolcation to be FHS compliant
85fd1a
- use predefined RPM macros wherever possible
85fd1a
- use %%makeinstall
85fd1a
- cleaned up files list
85fd1a
85fd1a
* Wed Apr 26 2000 Florian La Roche <Florian.LaRoche@redhat.com>
85fd1a
- 2.8.3rel.1
85fd1a
85fd1a
* Tue Mar 28 2000 Bernhard Rosenkraenzer <bero@redhat.com>
85fd1a
- 2.8.3dev23
85fd1a
- add URL header
85fd1a
85fd1a
* Mon Feb 07 2000 Preston Brown <pbrown@redhat.com>
85fd1a
- wmconfig -> desktop
85fd1a
85fd1a
* Sat Feb 05 2000 Cristian Gafton <gafton@redhat.com>
85fd1a
- version 2.8.3dev18
85fd1a
- drop the RFC compliance patch - they seemed to have done theiir own
85fd1a
- pray that ported patches are okay
85fd1a
85fd1a
* Mon Jan 31 2000 Bernhard Rosenkraenzer <bero@redhat.com>
85fd1a
- Add "passive mode ftp" option, activated by PASSIVE:TRUE in /etc/lynx.cfg
85fd1a
- turn on "PASSIVE:TRUE" by default
85fd1a
- deal with the fact that RPM compresses man pages.
85fd1a
85fd1a
* Sun Jan 16 2000 Bernhard Rosenkraenzer <bero@redhat.com>
85fd1a
- Add "view with less" download option
85fd1a
85fd1a
* Wed Nov  3 1999 Bernhard Rosenkraenzer <bero@redhat.com>
85fd1a
- Fix compliance with RFCs describing FTP.
85fd1a
  We can now connect to wu-ftpd >= 2.6.0 based servers.
85fd1a
85fd1a
* Wed Aug 25 1999 Bill Nottingham <notting@redhat.com>
85fd1a
- fix path to help file.
85fd1a
- turn off font switching
85fd1a
- disable args to telnet.
85fd1a
85fd1a
* Tue Jun 15 1999 Bill Nottingham <notting@redhat.com>
85fd1a
- update to 2.8.2
85fd1a
85fd1a
* Mon Mar 29 1999 Bill Nottingham <notting@redhat.com>
85fd1a
- apply some update patches from the lynx folks
85fd1a
- set user's TEMP dir to their home dir to avoid /tmp races
85fd1a
85fd1a
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
85fd1a
- auto rebuild in the new build environment (release 10)
85fd1a
85fd1a
* Wed Feb 24 1999 Bill Nottingham <notting@redhat.com>
85fd1a
- return of wmconfig
85fd1a
85fd1a
* Mon Nov 30 1998 Bill Nottingham <notting@redhat.com>
85fd1a
- create cookie file 0600
85fd1a
85fd1a
* Fri Nov  6 1998 Bill Nottingham <notting@redhat.com>
85fd1a
- update to 2.8.1rel2
85fd1a
85fd1a
* Thu Oct 29 1998 Bill Nottingham <notting@redhat.com>
85fd1a
- build for Raw Hide (slang-1.2.2)
85fd1a
85fd1a
* Sat Oct 10 1998 Cristian Gafton <gafton@redhat.com>
85fd1a
- 2.8.1pre9
85fd1a
- strip binaries
85fd1a
85fd1a
* Mon Oct 05 1998 Cristian Gafton <gafton@redhat.com>
85fd1a
- updated to lynx2.8.1pre.7.tar.gz
85fd1a
85fd1a
* Fri May 08 1998 Prospector System <bugs@redhat.com>
85fd1a
- translations modified for de, fr, tr
85fd1a
85fd1a
* Mon May 04 1998 Cristian Gafton <gafton@redhat.com>
85fd1a
- upgraded to 2.8rel3
85fd1a
- fixed mailto: buffer overflow (used Alan's patch)
85fd1a
85fd1a
* Fri Mar 20 1998 Cristian Gafton <gafton@redhat.com>
85fd1a
- updated to 2.8
85fd1a
- added buildroot
85fd1a
85fd1a
* Tue Jan 13 1998 Erik Troan <ewt@redhat.com>
85fd1a
- updated to 2.7.2
85fd1a
- enabled lynxcgi
85fd1a
85fd1a
* Thu Oct 23 1997 Donnie Barnes <djb@redhat.com>
85fd1a
- updated from 2.6 to 2.7.1
85fd1a
- moved /usr/lib/lynx.cfg to /etc/lynx.cfg
85fd1a
- build with slang instead of ncurses
85fd1a
- made default startup file be file:/usr/doc/HTML/index.html
85fd1a