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

Revision 10716, 3.9 KB checked in by Takemikaduchi, 8 years ago (diff)

GNOME-3.20

Line 
1Summary:        A dynamic, any to any, pixel format conversion library
2Name:           babl
3Version:        0.1.18
4Release:        1%{?_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:        https://download.gimp.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* Mon Jul 18 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.18-1
81- new upstream release
82
83* Sun May 10 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.10-3
84- remove *.la files
85
86* Sat Jul 12 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.10-2
87- rebuild with VineSeed environment
88- fix %%check (based on fedora package)
89
90* Sun May 06 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.10-1
91- new upstream release
92- remove BuildRequires: inkscape, ruby
93
94* Thu Apr 28 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.4-1
95- new upstream release
96
97* Sun Apr 17 2011 Shu KONNO <owa@bg.wakwak.com> 0.1.2-2
98- rebuilt with rpm-4.8.1-3
99
100* Sun Apr 18 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.2-1
101- new upstream release
102
103* Mon Oct 06 2008 Daisuke SUZUKI <daisuke@linux.or.jp>  0.0.22-1
104- initial build for Vine Linux
105
106* Thu Jul 10 2008 Deji Akingunola <dakingun@gmail.com> - 0.0.22-1
107- Update to latest release
108
109* Thu Feb 28 2008 Deji Akingunola <dakingun@gmail.com> - 0.0.20-1
110- New release
111
112* Thu Jan 17 2008 Deji Akingunola <dakingun@gmail.com> - 0.0.18-2
113- Apply patch to fix extensions loading on 64bit systems
114
115* Thu Jan 10 2008 Deji Akingunola <dakingun@gmail.com> - 0.0.18-1
116- Update to 0.0.18
117
118* Mon Nov 26 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.16-1
119- Update to 0.0.16 release
120- License change from GPLv2+ to GPLv3+
121
122* Mon Oct 22 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.15-0.5.20071011svn
123- Update the License field
124
125* Fri Oct 12 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.15-0.4.20071011svn
126- Package the extension libraries in the main package
127- Run 'make check'
128
129* Fri Oct 12 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.15-0.3.20071011svn
130- Ensure timestamps are kept during install
131
132* Fri Oct 12 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.15-0.2.20071011svn
133- Remove the use of inexistent source url (Package reviews)
134- Package the html docs
135
136* Thu Oct 11 2007 Deji Akingunola <dakingun@gmail.com> - 0.0.15-0.1.20071011svn
137- Initial packaging for Fedora
Note: See TracBrowser for help on using the repository browser.