source: projects/specs/trunk/lib/libX/libXTrap/libXTrap-vl.spec @ 521

Revision 521, 4.7 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Summary: X.Org X11 libXTrap runtime library
2Summary(ja): X.Org X11 libXTrap ランタイムライブラリ
3Name: libXTrap
4Version: 1.0.0
5Release: 2%{?_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: libXt-devel
18Obsoletes: XFree86-libs, XOrg-libs
19
20%description
21X.Org X11 libXTrap runtime library
22
23%package devel
24Summary: X.Org X11 libXTrap development package
25Summary(ja): X.Org X11 libXTrap 開発パッケージ
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 libXTrap 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 --disable-static
43make
44
45%install
46rm -rf $RPM_BUILD_ROOT
47make install DESTDIR=$RPM_BUILD_ROOT
48
49# We intentionally don't ship *.la files
50rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
51
52%clean
53rm -rf $RPM_BUILD_ROOT
54
55%post -p /sbin/ldconfig
56%postun -p /sbin/ldconfig
57
58%files
59%defattr(-,root,root,-)
60%doc AUTHORS COPYING README ChangeLog
61%{_libdir}/libXTrap.so.6
62%{_libdir}/libXTrap.so.6.4.0
63
64%files devel
65%defattr(-,root,root,-)
66%{_libdir}/libXTrap.so
67%{_libdir}/pkgconfig/xtrap.pc
68
69%changelog
70* Tue Mar 31 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.0-2
71- spec in utf-8
72
73* Sun May 18 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.0-1
74- new versioning policy
75
76* Thu Jan 17 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.0-0vl1
77- initial build for Vine Linux
78
79* Tue Aug 21 2007 Adam Jackson <ajax@redhat.com> - 1.0.0-4
80- Rebuild for build id
81
82* Sat Apr 21 2007 Matthias Clasen <mclasen@redhat.com> - 1.0.0-4
83- Don't install INSTALL
84
85* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.0.0-3.1
86- rebuild
87
88* Wed Jun 07 2006 Mike A. Harris <mharris@redhat.com> 1.0.0-3
89- Added "Requires: xorg-x11-proto-devel" for xtrap.pc
90- Replace "makeinstall" with "make install DESTDIR=..."
91- Remove package ownership of mandir/libdir/etc.
92
93* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> 1.0.0-2.2
94- bump again for double-long bug on ppc(64)
95
96* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> 1.0.0-2.1
97- rebuilt for new gcc4.1 snapshot and glibc changes
98
99* Mon Jan 23 2006 Mike A. Harris <mharris@redhat.com> 1.0.0-2
100- Bumped and rebuilt with X11R7 tarball
101
102* Fri Dec 16 2005 Mike A. Harris <mharris@redhat.com> 1.0.0-1
103- Updated libXTrap to version 1.0.0 from X11R7 RC4
104
105* Tue Dec 13 2005 Mike A. Harris <mharris@redhat.com> 0.99.2-1
106- Updated libXTrap to version 0.99.2 from X11R7 RC3
107- Added "Requires(pre): xorg-x11-filesystem >= 0.99.2-3", to ensure
108  that /usr/lib/X11 and /usr/include/X11 pre-exist.
109- Removed 'x' suffix from manpage directories to match RC3 upstream.
110
111* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
112- rebuilt
113
114* Fri Nov 11 2005 Mike A. Harris <mharris@redhat.com> 0.99.1-2
115- Changed 'Conflicts: XFree86-devel, xorg-x11-devel' to 'Obsoletes'
116- Changed 'Conflicts: XFree86-libs, xorg-x11-libs' to 'Obsoletes'
117
118* Mon Oct 24 2005 Mike A. Harris <mharris@redhat.com> 0.99.1-1
119- Updated libXTrap to version 0.99.1 from X11R7 RC1
120
121* Thu Sep 29 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-4
122- Renamed package to remove xorg-x11 from the name due to unanimous decision
123  between developers.
124- Use Fedora Extras style BuildRoot tag.
125- Disable static library creation by default.
126- Add missing defattr to devel subpackage
127- Add missing documentation files to doc macro
128- Fix BuildRequires to use new style X library package names
129
130* Wed Aug 24 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-3
131- Changed all virtual BuildRequires to the "xorg-x11-" prefixed non-virtual
132  package names, as we want xorg-x11 libs to explicitly build against
133  X.Org supplied libs, rather than "any implementation", which is what the
134  virtual provides is intended for.
135
136* Tue Aug 23 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-2
137- Renamed package to prepend "xorg-x11" to the name for consistency with
138  the rest of the X11R7 packages.
139- Added "Requires: %%{name} = %%{version}-%%{release}" dependency to devel
140  subpackage to ensure the devel package matches the installed shared libs.
141- Added virtual "Provides: lib<name>" and "Provides: lib<name>-devel" to
142  allow applications to use implementation agnostic dependencies.
143- Added post/postun scripts which call ldconfig.
144- Added Conflicts with XFree86-libs and xorg-x11-libs to runtime package,
145  and Conflicts with XFree86-devel and xorg-x11-devel to devel package.
146
147* Mon Aug 22 2005 Mike A. Harris <mharris@redhat.com> 0.99.0-1
148- Initial build.
Note: See TracBrowser for help on using the repository browser.