source: projects/specs/trunk/w/wv2/wv2-vl.spec @ 521

Revision 521, 2.8 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Summary: library which allows access to Microsoft Word files
2Summary(ja): Microsoft Word 形式のファイルを扱うためのライブラリ
3Name: wv2
4Version: 0.3.1
5Release: 1%{?_dist_release}
6License: LGPL
7Group: System Environment/Libraries
8Source: http://download.sourceforge.net/wvware/wv2-%{version}.tar.bz2
9URL: http://wvWare.sourceforge.net/
10
11BuildRoot: %{_tmppath}/%{name}-%{version}-root
12BuildRequires: libgsf-devel >= 1.7.2
13BuildRequires: libxml2-devel
14
15%description
16wv is a library which allows access to Microsoft Word files. It can load
17and parse Word 2000, 97, 95 and 6 file formats. (These are the file formats
18known internally as Word 9, 8, 7 and 6.) There is some support for reading
19earlier formats as well: Word 2 docs are converted to plaintext.
20
21%package devel
22Summary: Development files for wv2
23Summary(ja): wv2 の開発用ファイル
24Group: Development/Libraries
25Requires: %{name} = %{version}-%{release}
26
27%description devel
28Development files for wv2
29
30%prep
31%setup -q
32
33%build
34CXXFLAGS="$RPM_OPT_FLAGS -DNDEBUG -DNO_DEBUG -fno-check-new" \
35CFLAGS="$RPM_OPT_FLAGS -DNDEBUG -DNO_DEBUG" \
36%configure
37
38make %{?_smp_mflags}
39
40%install
41rm -rf $RPM_BUILD_ROOT
42make DESTDIR=$RPM_BUILD_ROOT install
43
44rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
45
46%clean
47rm -rf $RPM_BUILD_ROOT
48
49%files
50%defattr(-,root,root)
51%doc AUTHORS COPYING.LIB ChangeLog README RELEASE THANKS TODO
52%{_libdir}/*.so.*
53
54%files devel
55%defattr(-,root,root)
56%{_bindir}/*
57%{_includedir}/wv2/*
58#{_libdir}/*.la
59%{_libdir}/*.so
60
61%changelog
62* Wed May  6 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.3.1-1
63- new upstream release
64- spec in UTF-8
65
66* Tue Jul 22 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.2.3-1
67- applied new versioning policy
68- removed lib*.la files
69
70* Sun May 13 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.2.3-0vl4
71- rebuilt with new toolchain
72
73* Sun Oct 22 2006 NAKAMURA Kenta <kenta@vinelinux.org> 0.2.3-0vl3
74- added --libdir=%%{_libdir} configure option
75
76* Tue Aug  1 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.2.3-0vl2
77- rebuilt for VineSeed (4.0)
78
79* Tue Aug  1 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.2.3-0vl1
80- new upstream release (including security fix CVE-2006-2197)
81- added Japanese summary
82
83* Sat Jun 17 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.2.2-0vl4
84- rebuild
85
86* Sun Mar 12 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.2.2-0vl3
87- rebuild with libgsf-1.14.0
88
89* Thu Nov 17 2005 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.2.2-0vl2
90- rebuild with libgsf-1.13.3
91
92* Sun Jul 11 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.2.2-0vl1
93- source upgrade
94
95* Sat Sep 20 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.1.9-0vl1
96- source upgrade
97- build with gcc-3.2.3
98
99* Fri Aug 15 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.1.8-0vl1
100- source upgrade
101
102* Mon Jul 21 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.1-0vl1
103- first release
Note: See TracBrowser for help on using the repository browser.