source: projects/specs/trunk/b/babl/babl-vl.spec @ 9559

Revision 9559, 3.8 KB checked in by Takemikaduchi, 9 years ago (diff)

cinnamon: new upstream release or rebuild
caja: fix typo
others: remove *.la files

Line 
1Summary:        A dynamic, any to any, pixel format conversion library
2Name:           babl
3Version:        0.1.10
4Release:        3%{?_dist_release}
5# The gggl codes contained in this package are under the GPL, with exceptions allowing their use under libraries covered under the LGPL
6License:        LGPLv3+ and GPLv3+
7Group:          System Environment/Libraries
8URL:            http://www.gegl.org/babl/
9Source0:        ftp://ftp.gtk.org/pub/babl/0.1/%{name}-%{version}.tar.bz2
10BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
11BuildRequires:  w3m
12
13%description
14Babl is a dynamic, any to any, pixel format conversion library. It
15provides conversions between the myriad of buffer types images can be
16stored in. Babl doesn't only help with existing pixel formats, but also
17facilitates creation of new and uncommon ones.
18
19%package devel
20Summary:        Headers for developing programs that will use %{name}
21Group:          Development/Libraries
22Requires:       %{name} = %{version}-%{release}
23Requires:       pkgconfig
24
25%description devel
26This package contains the libraries and header files needed for
27developing with %{name}.
28
29%prep
30%setup -q
31
32%build
33%configure --disable-static
34make %{?_smp_mflags}
35                                                                               
36%install
37rm -rf %{buildroot}
38make DESTDIR=%{buildroot} install INSTALL='install -p'
39
40mkdir -p babl_docs babl_docs/html
41cp -pr docs/graphics docs/*.html docs/babl.css babl_docs/html
42rm -rf babl_docs/html/graphics/Makefile*
43
44find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
45
46
47%check
48pushd tests
49rm -f concurrency-stress-test
50cat << EOF > concurrency-stress-test
51#!/bin/sh
52echo Skipping test concurrency-stress-test
53EOF
54chmod +x concurrency-stress-test
55popd
56make check
57
58
59%clean
60rm -rf %{buildroot}
61
62%post -p /sbin/ldconfig
63
64%postun -p /sbin/ldconfig
65
66%files
67%defattr(-, root, root, -)
68%doc AUTHORS ChangeLog COPYING README NEWS
69%{_libdir}/*.so.*
70%{_libdir}/babl-0.1/
71
72%files devel
73%defattr(-, root, root, -)
74%doc babl_docs/html
75%{_includedir}/babl-0.1/babl/
76%{_libdir}/*.so
77%{_libdir}/pkgconfig/%{name}.pc
78
79%changelog
80* Sun May 10 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.10-3
81- remove *.la files
82
83* Sat Jul 12 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.10-2
84- rebuild with VineSeed environment
85- fix %%check (based on fedora package)
86
87* Sun May 06 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.10-1
88- new upstream release
89- remove BuildRequires: inkscape, ruby
90
91* Thu Apr 28 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.4-1
92- new upstream release
93
94* Sun Apr 17 2011 Shu KONNO <owa@bg.wakwak.com> 0.1.2-2
95- rebuilt with rpm-4.8.1-3
96
97* Sun Apr 18 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.2-1
98- new upstream release
99
100* Mon Oct 06 2008 Daisuke SUZUKI <daisuke@linux.or.jp>  0.0.22-1
101- initial build for Vine Linux
102
103* Thu Jul 10 2008 Deji Akingunola <dakingun@gmail.com> - 0.0.22-1
104- Update to latest release
105
106* Thu Feb 28 2008 Deji Akingunola <dakingun@gmail.com> - 0.0.20-1
107- New release
108
109* Thu Jan 17 2008 Deji Akingunola <dakingun@gmail.com> - 0.0.18-2
110- Apply patch to fix extensions loading on 64bit systems
111
112* Thu Jan 10 2008 Deji Akingunola <dakingun@gmail.com> - 0.0.18-1
113- Update to 0.0.18
114
115* Mon Nov 26 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.16-1
116- Update to 0.0.16 release
117- License change from GPLv2+ to GPLv3+
118
119* Mon Oct 22 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.15-0.5.20071011svn
120- Update the License field
121
122* Fri Oct 12 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.15-0.4.20071011svn
123- Package the extension libraries in the main package
124- Run 'make check'
125
126* Fri Oct 12 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.15-0.3.20071011svn
127- Ensure timestamps are kept during install
128
129* Fri Oct 12 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.15-0.2.20071011svn
130- Remove the use of inexistent source url (Package reviews)
131- Package the html docs
132
133* Thu Oct 11 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.15-0.1.20071011svn
134- Initial packaging for Fedora
Note: See TracBrowser for help on using the repository browser.