]> git.pld-linux.org Git - packages/XmHTML.git/blob - XmHTML.spec
- -devel R: libjpeg-devel,libpng-devel
[packages/XmHTML.git] / XmHTML.spec
1 Summary:        Motif HTML widget
2 Summary(pl):    Widget do HTML oparty o Motif
3 Name:           XmHTML
4 Version:        1.1.7
5 Release:        3
6 License:        LGPL
7 Group:          X11/Libraries
8 Source0:        http://www.xs4all.nl/~ripley/XmHTML/dist/%{name}-%{version}.tar.gz
9 # Source0-md5:  6d079435fb954bb7878f4dd0d3f7b8d8
10 Patch0:         %{name}-am.patch
11 Patch1:         %{name}-macro.patch
12 URL:            http://www.xs4all.nl/~ripley/XmHTML/
13 BuildRequires:  autoconf
14 BuildRequires:  automake
15 BuildRequires:  libjpeg-devel
16 BuildRequires:  libpng-devel
17 BuildRequires:  libtool
18 BuildRequires:  motif-devel >= 1.2
19 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21 %description
22 XmHTML provides a widget capable of displaying HTML 3.2 conforming
23 text.
24
25 %description -l pl
26 XmHTML zawiera widget wy¶wietlaj±cy HTML w wersji 3.2.
27
28 %package devel
29 Summary:        Development package of XmHTML
30 Summary(pl):    Pliki nag³ówkowe XmHTML
31 Group:          X11/Development/Libraries
32 Requires:       %{name} = %{version}
33 Requires:       libjpeg-devel
34 Requires:       libpng-devel
35 Requires:       motif-devel >= 1.2
36
37 %description devel
38 Headers needed to compile XmHTML programs.
39
40 %description devel -l pl
41 Pliki nag³ówkowe potrzebne do kompilowania programów korzystaj±cych z
42 XmHTML.
43
44 %package static
45 Summary:        Static version of XmHTML library
46 Summary(pl):    Statyczna biblioteka XmHTML
47 Group:          X11/Development/Libraries
48 Requires:       %{name}-devel = %{version}
49
50 %description static
51 Static version of XmHTML library.
52
53 %description static -l pl
54 Statyczna wersja biblioteki XmHTML.
55
56 %prep
57 %setup -q
58 %patch0 -p1
59 %patch1 -p1
60
61 %build
62 # Argh! automake stuff outdated, imake stuff outdated even more,
63 # makefiles not outdated but don't support shared libraries :/
64 # Use automake with some patches/workarounds/etc
65 cd lib
66 mv -f common/*.c .
67 mv -f Motif/*.c .
68 cd ..
69
70 %{__libtoolize}
71 %{__aclocal}
72 %{__autoconf}
73 %{__automake}
74 CFLAGS="%{rpmcflags} \
75         -I`pwd`/include/XmHTML -I`pwd`/include/common \
76         %{!?debug:-DNDEBUG -Dproduction} -DVERSION=1107"
77 %configure
78
79 cd lib
80 %{__make}
81
82 %install
83 rm -rf $RPM_BUILD_ROOT
84 install -d $RPM_BUILD_ROOT%{_includedir}/XmHTML
85
86 %{__make} install -C lib \
87         DESTDIR=$RPM_BUILD_ROOT
88
89 install include/XmHTML/{Balloon,HTML,HTMLStrings,XCC,XmHTML}.h \
90         include/common/LZWStream.h \
91         $RPM_BUILD_ROOT%{_includedir}/XmHTML
92
93 rm -f html/man/man.{map,tmpl}
94
95 %clean
96 rm -rf $RPM_BUILD_ROOT
97
98 %post   -p /sbin/ldconfig
99 %postun -p /sbin/ldconfig
100
101 %files
102 %defattr(644,root,root,755)
103 %doc APPS BUG-REPORTING CHANGES DEBUGGING FEEDBACK FIXES
104 %doc README THANKS TODO docs/{QUOTES,README.*,REASONS,progressive.txt}
105 %attr(755,root,root) %{_libdir}/lib*.so.*.*
106
107 %files devel
108 %defattr(644,root,root,755)
109 %doc html/*
110 %attr(755,root,root) %{_libdir}/lib*.so
111 %{_libdir}/lib*.la
112 %{_includedir}/XmHTML
113
114 %files static
115 %defattr(644,root,root,755)
116 %{_libdir}/lib*.a
This page took 0.067504 seconds and 3 git commands to generate.