]> git.pld-linux.org Git - packages/XmHTML.git/blob - XmHTML.spec
- many small fixes, mostly inpired by kloczek
[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:        2
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:  lesstif-devel
16 BuildRequires:  libjpeg-devel
17 BuildRequires:  libpng-devel
18 BuildRequires:  libtool
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:       lesstif-devel
34
35 %description devel
36 Headers needed to compile XmHTML programs.
37
38 %description devel -l pl
39 Pliki nag³ówkowe potrzebne do kompilowania programów korzystaj±cych z
40 XmHTML.
41
42 %package static
43 Summary:        Static version of XmHTML library
44 Summary(pl):    Statyczna biblioteka XmHTML
45 Group:          X11/Development/Libraries
46 Requires:       %{name}-devel = %{version}
47
48 %description static
49 Static version of XmHTML library.
50
51 %description static -l pl
52 Statyczna wersja biblioteki XmHTML.
53
54 %prep
55 %setup -q
56 %patch0 -p1
57 %patch1 -p1
58
59 %build
60 # Argh! automake stuff outdated, imake stuff outdated even more,
61 # makefiles not outdated but don't support shared libraries :/
62 # Use automake with some patches/workarounds/etc
63 cd lib
64 mv -f common/*.c .
65 mv -f Motif/*.c .
66 cd ..
67
68 rm -f missing
69 %{__libtoolize}
70 %{__aclocal}
71 %{__autoconf}
72 %{__automake}
73 CFLAGS="%{rpmcflags} \
74         -I`pwd`/include/XmHTML -I`pwd`/include/common \
75         %{!?debug:-DNDEBUG -Dproduction} -DVERSION=1107"
76 %configure \
77         PNGINC="`pkg-config --cflags libpng12 2>/dev/null`"
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.035832 seconds and 4 git commands to generate.