source: projects/specs/trunk/lib/libd/libdmx/libdmx-vl.spec @ 7707

Revision 7707, 5.4 KB checked in by Takemikaduchi, 11 years ago (diff)

security fix

Line 
1Summary: X.Org X11 libdmx runtime library
2Summary(ja): X.Org X11 libdmx ランタイムライブラリ
3Name: libdmx
4Version: 1.1.3
5Release: 1%{?_dist_release}
6License: MIT/X11
7Group: System Environment/Libraries
8URL: http://www.x.org
9
10Source0: ftp://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2
11
12BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
13BuildRequires: pkgconfig
14BuildRequires: xorg-x11-proto-devel
15BuildRequires: xorg-x11-util-macros
16BuildRequires: libX11-devel
17BuildRequires: libXext-devel
18BuildRequires: libXau-devel
19Obsoletes: XFree86-libs, XOrg-libs
20
21%description
22X.Org X11 libdmx runtime library
23
24%package devel
25Summary: X.Org X11 libdmx development package
26Summary(ja): X.Org X11 libdmx 開発パッケージ
27Group: Development/Libraries
28Requires(pre): xorg-x11-filesystem
29Requires: %{name} = %{version}-%{release}
30Requires: xorg-x11-proto-devel
31Obsoletes: XFree86-devel, XOrg-devel
32
33%description devel
34X.Org X11 libdmx development package
35
36%prep
37%setup -q
38
39# Disable static library creation by default.
40%define with_static 0
41
42%build
43%configure \
44%if ! %{with_static}
45       --disable-static
46%endif
47
48%install
49rm -rf $RPM_BUILD_ROOT
50
51make install DESTDIR=$RPM_BUILD_ROOT
52
53# We intentionally don't ship *.la files
54rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
55
56%clean
57rm -rf $RPM_BUILD_ROOT
58
59%post -p /sbin/ldconfig
60%postun -p /sbin/ldconfig
61
62%files
63%defattr(-,root,root,-)
64%doc AUTHORS COPYING README ChangeLog
65%{_libdir}/libdmx.so.1
66%{_libdir}/libdmx.so.1.*
67
68%files devel
69%defattr(-,root,root,-)
70%{_includedir}/X11/extensions/*.h
71%if %{with_static}
72%{_libdir}/libdmx.a
73%endif
74%{_libdir}/libdmx.so
75%{_libdir}/pkgconfig/dmx.pc
76#%dir %{_mandir}/man3x
77%{_mandir}/man3/*.3*
78
79%changelog
80* Sun Jun 02 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.3-1
81- new upstream release
82  (including security fix for CVE-2013-1992)
83
84* Fri Mar 09 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.2-1
85- new upstream release
86- add BuildRequires: xorg-x11-util-macros
87
88* Sun Jan 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.1-1
89- new upstream release
90
91* Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.0-3
92- rebuild with rpm-4.8.1 for pkg-config file
93
94* Thu Nov 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.0-2
95- add dmxext.h to %%files
96
97* Wed Nov 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.0-1
98- new upstream release
99
100* Tue Mar 31 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-2
101- spec in utf-8
102
103* Sun May 18 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-1
104- new versioning policy
105
106* Fri Jan 18 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-0vl1
107- initial build for Vine Linux
108
109* Tue Aug 21 2007 Adam Jackson <ajax@redhat.com> - 1.0.2-4
110- Rebuild for build id
111
112* Sat Apr 21 2007 Matthias Clasen <mclasen@redhat.com> - 1.0.2-4
113- Don't install INSTALL
114
115* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.0.2-3.1
116- rebuild
117
118* Fri Jun 09 2006 Mike A. Harris <mharris@redhat.com> 1.0.2-3
119- Replace "makeinstall" with "make install DESTDIR=..."
120- Added "Requires: xorg-x11-proto-devel" to devel for dmx.pc
121- Remove package ownership of mandir/libdir/etc.
122
123* Wed Jun 07 2006 Jeremy Katz <katzj@redhat.com> 1.0.2-2
124- rebuild for -devel deps
125
126* Thu Apr 27 2006 Adam Jackson <ajackson@redhat.com> 1.0.2-1
127- Update to 1.0.2
128
129* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> 1.0.1-1.2
130- bump again for double-long bug on ppc(64)
131
132* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> 1.0.1-1.1
133- rebuilt for new gcc4.1 snapshot and glibc changes
134
135* Wed Jan 18 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-1
136- Updated libdmx to version 1.0.1 from X11R7.0
137
138* Fri Dec 16 2005 Mike A. Harris <mharris@redhat.com> 1.0.0-1
139- Updated libdmx to version 1.0.0 from X11R7 RC4
140
141* Tue Dec 13 2005 Mike A. Harris <mharris@redhat.com> 0.99.2-1
142- Updated libdmx to version 0.99.2 from X11R7 RC3
143- Added "Requires(pre): xorg-x11-filesystem >= 0.99.2-3", to ensure
144  that /usr/lib/X11 and /usr/include/X11 pre-exist.
145- Removed 'x' suffix from manpage directories to match RC3 upstream.
146
147* Tue Nov 15 2005 Mike A. Harris <mharris@redhat.com> 0.99.1-3
148- Added "BuildRequires: libXau-devel, pkgconfig" missing deps.
149
150* Fri Nov 11 2005 Mike A. Harris <mharris@redhat.com> 0.99.1-2
151- Changed 'Conflicts: XFree86-devel, xorg-x11-devel' to 'Obsoletes'
152- Changed 'Conflicts: XFree86-libs, xorg-x11-libs' to 'Obsoletes'
153
154* Mon Oct 24 2005 Mike A. Harris <mharris@redhat.com> 0.99.1-1
155- Updated libdmx to version 0.99.1 from X11R7 RC1
156
157* Thu Sep 29 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-3
158- Renamed package to remove "xorg-x11" from the name due to unanimous decision
159  between developers.
160- Use Fedora Extras style BuildRoot tag.
161- Disable static library creation by default.
162- Add missing defattr to devel subpackage
163- Add missing documentation files to doc macro
164
165* Tue Aug 23 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-2
166- Renamed package to prepend "xorg-x11" to the name for consistency with
167  the rest of the X11R7 packages.
168- Added "Requires: %%{name} = %%{version}-%%{release}" dependency to devel
169  subpackage to ensure the devel package matches the installed shared libs.
170- Added virtual "Provides: lib<name>" and "Provides: lib<name>-devel" to
171  allow applications to use implementation agnostic dependencies.
172- Added post/postun scripts which call ldconfig.
173- Added Conflicts with XFree86-libs and xorg-x11-libs to runtime package,
174  and Conflicts with XFree86-devel and xorg-x11-devel to devel package.
175
176* Mon Aug 22 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-1
177- Initial build.
Note: See TracBrowser for help on using the repository browser.