]> git.pld-linux.org Git - packages/Xbae.git/blob - Xbae.spec
0f3fdeb9505b9067996e6192be63f95daecf43b4
[packages/Xbae.git] / Xbae.spec
1 %define         _truename xbae
2 Summary:        The XbaeMatrix is a Motif-based widget which displays a grid of cells
3 Summary(pl.UTF-8):      XbaeMatrix jest motifowym widgetem wyświetlającym tabelki
4 Name:           Xbae
5 Version:        4.60.4
6 Release:        1
7 License:        BSD-like (Bell Communications Research)
8 Group:          X11/Libraries
9 Source0:        http://dl.sourceforge.net/xbae/%{_truename}-%{version}.tar.gz
10 # Source0-md5:  9690059474bb05191dccd041ff5052bd
11 Patch0:         %{name}-ac.patch
12 URL:            http://xbae.sourceforge.net/
13 BuildRequires:  autoconf
14 BuildRequires:  automake
15 BuildRequires:  libtool
16 BuildRequires:  motif-devel >= 2.0
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 The XbaeMatrix is a Motif-based widget which displays a grid of cells
21 in the same manner as a spreadsheet. The cell array is scrollable,
22 editable, and otherwise reasonably configurable in appearance. Each
23 cell usually displays text, but pixmaps can also be displayed (not
24 editable). The XbaeMatrix looks to some extent like a grid of
25 XmTextField widgets, but is actually implemented with a single
26 XmTextField. This means a big performance improvement due to less
27 overhead.
28
29 %description -l pl.UTF-8
30 XbaeMatrix jest motifowym widgetem wyświetlającym tabelki złożone z
31 pól w sposób podobny do arkuszy kalkulacyjnych. Tabelę można przewijać
32 i poddawać edycji. Każde pole zazwyczaj wyświetla tekst, ale może
33 także bitmapę (bez możliwości edycji).
34
35 %package devel
36 Summary:        XbaeMatrix header files and development documentation
37 Summary(pl.UTF-8):      Pliki nagłówkowe i dokumentacja XbaeMatrix
38 Group:          X11/Development/Libraries
39 Requires:       %{name} = %{version}-%{release}
40 Requires:       motif-devel >= 2.0
41
42 %description devel
43 XbaeMatrix header files and development documentation.
44
45 %description devel -l pl.UTF-8
46 Pliki nagłówkowe i dokumentacja programisty do XbaeMatrix.
47
48 %package static
49 Summary:        XbaeMatrix static library
50 Summary(pl.UTF-8):      Biblioteki statyczne XbaeMatrix
51 Group:          X11/Development/Libraries
52 Requires:       %{name}-devel = %{version}-%{release}
53
54 %description static
55 XbaeMatrix static library.
56
57 %description static -l pl.UTF-8
58 Biblioteki statyczne XbaeMatrix.
59
60 %prep
61 %setup -q -n %{_truename}-%{version}
62 %patch0 -p1
63
64 %build
65 %{__libtoolize}
66 %{__aclocal}
67 %{__autoconf}
68 %{__automake}
69 %configure \
70         --enable-shared \
71         --enable-static \
72         --with-editres
73
74 %{__make}
75
76 %install
77 rm -rf $RPM_BUILD_ROOT
78 install -d $RPM_BUILD_ROOT%{_aclocaldir}
79
80 %{__make} install \
81         DESTDIR=$RPM_BUILD_ROOT \
82         mandir=%{_mandir}
83
84 # workaround - configure decides not to install *.m4 if aclocaldir is not writable
85 install ac_find_*.m4 $RPM_BUILD_ROOT%{_aclocaldir}
86
87 rm -f doc/Makefile* doc/images/Makefile*
88
89 %clean
90 rm -rf $RPM_BUILD_ROOT
91
92 %post   -p /sbin/ldconfig
93 %postun -p /sbin/ldconfig
94
95 %files
96 %defattr(644,root,root,755)
97 %doc AUTHORS COPYING ChangeLog NEWS README
98 %attr(755,root,root) %{_libdir}/libXbae.so.*.*
99 %{_datadir}/Xbae
100
101 %files devel
102 %defattr(644,root,root,755)
103 %doc doc/*
104 %attr(755,root,root) %{_libdir}/libXbae.so
105 %{_libdir}/libXbae.la
106 %{_includedir}/Xbae
107 %{_aclocaldir}/ac_find_xbae.m4
108 %{_mandir}/man3/*
109
110 %files static
111 %defattr(644,root,root,755)
112 %{_libdir}/libXbae.a
This page took 0.06501 seconds and 2 git commands to generate.