]> git.pld-linux.org Git - packages/htmldoc.git/blame_incremental - htmldoc.spec
- fix typo
[packages/htmldoc.git] / htmldoc.spec
... / ...
CommitLineData
1#
2# Conditional build:
3%bcond_without gui # without FLTK-based GUI
4#
5Summary: HTML processing program
6Summary(pl.UTF-8): Program przetwarzający HTML
7Name: htmldoc
8Version: 1.8.27
9Release: 15
10License: GPL v2 with OpenSSL exception
11Group: Applications/Publishing
12Source0: ftp://ftp.easysw.com/pub/htmldoc/%{version}/%{name}-%{version}-source.tar.bz2
13# Source0-md5: 35589e7b8fe9c54e11be87cd5aec4dcc
14Patch0: %{name}-libpng15.patch
15Patch1: htmldoc-1.8.27-fortify-fail.patch
16Patch2: htmldoc-1.8.27-scanf-overflows.patch
17Patch3: gcc11.patch
18URL: http://www.htmldoc.org/
19%{?with_gui:BuildRequires: xorg-lib-libXpm-devel}
20BuildRequires: autoconf
21BuildRequires: automake
22%{?with_gui:BuildRequires: fltk-devel}
23BuildRequires: libjpeg-devel
24BuildRequires: libpng-devel
25BuildRequires: openssl-devel >= 0.9.7d
26BuildRequires: zlib-devel
27BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
28
29%description
30HTML processing program that generates HTML, PostScript, and PDF files
31with a table of contents.
32
33%description -l pl.UTF-8
34Program przetwarzający HTML, który generuje pliki HTML, PostScript i
35PDF ze spisem treści.
36
37%prep
38%setup -q
39%patch0 -p0
40%patch1 -p1
41%patch2 -p1
42%patch3 -p1
43
44%build
45%configure \
46 %{!?with_gui:--without-gui}
47%{__make}
48
49%install
50rm -rf $RPM_BUILD_ROOT
51%{__make} install \
52 datadir=$RPM_BUILD_ROOT%{_datadir} \
53 mandir=$RPM_BUILD_ROOT%{_mandir} \
54 bindir=$RPM_BUILD_ROOT%{_bindir}
55
56%clean
57rm -rf $RPM_BUILD_ROOT
58
59%files
60%defattr(644,root,root,755)
61%doc COPYING.txt CHANGES.txt README.txt
62%doc doc/htmldoc.html doc/htmldoc-fig*.png doc/htmldoc.p* doc/help.html
63%attr(755,root,root) %{_bindir}/*
64%{_mandir}/man1/*
65%{_datadir}/htmldoc
This page took 0.076362 seconds and 5 git commands to generate.