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

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

rebuild with rpm-4.8.1

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