source: projects/specs/trunk/lib/libv/libvisio/libvisio-vl.spec @ 12346

Revision 12346, 7.8 KB checked in by tomop, 4 years ago (diff)

updated 14 packages

ca-certificates-2020.2.40-1

dmidecode-3.2-1

dnsmasq-2.80-2

golang-1.14.1-1

gthumb-3.8.3-1

haveged-1.9.8-1

iw-5.4-1

liblockfile-1.14-6

libnl3-3.5.0-1

libvisio-0.1.7-2

mailx-8.1.2.20180807-1

strace-5.5-1

tzdata-2019c-1

zlib-1.2.11-2

Line 
1%global apiversion 0.1
2
3Name: libvisio
4Version: 0.1.7
5Release: 2%{?_dist_release}
6Summary: A library for import of Microsoft Visio diagrams
7Summary(ja): Microsoft Visio ダイアグラムをインポートするためのライブラリ
8Group: System Environment/Libraries
9
10Vendor: Project Vine
11Distribution: Vine Linux
12
13License: MPLv2.0
14URL: http://wiki.documentfoundation.org/DLP/Libraries/libvisio
15
16Source: http://dev-www.libreoffice.org/src/%{name}/%{name}-%{version}.tar.xz
17
18BuildRoot: %{_tmppath}/%{name}-%{version}-root
19BuildRequires: doxygen
20BuildRequires: cppunit-devel
21BuildRequires: gperf
22BuildRequires: help2man
23BuildRequires: libboost-devel
24BuildRequires: libicu-devel
25BuildRequires: librevenge-devel
26BuildRequires: libxml2-devel
27BuildRequires: perl
28BuildRequires: zlib-devel
29
30%description
31%{name} is library providing ability to interpret and import
32Microsoft Visio diagrams into various applications. You can find it
33being used in libreoffice.
34
35%package devel
36Summary: Development files for %{name}
37Summary(ja): %{name} の開発用ファイル
38Group: Development/Libraries
39Requires: %{name} = %{version}-%{release}
40
41%description devel
42The %{name}-devel package contains libraries and header files for
43developing applications that use %{name}.
44
45%package doc
46Summary: Documentation of %{name} API
47Summary(ja): %{name} API のドキュメント
48Group: Documentation
49BuildArch: noarch
50
51%description doc
52The %{name}-doc package contains documentation files for %{name}.
53
54%package tools
55Summary: Tools to transform Microsoft Visio diagrams into other formats
56Summary(ja): Microsoft Visio ダイアグラムを他のフォーマットに変換するツール
57Group: Applications/Productivity
58Requires: %{name} = %{version}-%{release}
59
60%description tools
61Tools to transform Microsoft Visio diagrams into other formats.
62Currently supported: XHTML, raw, plain text.
63
64%prep
65%setup -q
66
67%build
68%configure --disable-static --disable-silent-rules
69sed -i \
70    -e 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' \
71    -e 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' \
72    libtool
73make %{?_smp_mflags}
74
75export LD_LIBRARY_PATH=`pwd`/src/lib/.libs${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
76help2man -N -n 'debug the conversion library' -o vsd2raw.1 ./src/conv/raw/.libs/vsd2raw
77help2man -N -n 'convert Visio document into SVG' -o vsd2xhtml.1 ./src/conv/svg/.libs/vsd2xhtml
78help2man -N -n 'convert Visio document into plain text' -o vsd2text.1 ./src/conv/text/.libs/vsd2text
79help2man -N -n 'debug the conversion library' -o vss2raw.1 ./src/conv/raw/.libs/vss2raw
80help2man -N -n 'convert Visio stencil into SVG' -o vss2xhtml.1 ./src/conv/svg/.libs/vss2xhtml
81help2man -N -n 'convert Visio stencil into plain text' -o vss2text.1 ./src/conv/text/.libs/vss2text
82
83%install
84rm -rf %{buildroot}
85make install DESTDIR=%{buildroot}
86rm -f %{buildroot}/%{_libdir}/*.la
87# rhbz#1001240 we install API docs directly from build
88rm -rf %{buildroot}/%{_docdir}/%{name}
89
90install -m 0755 -d %{buildroot}/%{_mandir}/man1
91install -m 0644 vsd2*.1 vss2*.1 %{buildroot}/%{_mandir}/man1
92
93%post -p /sbin/ldconfig
94%postun -p /sbin/ldconfig
95
96%check
97export LD_LIBRARY_PATH=%{buildroot}%{_libdir}${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
98# Workaround time formatting problem in the test
99export TZ='CET'
100make check %{?_smp_mflags}
101
102%clean
103rm -rf %{buildroot}
104
105%files
106%license COPYING.*
107%doc AUTHORS
108%{_libdir}/%{name}-%{apiversion}.so.*
109
110%files devel
111%doc ChangeLog
112%{_includedir}/%{name}-%{apiversion}
113%{_libdir}/%{name}-%{apiversion}.so
114%{_libdir}/pkgconfig/%{name}-%{apiversion}.pc
115
116%files doc
117%doc COPYING.*
118%doc docs/doxygen/html
119
120%files tools
121%{_bindir}/vsd2raw
122%{_bindir}/vsd2text
123%{_bindir}/vsd2xhtml
124%{_bindir}/vss2raw
125%{_bindir}/vss2text
126%{_bindir}/vss2xhtml
127%{_mandir}/man1/vsd2raw.1*
128%{_mandir}/man1/vsd2text.1*
129%{_mandir}/man1/vsd2xhtml.1*
130%{_mandir}/man1/vss2raw.1*
131%{_mandir}/man1/vss2text.1*
132%{_mandir}/man1/vss2xhtml.1*
133
134%changelog
135* Sat Mar 21 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 0.1.7-2
136- rebuilt with icu-66.
137
138* Sun Oct 13 2019 Toshiaki Ara <ara_t@384.jp> - 0.1.7-1
139- new upstream release
140
141* Tue Jan 16 2018 Toshiaki Ara <ara_t@384.jp> - 0.1.5-2
142- rebuild under current VineSeed
143
144* Sun Jul 03 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.1.5-1
145- new upstream release
146- remove Patch0 (0001-fix-test.patch)
147
148* Tue Nov 03 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.1.3-1
149- new upstream release
150- add Patch0 (0001-fix-test.patch) from fedora
151
152* Tue Jan 13 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.1.1-2
153- Initial build for Vine Linux
154
155* Fri Jan 02 2015 David Tardon <dtardon@redhat.com> - 0.1.1-1
156- new upstream release
157
158* Tue Aug 26 2014 David Tardon <dtardon@redhat.com> - 0.1.0-4
159- rebuild for ICU 53.1
160
161* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.0-3
162- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
163
164* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.0-2
165- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
166
167* Mon May 26 2014 David Tardon <dtardon@redhat.com> - 0.1.0-1
168- new upstream release
169
170* Thu May 22 2014 Petr Machata <pmachata@redhat.com> - 0.0.31-4
171- Rebuild for boost 1.55.0
172
173* Wed Apr 09 2014 David Tardon <dtardon@redhat.com> - 0.0.31-3
174- generate man pages
175
176* Wed Feb 12 2014 Rex Dieter <rdieter@fedoraproject.org> 0.0.31-2
177- rebuild (libicu)
178
179* Mon Sep 02 2013 David Tardon <dtardon@redhat.com> - 0.0.31-1
180- new release
181
182* Fri Aug 30 2013 David Tardon <dtardon@redhat.com> - 0.0.30-4
183- Resolves: rhbz#1001240 duplicate documentation files / potentially conflicting
184
185* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.30-3
186- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
187
188* Tue Jul 30 2013 Petr Machata <pmachata@redhat.com> - 0.0.30-2
189- Rebuild for boost 1.54.0
190
191* Mon Jul 15 2013 David Tardon <dtardon@redhat.com> - 0.0.30-1
192- new release
193
194* Tue Jul 02 2013 David Tardon <dtardon@redhat.com> - 0.0.29-1
195- new release
196
197* Wed Jun 05 2013 David Tardon <dtardon@redhat.com> - 0.0.28-1
198- new release
199
200* Thu May 16 2013 David Tardon <dtardon@redhat.com> - 0.0.27-1
201- new release
202
203* Tue Apr 23 2013 David Tardon <dtardon@redhat.com> - 0.0.26-1
204- new release
205
206* Thu Feb 28 2013 David Tardon <dtardon@redhat.com> - 0.0.25-1
207- new release
208
209* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.24-2
210- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
211
212* Tue Dec 18 2012 David Tardon <dtardon@redhat.com> - 0.0.24-1
213- new release
214
215* Mon Dec 03 2012 David Tardon <dtardon@redhat.com> - 0.0.23-1
216- new release
217
218* Thu Nov 29 2012 David Tardon <dtardon@redhat.com> - 0.0.22-1
219- new upstream release
220
221* Wed Nov 21 2012 David Tardon <dtardon@redhat.com> - 0.0.21-1
222- new upstream release
223
224* Tue Nov 06 2012 David Tardon <dtardon@redhat.com> - 0.0.20-1
225- new upstream version
226
227* Fri Jul 27 2012 David Tardon <dtardon@redhat.com> - 0.0.19-2
228- rebuilt for boost 1.50
229
230* Thu Jul 26 2012 David Tardon <dtardon@redhat.com> - 0.0.19-1
231- new upstream version
232
233* Tue Jul 24 2012 David Tardon <dtardon@redhat.com> - 0.0.18-3
234- fix endless loop with text fields in VSD6
235
236* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.18-2
237- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
238
239* Fri Jun 22 2012 David Tardon <dtardon@redhat.com> 0.0.18-1
240- new upstream version
241
242* Fri Jun 01 2012 David Tardon <dtardon@redhat.com> 0.0.17-1
243- new upstream version
244
245* Tue Apr 17 2012 David Tardon <dtardon@redhat.com> 0.0.16-1
246- new upstream version
247
248* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.15-2
249- Rebuilt for c++ ABI breakage
250
251* Tue Feb 21 2012 David Tardon <dtardon@redhat.com> 0.0.15-1
252- new upstream version
253
254* Wed Jan 25 2012 David Tardon <dtardon@redhat.com> 0.0.14-1
255- bump version
256
257- initial import
258* Wed Dec 21 2011 David Tardon <dtardon@redhat.com> 0.0.11-1
259- initial import
Note: See TracBrowser for help on using the repository browser.