source: projects/specs/trunk/x/xcb-util/xcb-util-vl.spec @ 1901

Revision 1901, 3.8 KB checked in by Takemikaduchi, 14 years ago (diff)

rebuild with rpm-4.8.1

Line 
1Name:           xcb-util
2Version:        0.3.6
3Release:        2%{?_dist_release}
4Summary:        Convenience libraries sitting on top of libxcb
5
6Group:          System Environment/Libraries
7License:        MIT
8URL:            http://xcb.freedesktop.org
9Source0:        http://xcb.freedesktop.org/dist/%{name}-%{version}.tar.bz2
10BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
11BuildRequires:  gperf, pkgconfig, libxcb-devel >= 1.4, m4, xorg-x11-proto-devel
12BuildRequires:  chrpath
13
14
15%description
16The xcb-util module provides a number of libraries which sit on top of
17libxcb, the core X protocol library, and some of the extension
18libraries. These experimental libraries provide convenience functions
19and interfaces which make the raw X protocol more usable. Some of the
20libraries also provide client-side code which is not strictly part of
21the X protocol but which have traditionally been provided by Xlib.
22
23
24%package        devel
25Summary:        Development and header files for xcb-util
26Group:          System Environment/Libraries
27Requires:       %{name} = %{version}-%{release}, pkgconfig
28%description    devel
29Development files for xcb-util.
30
31
32%prep
33%setup -q
34
35
36%build
37%configure --with-pic --disable-static
38
39make %{?_smp_mflags}
40
41
42%check
43
44make check
45
46
47%install
48rm -rf %{buildroot}
49
50make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
51
52# remove RPATH
53chrpath --delete $RPM_BUILD_ROOT%{_prefix}/%{_lib}/libxcb-*.so.*
54
55rm %{buildroot}%{_libdir}/*.la
56
57
58%post -p /sbin/ldconfig
59
60
61%postun -p /sbin/ldconfig
62
63
64%clean
65rm -rf %{buildroot}
66
67
68%files
69%defattr(-,root,root,-)
70%doc README
71%{_libdir}/libxcb-atom.so.1*
72%{_libdir}/libxcb-aux.so.0*
73%{_libdir}/libxcb-event.so.1*
74%{_libdir}/libxcb-icccm.so.1*
75%{_libdir}/libxcb-image.so.0*
76%{_libdir}/libxcb-keysyms.so.1*
77%{_libdir}/libxcb-property.so.1*
78%{_libdir}/libxcb-render-util.so.0*
79%{_libdir}/libxcb-reply.so.1*
80
81%files devel
82%defattr(-,root,root,-)
83%{_libdir}/pkgconfig/*.pc
84%{_libdir}/*.so
85%{_includedir}/xcb/*.h
86
87
88%changelog
89* Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.6-2
90- rebuild with rpm-4.8.1 for pkg-config file
91
92* Mon Mar 08 2010 Daisuke SUZUKI <daisuke@linux.or.jp>  0.3.6-1
93- initial build for Vine Linux
94
95* Fri Aug 28 2009 Michal Nowak <mnowak@redhat.com> - 0.3.6-1
96- 0.3.6
97
98* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.5-2
99- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
100
101* Mon Jul 13 2009 Adam Jackson <ajax@redhat.com> 0.3.5-1
102- xcb-util 0.3.5
103
104* Mon Jul 06 2009 Adam Jackson <ajax@redhat.com> 0.3.4-2
105- Explicitly list DSOs so we're notified of version changes.
106
107* Sat Jun 13 2009 Michal Nowak <mnowak@redhat.com> - 0.3.4-1
108- 0.3.4; needed for Awesome 3.3
109
110* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.3-2
111- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
112
113* Fri Feb 20 2009 Michal Nowak <mnowak@redhat.com> - 0.3.3-1
114- 0.3.3
115- removed patches already in git (and 0.3.3)
116
117* Fri Dec 19 2008 Michal Nowak <mnowak@redhat.com> - 0.3.2-2
118- hack the sed lines after %%configure out and hack chrpath in
119- make check is running again
120
121* Thu Dec 18 2008 Michal Nowak <mnowak@redhat.com> - 0.3.2-1
122- 0.3.2
123- remove rpath (x86-64)
124- xcb_keysyms: remove xcb_lookup_t
125- Revert "keysyms: use xcb_key_lookup_t type for col paramter"
126- temporary disabled %%check due to RPATH regression
127
128* Thu Dec  4 2008 Michal Nowak <mnowak@redhat.com> - 0.3.1-2
129- patch for exit() in aux library (Peter Harris)
130- slight changes in spec file
131
132* Mon Nov 24 2008 Michal Nowak <mnowak@redhat.com> - 0.3.1-1
133- 0.3.1
134- fix license issue (Jonathan Landis)
135
136* Fri Sep 19 2008 Michal Nowak <mnowak@redhat.com> - 0.3.0-1
137- bump to 0.3.0
138
139* Sun Aug 17 2008 Michal Nowak <mnowak@redhat.com> - 0.2.1-2
140- new build deps: gperf, pkgconfig, libxcb, m4, xorg-x11-proto-devel
141- not installing *.a files anymore
142- configure with --with-pic
143
144* Mon Aug 04 2008 Michal Nowak <mnowak@redhat.com> - 0.2.1-1
145- initial package
146
Note: See TracBrowser for help on using the repository browser.