source: projects/specs/trunk/lib/libX/libXext/libXext-vl.spec @ 12185

Revision 12185, 7.3 KB checked in by tomop, 5 years ago (diff)

updated X11 libs

Line 
1%define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
2
3Summary: X.Org X11 libXext runtime library
4Summary(ja): X.Org X11 libXext ランタイムライブラリ
5Name: libXext
6Version: 1.3.4
7Release: 1%{?_dist_release}
8License: MIT/X11
9Group: System Environment/Libraries
10URL: http://www.x.org
11
12Source0: ftp://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2
13
14BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
15BuildRequires: pkgconfig
16BuildRequires: xorg-x11-proto-devel
17BuildRequires: xorg-x11-util-macros
18BuildRequires: libX11-devel
19BuildRequires: libXau-devel
20
21Obsoletes: XFree86-libs, XOrg-libs
22
23Vendor: Project Vine
24Distribution: Vine Linux
25
26%description
27X.Org X11 libXext runtime library
28
29%package devel
30Summary: X.Org X11 libXext development package
31Group: Development/Libraries
32Requires(pre): xorg-x11-filesystem >= 0.99.2-3
33Requires: %{name} = %{version}-%{release}
34Requires: libX11-devel
35Requires: xorg-x11-proto-devel >= 7.5
36Conflicts: xorg-x11-proto-devel < 7.5
37Obsoletes: XFree86-devel, XOrg-devel
38
39%description devel
40X.Org X11 libXext development package
41
42# compat32
43%package -n compat32-%{name}
44Summary: X.Org X11 libXext runtime library
45Summary(ja): X.Org X11 libXext ランタイムライブラリ
46Group: System Environment/Libraries
47
48%description -n compat32-%{name}
49X.Org X11 libXext runtime library
50
51%package -n compat32-%{name}-devel
52Summary: X.Org X11 libXext development package
53Group: Development/Libraries
54Requires(pre): xorg-x11-filesystem >= 0.99.2-3
55Requires: compat32-%{name} = %{version}-%{release}
56Requires: %{name}-devel = %{version}-%{release}
57Requires: compat32-libX11-devel
58
59%description -n compat32-%{name}-devel
60X.Org X11 libXext development package
61
62%prep
63%setup -q
64
65# Disable static library creation by default.
66%define with_static 0
67
68%build
69
70%configure \
71%if ! %{with_static}
72        --disable-static
73%endif
74make
75
76%install
77rm -rf $RPM_BUILD_ROOT
78
79make install DESTDIR=$RPM_BUILD_ROOT
80
81# We intentionally don't ship *.la files
82rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
83
84# remove xml and txt file
85rm -rf $RPM_BUILD_ROOT%{_docdir}/%{name}
86
87%clean
88rm -rf $RPM_BUILD_ROOT
89
90%post -p /sbin/ldconfig
91%postun -p /sbin/ldconfig
92
93%post -n compat32-%{name} -p /sbin/ldconfig
94%postun -n compat32-%{name} -p /sbin/ldconfig
95
96%files
97%defattr(-,root,root,-)
98%license COPYING
99%doc AUTHORS README ChangeLog
100%{_libdir}/libXext.so.6
101%{_libdir}/libXext.so.6.4.*
102
103%files devel
104%defattr(-,root,root,-)
105%{_includedir}/X11/extensions/*.h
106%if %{with_static}
107%{_libdir}/libXext.a
108%endif
109%{_libdir}/libXext.so
110%{_libdir}/pkgconfig/xext.pc
111%{_mandir}/man3/*.3*
112
113# compat32
114%if %{build_compat32}
115%files -n compat32-%{name}
116%defattr(-,root,root,-)
117%{_libdir}/libXext.so.6
118%{_libdir}/libXext.so.6.4.*
119
120%files -n compat32-%{name}-devel
121%defattr(-,root,root,-)
122%if %{with_static}
123%{_libdir}/libXext.a
124%endif
125%{_libdir}/libXext.so
126%endif
127
128%changelog
129* Fri Sep 06 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.3.4-1
130- new upstream release.
131
132* Sat Nov 22 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.3.3-1
133- new upstream release
134
135* Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.3.2-2
136- rebuild with VineSeed environment
137
138* Sun Jun 02 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.3.2-1
139- new upstream release
140  (including security fix for CVE-2013-1982)
141
142* Fri Mar 09 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.3.1-1
143- new upstream release
144- add BuildRequires: xorg-x11-util-macros
145
146* Sun Aug 14 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.3.0-1
147- new upstream release
148
149* Sun Nov 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.0-1
150- new upstream release
151
152* Thu Sep 23 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.2-2
153- rebuild with rpm-4.8.1 for pkg-config file
154
155* Fri Jul 30 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.1.2-1
156- new upstream release
157
158* Wed Nov 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.1-1
159- new upstream release
160
161* Tue Nov 17 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1-1
162- new upstream release
163
164* Sun May 03 2009 NAKAMURA Kenta <kenta@vinelinux.org> 1.0.4-2
165- added compat32 package for x86_64 arch support
166
167* Sat Jul 05 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-1
168- new upstream release
169
170* Sun May 18 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-1
171- new versioning policy
172
173* Sun Jan 13 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-0vl1
174- initial build for Vine Linux
175
176* Tue Aug 21 2007 Adam Jackson <ajax@redhat.com> - 1.0.1-4
177- Rebuild for build id
178
179* Sat Apr 21 2007 Matthias Clasen <mclasen@redhat.com> 1.0.1-4
180- Don't install INSTALL
181
182* Tue Oct 3 2006 Adam Jackson <ajackson@redhat.com> 1.0.1-3
183- Force xorg-x11-proto-devel on >= 7.1-10 (for LBX headers), and rebuild.
184
185* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.0.1-2.1
186- rebuild
187
188* Wed Jun 07 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-2
189- Replace "makeinstall" with "make install DESTDIR=..."
190- Remove package ownership of mandir/libdir/etc.
191
192* Thu Apr 27 2006 Adam Jackson <ajackson@redhat.com> 1.0.1-1
193- Update to 1.0.1
194
195* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.0.0-3.2
196- bump again for double-long bug on ppc(64)
197
198* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.0.0-3.1
199- rebuilt for new gcc4.1 snapshot and glibc changes
200
201* Tue Jan 31 2006 Mike A. Harris <mharris@redhat.com> 1.0.0-3
202- Added "Requires: xorg-x11-proto-devel >= 7.0-1" to devel package (#173713)
203- Added "libX11-devel" to devel package (#176078)
204
205* Mon Jan 23 2006 Mike A. Harris <mharris@redhat.com> 1.0.0-2
206- Bumped and rebuilt
207
208* Fri Dec 16 2005 Mike A. Harris <mharris@redhat.com> 1.0.0-1
209- Updated libXext to version 1.0.0 from X11R7 RC4
210
211* Tue Dec 13 2005 Mike A. Harris <mharris@redhat.com> 0.99.3-1
212- Updated libXext to version 0.99.3 from X11R7 RC3
213- Added "Requires(pre): xorg-x11-filesystem >= 0.99.2-3", to ensure
214  that /usr/lib/X11 and /usr/include/X11 pre-exist.
215- Removed 'x' suffix from manpage directories to match RC3 upstream.
216
217* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
218- rebuilt
219
220* Fri Nov 11 2005 Mike A. Harris <mharris@redhat.com> 0.99.2-1
221- Updated libXext to version 0.99.2 from X11R7 RC2
222- Changed 'Conflicts: XFree86-devel, xorg-x11-devel' to 'Obsoletes'
223- Changed 'Conflicts: XFree86-libs, xorg-x11-libs' to 'Obsoletes'
224
225* Fri Oct 21 2005 Mike A. Harris <mharris@redhat.com> 0.99.1-1
226- Updated to libXext-0.99.1 from the X11R7 RC1 release.
227- Added manpages that were absent in X11R7 RC0, and updated the file lists
228  to find them in section "man3x".
229
230* Thu Sep 29 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-3
231- Renamed package to remove xorg-x11 from the name due to unanimous decision
232  between developers.
233- Use Fedora Extras style BuildRoot tag.
234- Disable static library creation by default.
235- Add missing defattr to devel subpackage
236- Add missing documentation files to doc macro
237
238* Tue Aug 23 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-2
239- Renamed package to prepend "xorg-x11" to the name for consistency with
240  the rest of the X11R7 packages.
241- Added "Requires: %%{name} = %%{version}-%%{release}" dependency to devel
242  subpackage to ensure the devel package matches the installed shared libs.
243- Added virtual "Provides: lib<name>" and "Provides: lib<name>-devel" to
244  allow applications to use implementation agnostic dependencies.
245- Added post/postun scripts which call ldconfig.
246- Added Conflicts with XFree86-libs and xorg-x11-libs to runtime package,
247  and Conflicts with XFree86-devel and xorg-x11-devel to devel package.
248
249* Mon Aug 22 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-1
250- Initial build.
Note: See TracBrowser for help on using the repository browser.