commit d6a4c6b4f0652d3cf29746542d39f87438bacfcd1904f5e60d4fca108c6ebe45 Author: OBS User unknown Date: Mon Jan 15 23:16:52 2007 +0000 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/htmldoc?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/htmldoc-1.8.27-source.tar.bz2 b/htmldoc-1.8.27-source.tar.bz2 new file mode 100644 index 0000000..b8c822c --- /dev/null +++ b/htmldoc-1.8.27-source.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89ffd223734268375dc959c200622dc5f167576c5cad9d7ce4bd7567faeb9613 +size 3960271 diff --git a/htmldoc-docpath.diff b/htmldoc-docpath.diff new file mode 100644 index 0000000..674c05e --- /dev/null +++ b/htmldoc-docpath.diff @@ -0,0 +1,49 @@ +Author: Günther Deschner +Subject: Fix doc path + +Index: config.h.in +=================================================================== +--- config.h.in.orig ++++ config.h.in +@@ -54,7 +54,7 @@ + * Locations of files... + */ + +-#define DOCUMENTATION "/usr/share/doc/htmldoc" ++#define DOCUMENTATION "/usr/share/doc/packages/htmldoc/doc" + #define HTML_DATA "/usr/share/htmldoc" + + +Index: configure.in +=================================================================== +--- configure.in.orig ++++ configure.in +@@ -316,7 +316,7 @@ if test "$bindir" = "\${exec_prefix}/bin + bindir="$exec_prefix/bin" + fi + +-AC_DEFINE_UNQUOTED(DOCUMENTATION, "$prefix/share/doc/htmldoc") ++AC_DEFINE_UNQUOTED(DOCUMENTATION, "$prefix/share/doc/packages/htmldoc/doc") + AC_DEFINE_UNQUOTED(HTML_DATA, "$prefix/share/htmldoc") + + dnl Update compiler options... +Index: doc/Makefile +=================================================================== +--- doc/Makefile.orig ++++ doc/Makefile +@@ -57,11 +57,11 @@ all: $(DOCUMENTS) + # + + install: $(DOCUMENTS) +- if [ ! -d $(datadir)/doc/htmldoc ]; then\ +- $(MKDIR) $(datadir)/doc/htmldoc;\ ++ if [ ! -d $(datadir)/doc/packages/htmldoc ]; then\ ++ $(MKDIR) $(datadir)/doc/packages/htmldoc;\ + fi +- $(CP) $(DOCFILES) $(datadir)/doc/htmldoc +- $(CHMOD) ugo+r $(datadir)/doc/htmldoc/* ++ $(CP) $(DOCFILES) $(datadir)/doc/packages/htmldoc ++ $(CHMOD) ugo+r $(datadir)/doc/packages/htmldoc/* + if [ ! -d $(mandir)/man1 ]; then\ + $(MKDIR) $(mandir)/man1;\ + fi diff --git a/htmldoc.changes b/htmldoc.changes new file mode 100644 index 0000000..8649e6a --- /dev/null +++ b/htmldoc.changes @@ -0,0 +1,154 @@ +------------------------------------------------------------------- +Thu Aug 3 12:57:27 CEST 2006 - lmuelle@suse.de + +- Update to version 1.8.27. + + Fixed a crash bug that appeared when more than 10 blank + pages were present in a document (PR #6223) + + Color changes were not reflected in PRE text (STR #129) + + Remote URLs did not always work on older operating + systems (PR #6179) + + Image filenames using % escapes were not decoded + properly. + + Rows using BGCOLOR that spanned across multiple pages + did not render properly (PR #6149) + + Rows no longer start on a new page due to a cell with + both HEIGHT and ROWSPAN specified (PR #6086) + + CMYK JPEG images caused HTMLDOC to crash (PR #6106) + + Table cell width calculations didn't always account for + the proper minimum width (STR #121) + + Images were not copied when generating indexed HTML + output to a directory (STR #117) + + Changing the bottom margin resulted in text that was + formatted below the bottom margin. + + The Monospace-Oblique font was not embedded properly in + PDF files. + + Outline and keyword strings in PDF files are now stored + as Unicode (STR #113) + + The Flate compression code could get in an infinite + loop if it ran out of memory (STR #101) + + Book files saved from the GUI did not handle filenames + with spaces (STR #105) + + Fixed and re-enabled the ASCII85Device filter support + in PostScript Level 2/3 output (STR #116) + + Character entities in the first word of a file were not + rendered properly (STR #111) + + Fixed-size table columns were incorrectly resized when + a table width was also specified and there was extra + space to distribute (PR #6062) + + Text could "walk" up or down when in-line images were + used (PR #6034) + + Row backgrounds incorrectly replaced cell backgrounds + when the first cell in a row used ROWSPAN (PR #6033, PR + #6036) + + HTMLDOC did not correctly parse FONT FACE attributes + (PR #6006) + + Images in Level 2/3 PostScript output did not work on + some printers (PR #6000) + + The GUI did not use the first page header (PR #5978) + +------------------------------------------------------------------- +Wed Jan 25 21:36:30 CET 2006 - mls@suse.de + +- converted neededforbuild to BuildRequires + +------------------------------------------------------------------- +Tue Nov 22 14:29:31 CET 2005 - lmuelle@suse.de + +- Update to version 1.8.25. + +------------------------------------------------------------------- +Wed Dec 8 16:55:18 CET 2004 - lmuelle@suse.de + +- Update to version 1.8.24; [#43261]. + +------------------------------------------------------------------- +Mon May 17 15:49:27 CEST 2004 - lmuelle@suse.de + +- Add -fno-strict-aliasing to CFLAGS. + +------------------------------------------------------------------- +Mon Mar 22 00:49:15 CET 2004 - ro@suse.de + +- removed .orig file + +------------------------------------------------------------------- +Sat Jan 10 15:41:17 CET 2004 - adrian@suse.de + +- add %defattr + +------------------------------------------------------------------- +Mon Feb 24 17:10:51 CET 2003 - gd@suse.de + +- update to version 1.8.23 + +------------------------------------------------------------------- +Fri Aug 16 15:05:06 CEST 2002 - ro@suse.de + +- removed empty post/postun scripts (#17875) (again) + +------------------------------------------------------------------- +Fri Aug 16 15:00:27 CEST 2002 - gd@suse.de + +- update to version 1.8.21 + +------------------------------------------------------------------- +Tue Aug 13 00:37:08 CEST 2002 - ro@suse.de + +- fix compilation with new fltk + +------------------------------------------------------------------- +Thu Jul 4 15:14:41 CEST 2002 - gd@suse.de + +- update to version 1.8.20 +- added diff to correct DOCDIR-path and missing fonts +- cleanups (%files, %{_mandir}) + +------------------------------------------------------------------- +Tue Feb 5 06:54:21 CET 2002 - gd@suse.de + +- added libpng to neededforbuild + +------------------------------------------------------------------- +Mon Feb 4 21:50:35 CET 2002 - gd@suse.de + +- update to version 1.8.18 +- the gui finally compiles with fltk-1.1.0b10 +- added libjpeg to neededforbuild + +------------------------------------------------------------------- +Thu Dec 6 22:31:08 CET 2001 - schwab@suse.de + +- Fix fltk configuration. + +------------------------------------------------------------------- +Wed Dec 6 15:51:00 CET 2001 - gd@suse.de + +- fixed buildroot again + +------------------------------------------------------------------- +Thu Dec 6 01:11:07 CET 2001 - ro@suse.de + +- fixed format of changes file (again) + +------------------------------------------------------------------- +Wed Dec 4 12:00:00 CET 2001 - gd@suse.de + +- added FLTKCONFIG-path +- fixed neededforbuild +- fixed buildroot + +------------------------------------------------------------------- +Mon Dec 3 01:08:46 CET 2001 - gd@suse.de + +- fixed needeforbuild + +----------------------------------------------------------- +Mon Nov 26 12:00:00 CET 2001 - gd@suse.de + +- update to 1.8.16 + +----------------------------------------------------------- +Sat Oct 6 12:00:00 CET 2001 - gd@suse.de + +- start + diff --git a/htmldoc.spec b/htmldoc.spec new file mode 100644 index 0000000..df1ae91 --- /dev/null +++ b/htmldoc.spec @@ -0,0 +1,164 @@ +# +# spec file for package htmldoc (Version 1.8.27) +# +# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. +# This file and all modifications and additions to the pristine +# package are under the same license as the package itself. +# +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + +# norootforbuild + +Name: htmldoc +BuildRequires: fltk-devel freeglut-devel gcc-c++ libdrm-devel libjpeg-devel libpng-devel openssl-devel +License: LGPL +Group: Productivity/Publishing/HTML/Tools +URL: http://htmldoc.org/ +Autoreqprov: on +Version: 1.8.27 +Release: 1 +Summary: HTML Processor that Generates HTML, PostScript, and PDF Files +Source: %{name}-%{version}-source.tar.bz2 +Patch: %{name}-docpath.diff +BuildRoot: %{_tmppath}/%{name}-%{version}-build +%define DOCDIR %{_datadir}/doc/packages/%{name} + +%description +HTMLDOC converts HTML source files into indexed HTML, PostScript, or +Portable Document Format (PDF) files that can be viewed online or +printed. + + + +Authors: +-------- + Michael Sweet + +%prep +%setup +%patch + +%build +%{?suse_update_config:%{suse_update_config -f}} +export CFLAGS="${RPM_OPT_FLAGS} -fno-strict-aliasing" +autoconf +./configure \ + --bindir=%{_bindir} \ + --prefix=%{_usr} \ + --mandir=%{_mandir} \ + --with-fltk-libs=/usr/X11R6/lib \ + --with-fltk-includes=/usr/X11R6/include \ + --with-gui +make + +%install +[ x"${RPM_BUILD_ROOT}" = x"/" ] && ( echo "your buildroot is /" && exit 0) || rm -rf "${RPM_BUILD_ROOT}" +mkdir -p \ + ${RPM_BUILD_ROOT}/%{_bindir} \ + ${RPM_BUILD_ROOT}/%{_mandir} +make \ + bindir=${RPM_BUILD_ROOT}/%{_bindir} \ + prefix=${RPM_BUILD_ROOT}/%{_usr} \ + mandir=${RPM_BUILD_ROOT}/%{_mandir} \ +install + +%files +%defattr(-,root,root) +%{_bindir}/htmldoc +%{_datadir}/htmldoc +%doc %{_mandir}/man1/htmldoc.1.gz +%doc doc/ cgi-bin/ CHANGES.txt COMPILE.txt COPYING.txt README.txt + +%changelog -n htmldoc +* Thu Aug 03 2006 - lmuelle@suse.de +- Update to version 1.8.27. + + Fixed a crash bug that appeared when more than 10 blank + pages were present in a document (PR #6223) + + Color changes were not reflected in PRE text (STR #129) + + Remote URLs did not always work on older operating + systems (PR #6179) + + Image filenames using %% escapes were not decoded + properly. + + Rows using BGCOLOR that spanned across multiple pages + did not render properly (PR #6149) + + Rows no longer start on a new page due to a cell with + both HEIGHT and ROWSPAN specified (PR #6086) + + CMYK JPEG images caused HTMLDOC to crash (PR #6106) + + Table cell width calculations didn't always account for + the proper minimum width (STR #121) + + Images were not copied when generating indexed HTML + output to a directory (STR #117) + + Changing the bottom margin resulted in text that was + formatted below the bottom margin. + + The Monospace-Oblique font was not embedded properly in + PDF files. + + Outline and keyword strings in PDF files are now stored + as Unicode (STR #113) + + The Flate compression code could get in an infinite + loop if it ran out of memory (STR #101) + + Book files saved from the GUI did not handle filenames + with spaces (STR #105) + + Fixed and re-enabled the ASCII85Device filter support + in PostScript Level 2/3 output (STR #116) + + Character entities in the first word of a file were not + rendered properly (STR #111) + + Fixed-size table columns were incorrectly resized when + a table width was also specified and there was extra + space to distribute (PR #6062) + + Text could "walk" up or down when in-line images were + used (PR #6034) + + Row backgrounds incorrectly replaced cell backgrounds + when the first cell in a row used ROWSPAN (PR #6033, PR + [#6036]) + + HTMLDOC did not correctly parse FONT FACE attributes + (PR #6006) + + Images in Level 2/3 PostScript output did not work on + some printers (PR #6000) + + The GUI did not use the first page header (PR #5978) +* Wed Jan 25 2006 - mls@suse.de +- converted neededforbuild to BuildRequires +* Tue Nov 22 2005 - lmuelle@suse.de +- Update to version 1.8.25. +* Wed Dec 08 2004 - lmuelle@suse.de +- Update to version 1.8.24; [#43261]. +* Mon May 17 2004 - lmuelle@suse.de +- Add -fno-strict-aliasing to CFLAGS. +* Mon Mar 22 2004 - ro@suse.de +- removed .orig file +* Sat Jan 10 2004 - adrian@suse.de +- add %%defattr +* Mon Feb 24 2003 - gd@suse.de +- update to version 1.8.23 +* Fri Aug 16 2002 - ro@suse.de +- removed empty post/postun scripts (#17875) (again) +* Fri Aug 16 2002 - gd@suse.de +- update to version 1.8.21 +* Tue Aug 13 2002 - ro@suse.de +- fix compilation with new fltk +* Thu Jul 04 2002 - gd@suse.de +- update to version 1.8.20 +- added diff to correct DOCDIR-path and missing fonts +- cleanups (%%files, %%{_mandir}) +* Tue Feb 05 2002 - gd@suse.de +- added libpng to neededforbuild +* Mon Feb 04 2002 - gd@suse.de +- update to version 1.8.18 +- the gui finally compiles with fltk-1.1.0b10 +- added libjpeg to neededforbuild +* Thu Dec 06 2001 - schwab@suse.de +- Fix fltk configuration. +* Thu Dec 06 2001 - gd@suse.de +- fixed buildroot again +* Thu Dec 06 2001 - ro@suse.de +- fixed format of changes file (again) +* Tue Dec 04 2001 - gd@suse.de +- added FLTKCONFIG-path +- fixed neededforbuild +- fixed buildroot +* Mon Dec 03 2001 - gd@suse.de +- fixed needeforbuild +* Mon Nov 26 2001 - gd@suse.de +- update to 1.8.16 +* Sat Oct 06 2001 - gd@suse.de +- start diff --git a/ready b/ready new file mode 100644 index 0000000..473a0f4