source: projects/specs/trunk/lib/libe/libemf/libemf-vl.spec @ 10580

Revision 10580, 3.4 KB checked in by Takemikaduchi, 8 years ago (diff)

Xaw3d: new upstream release
others: rebuild with gcc-5.4.0

Line 
1Summary:       library for generating Enhanced Metafiles
2Summary(ja):   EMF作成ライブラリ
3Name:          libemf
4Version:       1.0.7
5Release:       2%{?_dist_release}
6Group:         System Environment/Libraries
7License:       LGPL
8Source:        libEMF-%{version}.tar.gz
9URL:           http://libemf.sourceforge.net/
10BuildRoot:     %{_tmppath}/%{name}-%{version}-root
11Vendor:        Project Vine
12Distribution:  Vine Linux
13Packager:      Susumu Tanimura <stanimura-ngs@umin.ac.jp>
14
15%description
16libEMF is a library for generating Enhanced Metafiles on systems which
17do not natively support the ECMA-234 Graphics Device Interface
18(GDI). The library is intended to be used as a driver for other
19graphics programs such as Grace or gnuplot. Therefore, it implements a
20very limited subset of the GDI.
21
22%description -l ja
23libEMFはECMA-234グラフィックディバイスインターフェイス(GDI)をサポート
24していないシステムのためのemf作成ライブラリです。このライブラリは、
25Grace や gnuplotなど他のグラフィックソフトから利用するようになっており、
26GDIサブセットしては機能的制約があります。
27
28%package -n %{name}-devel
29Summary:     Development files for using the EMF library
30Summary(ja): EMFライブラリ開発キット
31Group:       Development/Libraries
32Requires:    libemf = %{version}-%{release}
33
34%description -n %{name}-devel
35Development files for using the EMF library
36
37%description  -n %{name}-devel -l ja
38EMFライブラリ開発キット
39
40%prep
41%setup -q -n libEMF-%{version}
42
43%build
44# --enable-static=no, --disable-static does not work...
45%configure --disable-static --enable-editing
46make %{?_smp_mflags}
47
48%install
49rm -rf $RPM_BUILD_ROOT
50make install DESTDIR=$RPM_BUILD_ROOT
51
52%clean
53rm -rf $RPM_BUILD_ROOT
54
55%post -p /sbin/ldconfig
56%postun -p /sbin/ldconfig
57
58%files
59%defattr(-,root,root)
60%doc README AUTHORS COPYING.LIB COPYING NEWS
61%{_libdir}/libEMF.so*
62%{_bindir}/printemf
63
64%files -n %{name}-devel
65%defattr(-,root,root,-)
66%doc doc/html/*
67%{_libdir}/libEMF.so
68%{_includedir}/libEMF/*.h
69%{_includedir}/libEMF/wine/*.h
70%exclude %{_libdir}/libEMF.a
71%exclude %{_libdir}/libEMF.la
72
73%changelog
74* Sun Jul 10 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.7-2
75- rebuild with gcc-5.4.0
76
77* Sun Aug 24 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.7-1
78- update to 1.0.7
79- remove old patches
80
81* Thu Apr 29 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0.4-1
82- updated libEMF to 1.0.4
83- built with new toolchain
84
85* Sun Jun 14 2009 Shu KONNO <owa@bg.wakwak.com> 1.0.3-1
86- updated libEMF to 1.0.3
87- added libEMF-1.0.3-amd64.patch (from fedora)
88- dropt *.a *.la
89- dropt patch-include+wine+winnt.h
90- dropt patch-libemf+libemf.cpp
91- dropt patch-libemf+libemf.h
92
93* Mon Sep 22 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0-1
94- applied new versioning policy
95- spec in UTF-8
96
97* Sun May 20 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0-0vl6
98- rebuilt with new toolchain
99
100* Thu Aug 17 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0-0vl5
101- rebuilt for VineSeed (4.0)
102- added %post, %postun section
103
104* Wed Oct 20 2004 Susumu Tanimura  <stanimura-ngs@umin.ac.jp>
105- Moved html documents to the devel package
106
107* Wed Sep 22 2004 Susumu Tanimura  <stanimura-ngs@umin.ac.jp>
108- Change the name to libemf
109- Divided libemf and devel
110- Took the patch written by Wirawan Purwanto
111- Took the patch from FreeBSD
112
113* Thu Oct  2 2003  Susumu Tanimura  <stanimura-ngs@umin.ac.jp>
114- initial package
Note: See TracBrowser for help on using the repository browser.