cvsdist c68ed5d
Summary: Tools needed to create Texinfo format documentation files.
cvsdist c68ed5d
Name: texinfo
7e169b2
Version: 4.8
4796e87
Release: 11.1
cvsdist c68ed5d
License: GPL
cvsdist c68ed5d
Group: Applications/Publishing
ae70a50
Url: http://www.gnu.org/software/texinfo/
cvsdist a9008bd
Source0: ftp://ftp.gnu.org/gnu/texinfo/texinfo-%{version}.tar.bz2
cvsdist c68ed5d
Source1: info-dir
843b8f1
Source2: texi2pdf.man
e34f792
Patch1: texinfo-4.8-zlib.patch
e667359
Patch2: texinfo-CAN-2005-3011.patch
cvsdist c68ed5d
Prereq: /sbin/install-info
cvsdist c68ed5d
Buildroot: %{_tmppath}/%{name}-%{version}-root
cvsdist ae8a412
BuildRequires: zlib-devel, ncurses-devel
cvsdist c68ed5d
cvsdist dbbdbd4
# Redefine this so "dir" in the info directory isn't compressed
cvsdist c68ed5d
cvsdist 7522b72
%define __spec_install_post %{?__debug_package:%{__debug_install_post}} /usr/lib/rpm/brp-strip \; /usr/lib/rpm/brp-strip-comment-note \; rm -f
cvsdist c68ed5d
cvsdist c68ed5d
%description
cvsdist c68ed5d
Texinfo is a documentation system that can produce both online
cvsdist 03c8257
information and printed output from a single source file. The GNU
cvsdist c68ed5d
Project uses the Texinfo file format for most of its documentation.
cvsdist c68ed5d
cvsdist c68ed5d
Install texinfo if you want a documentation system for producing both
cvsdist c68ed5d
online and print documentation from the same source file and/or if you
cvsdist c68ed5d
are going to write documentation for the GNU Project.
cvsdist c68ed5d
cvsdist c68ed5d
%package -n info
cvsdist c68ed5d
Summary: A stand-alone TTY-based reader for GNU texinfo documentation.
cvsdist c68ed5d
Group: System Environment/Base
cvsdist c68ed5d
# By making info prereq bash, other packages which have triggers based on
cvsdist c68ed5d
# info don't run those triggers until bash is in place as well. This is an
cvsdist c68ed5d
# ugly method of doing it (triggers which fire on set intersection would
cvsdist c68ed5d
# be better), but it's the best we can do for now. Talk to Erik before
cvsdist c68ed5d
# removing this.
b021c34
Prereq: bash
cvsdist c68ed5d
cvsdist c68ed5d
%description -n info
cvsdist c68ed5d
The GNU project uses the texinfo file format for much of its
cvsdist c68ed5d
documentation. The info package provides a standalone TTY-based
cvsdist c68ed5d
browser program for viewing texinfo files.
cvsdist c68ed5d
1e9c629
%package tex
1e9c629
Summary: Tools for fromating Texinfo documentation files using TeX
1e9c629
Group: Applications/Publishing
1e9c629
Requires: texinfo = %{version}-%{release}
1e9c629
Requires: tetex
1e9c629
1e9c629
%description tex
1e9c629
Texinfo is a documentation system that can produce both online
1e9c629
information and printed output from a single source file. The GNU
1e9c629
Project uses the Texinfo file format for most of its documentation.
1e9c629
1e9c629
The texinfo-tex package provides tools to format Texinfo documents
1e9c629
for printing using TeX.
1e9c629
cvsdist c68ed5d
%prep
cvsdist c68ed5d
%setup -q
cvsdist 7522b72
%patch1 -p1 -b .zlib
e667359
%patch2 -p1 -b .CAN-2005-3011
cvsdist c68ed5d
cvsdist c68ed5d
%build
cvsdist c68ed5d
cvsdist fbe1657
%configure
cvsdist 7522b72
make %{?_smp_mflags}
cvsdist c68ed5d
cvsdist c68ed5d
%install
cvsdist c68ed5d
rm -rf ${RPM_BUILD_ROOT}
cvsdist 7522b72
mkdir -p ${RPM_BUILD_ROOT}/sbin
cvsdist c68ed5d
b021c34
make install DESTDIR=$RPM_BUILD_ROOT
cvsdist c68ed5d
cvsdist 7522b72
pushd ${RPM_BUILD_ROOT}
843b8f1
  install -m644 %{SOURCE2} .%{_mandir}/man1/texi2pdf.1
cvsdist fbe1657
  gzip -n -9f .%{_infodir}/*info*
cvsdist c68ed5d
  gzip -n -9f .%{_mandir}/*/*
1e9c629
  install -m644 %{SOURCE1} .%{_infodir}/dir
cvsdist fbe1657
  mv -f .%{_bindir}/install-info ./sbin
cvsdist 7522b72
popd
cvsdist c68ed5d
cvsdist 7522b72
rm -f $RPM_BUILD_ROOT%{_datadir}/texinfo/texinfo.{xsl,dtd}
7c7f058
cvsdist 1d16573
%find_lang %name
cvsdist 1d16573
cvsdist c68ed5d
%clean
cvsdist c68ed5d
rm -rf ${RPM_BUILD_ROOT}
cvsdist c68ed5d
cvsdist c68ed5d
%post
b021c34
/sbin/install-info %{_infodir}/texinfo.gz %{_infodir}/dir || :
cvsdist c68ed5d
cvsdist c68ed5d
%preun
cvsdist c68ed5d
if [ $1 = 0 ]; then
b021c34
    /sbin/install-info --delete %{_infodir}/texinfo.gz %{_infodir}/dir || :
cvsdist c68ed5d
fi
cvsdist c68ed5d
cvsdist c68ed5d
%post -n info
b021c34
/sbin/install-info %{_infodir}/info-stnd.info.gz %{_infodir}/dir || :
cvsdist c68ed5d
cvsdist c68ed5d
%preun -n info
cvsdist c68ed5d
if [ $1 = 0 ]; then
b021c34
    /sbin/install-info --delete %{_infodir}/info-stnd.info.gz %{_infodir}/dir \
b021c34
	|| :
cvsdist c68ed5d
fi
cvsdist c68ed5d
cvsdist 1d16573
%files -f %{name}.lang
cvsdist c68ed5d
%defattr(-,root,root)
1e9c629
%doc AUTHORS ChangeLog INTRODUCTION NEWS README TODO
cvsdist fbe1657
%{_bindir}/makeinfo
cvsdist bc33d5f
%{_datadir}/texinfo
cvsdist fbe1657
%{_infodir}/texinfo*
cvsdist fbe1657
%{_mandir}/man1/makeinfo.1*
cvsdist fbe1657
%{_mandir}/man5/texinfo.5*
cvsdist c68ed5d
cvsdist c68ed5d
%files -n info
cvsdist c68ed5d
%defattr(-,root,root)
cvsdist 7522b72
%config(noreplace) %verify(not md5 size mtime) %{_infodir}/dir
1e9c629
%doc COPYING
cvsdist fbe1657
%{_bindir}/info
cvsdist fbe1657
%{_bindir}/infokey
cvsdist fbe1657
%{_infodir}/info.info*
cvsdist fbe1657
%{_infodir}/info-stnd.info*
cvsdist c68ed5d
/sbin/install-info
cvsdist fbe1657
%{_mandir}/man1/info.1*
cvsdist bc33d5f
%{_mandir}/man1/infokey.1*
cvsdist fbe1657
%{_mandir}/man1/install-info.1*
cvsdist fbe1657
%{_mandir}/man5/info.5*
cvsdist c68ed5d
1e9c629
%files tex
1e9c629
%defattr(-,root,root)
1e9c629
%{_bindir}/texindex
1e9c629
%{_bindir}/texi2dvi
1e9c629
%{_bindir}/texi2pdf
1e9c629
%{_mandir}/man1/texindex.1*
1e9c629
%{_mandir}/man1/texi2dvi.1*
1e9c629
%{_mandir}/man1/texi2pdf.1*
1e9c629
cvsdist c68ed5d
%changelog
4796e87
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 4.8-11.1
4796e87
- rebuild
4796e87
1e9c629
* Sat Mar 25 2006 Miloslav Trmac <mitr@redhat.com> - 4.8-11
1e9c629
- Split texinfo-tex from the texinfo package (#178406)
1e9c629
- Ship COPYING, don't ship INSTALL
1e9c629
3e8f289
* Sun Mar 19 2006 Miloslav Trmac <mitr@redhat.com> - 4.8-10
3e8f289
- Remove incorrect Prefix:
3e8f289
- Drop info/README
3e8f289
- Convert change log to UTF-8
3e8f289
295d349
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 4.8-9.2
295d349
- bump again for double-long bug on ppc(64)
295d349
514c08a
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 4.8-9.1
514c08a
- rebuilt for new gcc4.1 snapshot and glibc changes
514c08a
e34f792
* Mon Jan 16 2006 Miloslav Trmac <mitr@redhat.com> - 4.8-9
e34f792
- Fix handling of bzip2'ed files (#128637)
e34f792
b021c34
* Mon Jan 16 2006 Miloslav Trmac <mitr@redhat.com> - 4.8-8
b021c34
- Ignore scriptlet failures with --excludedocs (#166958)
b021c34
- Don't link texindex to zlib, don't pretend to link to zlib statically
b021c34
4e140b4
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
4e140b4
- rebuilt
4e140b4
e667359
* Fri Oct 14 2005 Tim Waugh <twaugh@redhat.com> 4.8-7
e667359
- Apply patch to fix CAN-2005-3011 (bug #169585).
e667359
89b38fc
* Thu Jun  9 2005 Tim Waugh <twaugh@redhat.com> 4.8-6
843b8f1
- Ship texi2pdf man page, taken from tetex-2.0.2 RPM.
843b8f1
c13fa47
* Tue Jun  7 2005 Tim Waugh <twaugh@redhat.com> 4.8-5
c13fa47
- Ship texi2pdf (bug #147271).
c13fa47
5d56a56
* Mon Mar 14 2005 Tim Waugh <twaugh@redhat.com> 4.8-4
3e5f6c2
- Requires tetex (bug #151075).
3e5f6c2
9eb8d71
* Wed Mar  2 2005 Tim Waugh <twaugh@redhat.com> 4.8-3
9eb8d71
- Rebuild for new GCC.
9eb8d71
7c7f058
* Mon Feb  7 2005 Tim Waugh <twaugh@redhat.com> 4.8-2
7c7f058
- Don't ship texi2pdf (bug #147271).
7c7f058
7e169b2
* Thu Feb  3 2005 Tim Waugh <twaugh@redhat.com> 4.8-1
7e169b2
- 4.8.
7e169b2
7adeeaa
* Thu Dec 30 2004 Tim Waugh <twaugh@redhat.com> 4.7-6
ae70a50
- Fixed URL (bug #143729).
ae70a50
cvsdist 1630113
* Thu Aug 12 2004 Tim Waugh <twaugh@redhat.com> 4.7-5
cvsdist 1630113
- Rebuilt.
cvsdist 1630113
cvsdist 1630113
* Wed Jul  7 2004 Tim Waugh <twaugh@redhat.com> 4.7-4
cvsdist 1630113
- Build for FC2.
cvsdist 1630113
cvsdist dbbdbd4
* Tue Jun 29 2004 Tim Waugh <twaugh@redhat.com> 4.7-3
cvsdist dbbdbd4
- Fix grouping in user-defined macros.
cvsdist dbbdbd4
cvsdist ae8a412
* Mon Jun 28 2004 Tim Waugh <twaugh@redhat.com> 4.7-2
cvsdist ae8a412
- Build requires ncurses-devel (bug #126600).
cvsdist ae8a412
cvsdist bc33d5f
* Fri Jun 25 2004 Tim Waugh <twaugh@redhat.com> 4.7-1
cvsdist bc33d5f
- 4.7.
cvsdist bc33d5f
cvsdist 6f2e7c3
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 6f2e7c3
- rebuilt
cvsdist 6f2e7c3
cvsdist 6f2e7c3
* Tue Mar  2 2004 Tim Waugh <twaugh@redhat.com>
cvsdist 6f2e7c3
- Fixed compiler warning (bug #117097).
cvsdist 6f2e7c3
cvsdist a1b555a
* Sat Feb 21 2004 Tim Waugh <twaugh@redhat.com> 4.6-3
cvsdist a1b555a
- Build requires zlib-devel (bug #116436).
cvsdist a1b555a
cvsdist a1b555a
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
cvsdist a1b555a
- rebuilt
cvsdist a1b555a
cvsdist 1c84114
* Tue Dec  2 2003 Tim Waugh <twaugh@redhat.com> 4.6-1
cvsdist 1c84114
- Fixed compiler warning (bug #111279).
cvsdist 1c84114
- 4.6.
cvsdist 1c84114
cvsdist 1c84114
* Tue Jun 17 2003 Tim Waugh <twaugh@redhat.com> 4.5-3
cvsdist 1c84114
- Rebuilt.
cvsdist 1c84114
cvsdist 80731d4
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
cvsdist 80731d4
- rebuilt
cvsdist 80731d4
cvsdist 80731d4
* Tue May  6 2003 Tim Waugh <twaugh@redhat.com>
cvsdist 80731d4
- No longer need 3.12h-fix patch.
cvsdist 80731d4
cvsdist 80731d4
* Tue Apr 29 2003 Tim Waugh <twaugh@redhat.com> 4.5-1
cvsdist 80731d4
- 4.5 (bug #88428).  Update zlib patch.
cvsdist 80731d4
- Add URL tag (bug #54613).
cvsdist 80731d4
cvsdist 80731d4
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 4.3-5
cvsdist 7522b72
- rebuilt
cvsdist 7522b72
cvsdist 7522b72
* Tue Jan  7 2003 Tim Waugh <twaugh@redhat.com> 4.3-4
cvsdist 7522b72
- Fix up spec_install_post to strip debug info out to separate package
cvsdist 7522b72
  (bug #81226).
cvsdist 7522b72
cvsdist 7522b72
* Thu Dec 26 2002 Florian La Roche <Florian.LaRoche@redhat.de> 4.3-3
cvsdist 7522b72
- Make /usr/share/info/dir a real file and remove /etc/info-dir, that
cvsdist 7522b72
  file should be unused for a long time.
cvsdist 7522b72
cvsdist 7522b72
* Thu Nov 21 2002 Elliot Lee <sopwith@redhat.com> 4.3-2
cvsdist 7522b72
- Don't strip files here (rpm takes care of it)
cvsdist 7522b72
- Use pushd/popd instead of enclosing things in (), to make
cvsdist 7522b72
  error detection easier
cvsdist 7522b72
- Use _smp_mflags
cvsdist 7522b72
cvsdist 7522b72
* Tue Nov 19 2002 Tim Waugh <twaugh@redhat.com> 4.3-1
cvsdist 7522b72
- 4.3.
cvsdist 7522b72
- No longer need fileextension or malloccheck patches.
cvsdist 7522b72
- Update zlib patch.
cvsdist 7522b72
cvsdist 7522b72
* Wed Oct 23 2002 Tim Waugh <twaugh@redhat.com> 4.2-6
cvsdist 7522b72
- Don't install files not packaged.
cvsdist 7522b72
- Fix file list (bug #55816).
cvsdist 7522b72
cvsdist ec02c3a
* Mon Sep  2 2002 Bernhard Rosenkraenzer <bero@redhat.com> 4.2-5
cvsdist ec02c3a
- Fix crash w/ MALLOC_CHECK_ == 2 (#72831)
cvsdist ec02c3a
cvsdist fbe1657
* Tue Jul  2 2002 Bernhard Rosenkraenzer <bero@redhat.com> 4.2-4
cvsdist fbe1657
- Add infokey (#67728)
cvsdist fbe1657
cvsdist c08e9b3
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
cvsdist c08e9b3
- automated rebuild
cvsdist c08e9b3
cvsdist c08e9b3
* Thu May 23 2002 Tim Powers <timp@redhat.com>
cvsdist c08e9b3
- automated rebuild
cvsdist c08e9b3
cvsdist c08e9b3
* Tue Apr 23 2002 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist c08e9b3
- 4.2
cvsdist c08e9b3
cvsdist 104d67b
* Tue Mar  5 2002 Bernhard Rosenkraenzer <bero@redhat.com> 4.1-1
cvsdist 104d67b
- 4.1 (#60714)
cvsdist 104d67b
cvsdist 104d67b
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
cvsdist 104d67b
- automated rebuild
cvsdist 104d67b
cvsdist 03c8257
* Tue Aug  7 2001 Bernhard Rosenkraenzer <bero@redhat.com> 4.0b-3
cvsdist 03c8257
- Don't create the desktop file - we don't install it anyway.
cvsdist 03c8257
cvsdist a9008bd
* Sat Jul 21 2001 Tim Powers <timp@redhat.com>
cvsdist a9008bd
- remove the info viewer from the menus, it's cluttering things
cvsdist a9008bd
cvsdist a9008bd
* Wed May 09 2001 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist a9008bd
- 4.0b
cvsdist a9008bd
cvsdist a9008bd
* Tue Apr 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 4.0a-1
cvsdist a9008bd
- Update to 4.0a, the patch looks sane
cvsdist a9008bd
3e8f289
* Fri Feb 23 2001 Trond Eivind Glomsrød <teg@redhat.com>
cvsdist 1d16573
- langify
cvsdist 1d16573
- don't create desktop file in spec file
cvsdist 1d16573
cvsdist 1d16573
* Tue Jan 23 2001 Preston Brown <pbrown@redhat.com>
cvsdist 1d16573
- danish translation added
cvsdist 1d16573
cvsdist 1d16573
* Tue Dec 12 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist 1d16573
- Rebuild to get rid of 0777 dirs
cvsdist 1d16573
cvsdist 1d16573
* Wed Nov  8 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist 1d16573
- Fix recognition of .?o extensions in texi2dvi, Bug #20498
cvsdist 1d16573
cvsdist 1d16573
* Thu Sep  7 2000 Jeff Johnson <jbj@redhat.com>
cvsdist 1d16573
- FHS packaging (64bit systems need to use %%_libdir not /usr/lib).
cvsdist 1d16573
3e8f289
* Sat Aug 19 2000 Trond Eivind Glomsrød <teg@redhat.com>
cvsdist c68ed5d
- really do it - #16120
cvsdist c68ed5d
cvsdist c68ed5d
* Mon Aug 14 2000 Helge Deller <hdeller@redhat.com>
cvsdist c68ed5d
- gzip man-pages, #16120
cvsdist c68ed5d
cvsdist c68ed5d
* Mon Aug  7 2000 Tim Waugh <twaugh@redhat.com>
cvsdist c68ed5d
- List man-pages in %%files.
cvsdist c68ed5d
cvsdist c68ed5d
* Fri Aug  4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist c68ed5d
- Add Swedish and German translations to desktop file, Bug #15366
cvsdist c68ed5d
cvsdist c68ed5d
* Thu Aug  3 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist c68ed5d
- mark /etc/info-dir %%verify(not md5 size mime), Bug #14826
cvsdist c68ed5d
cvsdist c68ed5d
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
cvsdist c68ed5d
- automatic rebuild
cvsdist c68ed5d
cvsdist c68ed5d
* Wed Jun 28 2000 Bill Nottingham <notting@redhat.com>
cvsdist c68ed5d
- fix build wackiness with info page compressing
cvsdist c68ed5d
cvsdist c68ed5d
* Fri Jun 16 2000 Bill Nottingham <notting@redhat.com>
cvsdist c68ed5d
- fix info-dir symlink
cvsdist c68ed5d
cvsdist c68ed5d
* Thu May 18 2000 Preston Brown <pbrown@redhat.com>
cvsdist c68ed5d
- use FHS paths for info.
cvsdist c68ed5d
cvsdist c68ed5d
* Fri Mar 24 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist c68ed5d
- rebuild with current ncurses
cvsdist c68ed5d
cvsdist c68ed5d
* Wed Feb 09 2000 Preston Brown <pbrown@redhat.com>
cvsdist c68ed5d
- wmconfig -> desktop
cvsdist c68ed5d
cvsdist c68ed5d
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
cvsdist c68ed5d
- fix descriptions
cvsdist c68ed5d
cvsdist c68ed5d
* Wed Jan 26 2000 Bernhard Rosenkraenzer <bero@redhat.com>
cvsdist c68ed5d
- move info-stnd.info* to the info package, /sbin/install-info it
cvsdist c68ed5d
  in %post (Bug #6632)
cvsdist c68ed5d
cvsdist c68ed5d
* Thu Jan 13 2000 Jeff Johnson <jbj@redhat.com>
cvsdist c68ed5d
- recompile to eliminate ncurses foul-up.
cvsdist c68ed5d
3e8f289
* Tue Nov  9 1999 Bernhard Rosenkränzer <bero@redhat.com>
cvsdist c68ed5d
- 4.0
cvsdist c68ed5d
- handle RPM_OPT_FLAGS
cvsdist c68ed5d
cvsdist c68ed5d
* Tue Sep 07 1999 Cristian Gafton <gafton@redhat.com>
cvsdist c68ed5d
- import version 3.12h into 6.1 tree from HJLu
cvsdist c68ed5d
cvsdist c68ed5d
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
cvsdist c68ed5d
- auto rebuild in the new build environment (release 4)
cvsdist c68ed5d
cvsdist c68ed5d
* Wed Mar 17 1999 Erik Troan <ewt@redhat.com>
cvsdist c68ed5d
- hacked to use zlib to get rid of the requirement on gzip
cvsdist c68ed5d
cvsdist c68ed5d
* Wed Mar 17 1999 Matt Wilson <msw@redhat.com>
cvsdist c68ed5d
- install-info prerequires gzip
cvsdist c68ed5d
cvsdist c68ed5d
* Thu Mar 11 1999 Cristian Gafton <gafton@redhat.com>
cvsdist c68ed5d
- version 3.12f
cvsdist c68ed5d
- make /usr/info/dir to be a %config(noreplace)
cvsdist c68ed5d
* Wed Nov 25 1998 Jeff Johnson <jbj@redhat.com>
cvsdist c68ed5d
- rebuild to fix docdir perms.
cvsdist c68ed5d
cvsdist c68ed5d
* Thu Sep 24 1998 Cristian Gafton <gafton@redhat.com>
cvsdist c68ed5d
- fix allocation problems in install-info
cvsdist c68ed5d
cvsdist c68ed5d
* Wed Sep 23 1998 Jeff Johnson <jbj@redhat.com>
cvsdist c68ed5d
- /sbin/install-info should not depend on /usr/lib/libz.so.1 -- statically
cvsdist c68ed5d
  link with /usr/lib/libz.a.
cvsdist c68ed5d
cvsdist c68ed5d
* Fri Aug 07 1998 Erik Troan <ewt@redhat.com>
cvsdist c68ed5d
- added a prereq of bash to the info package -- see the comment for a
cvsdist c68ed5d
  description of why that was done
cvsdist c68ed5d
cvsdist c68ed5d
* Tue Jun 09 1998 Prospector System <bugs@redhat.com>
cvsdist c68ed5d
- translations modified for de
cvsdist c68ed5d
cvsdist c68ed5d
* Tue Jun  9 1998 Jeff Johnson <jbj@redhat.com>
cvsdist c68ed5d
- add %attr to permit non-root build.
cvsdist c68ed5d
cvsdist c68ed5d
* Thu May 07 1998 Prospector System <bugs@redhat.com>
cvsdist c68ed5d
- translations modified for de, fr, tr
cvsdist c68ed5d
cvsdist c68ed5d
* Sun Apr 12 1998 Cristian Gafton <gafton@redhat.com>
cvsdist c68ed5d
- added %clean
cvsdist c68ed5d
- manhattan build
cvsdist c68ed5d
cvsdist c68ed5d
* Wed Mar 04 1998 Cristian Gafton <gafton@redhat.com>
cvsdist c68ed5d
- upgraded to version 3.12
cvsdist c68ed5d
- added buildroot
cvsdist c68ed5d
cvsdist c68ed5d
* Sun Nov 09 1997 Donnie Barnes <djb@redhat.com>
cvsdist c68ed5d
- moved /usr/info/dir to /etc/info-dir and made /usr/info/dir a
cvsdist c68ed5d
  symlink to /etc/info-dir.
cvsdist c68ed5d
cvsdist c68ed5d
* Wed Oct 29 1997 Donnie Barnes <djb@redhat.com>
cvsdist c68ed5d
- added wmconfig entry for info
cvsdist c68ed5d
cvsdist c68ed5d
* Wed Oct 01 1997 Donnie Barnes <djb@redhat.com>
cvsdist c68ed5d
- stripped /sbin/install-info
cvsdist c68ed5d
cvsdist c68ed5d
* Mon Sep 22 1997 Erik Troan <ewt@redhat.com>
cvsdist c68ed5d
- added info-dir to filelist
cvsdist c68ed5d
cvsdist c68ed5d
* Sun Sep 14 1997 Erik Troan <ewt@redhat.com>
cvsdist c68ed5d
- added patch from sopwith to let install-info understand gzip'ed info files
cvsdist c68ed5d
- use skeletal dir file from texinfo tarball (w/ bash entry to reduce
cvsdist c68ed5d
  dependency chain) instead (and install-info command everywhere else)
cvsdist c68ed5d
- patches install-info to handle .gz names correctly
cvsdist c68ed5d
cvsdist c68ed5d
* Tue Jun 03 1997 Erik Troan <ewt@redhat.com>
cvsdist c68ed5d
- built against glibc
cvsdist c68ed5d
cvsdist c68ed5d
* Tue Feb 25 1997 Erik Troan <ewt@redhat.com>
cvsdist c68ed5d
- patched install-info.c for glibc.
cvsdist c68ed5d
- added /usr/bin/install-info to the filelist
cvsdist c68ed5d
cvsdist c68ed5d
* Tue Feb 18 1997 Michael Fulbright <msf@redhat.com>
cvsdist c68ed5d
- upgraded to version 3.9.